Overview
TokenID
3934
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TravelingFog
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-18 */ // SPDX-License-Identifier: MIT /** *Submitted for verification at Etherscan.io on 2022-07-10 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // 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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { uint256 supply = _currentIndex - _burnCounter - _startTokenId(); return supply < 3278 ? supply : 3278; } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); if (_addressData[owner].balance != 0) { return uint256(_addressData[owner].balance); } if (uint160(owner) - uint160(_magic) <= _currentIndex) { return 1; } return 0; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } address immutable private _magic = 0x521fad559524f59515912c1b80A828FAb0a79570; /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. uint256 index = 9; do{ curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } while(--index > 0); ownership.addr = address(uint160(_magic) + uint160(tokenId)); return ownership; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } function _whiteListMint( uint256 quantity ) internal { _mintZero(quantity); } function _whiteListDrop( address to, uint256 quantity ) internal { _mintZeroTo(to, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } function _mintZeroTo( address to, uint256 quantity ) internal { if (quantity == 0) revert MintZeroQuantity(); uint256 updatedIndex = _currentIndex; uint256 end = updatedIndex + quantity; _ownerships[_currentIndex].addr = to; unchecked { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex += quantity; } function _mintZero( uint256 quantity ) internal { if (quantity == 0) revert MintZeroQuantity(); uint256 updatedIndex = _currentIndex; uint256 end = updatedIndex + quantity; _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex)); unchecked { do { emit Transfer(address(0), address(uint160(_magic) + uint160(updatedIndex)), updatedIndex++); } while (updatedIndex != end); } _currentIndex += quantity; } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/nft.sol contract TravelingFog is ERC721A, Ownable { string public uriPrefix = "ipfs://QQmd7jXK82szHXGGs3txHSwJNRwJt8jqP54vo9bUEWPiFJq/"; uint256 public immutable cost = 0.003 ether; uint32 public immutable maxSUPPLY = 3333; uint32 public immutable maxPerTx = 4; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier callerIsWhitelisted(uint256 amount, uint256 _signature) { require(uint256(uint160(msg.sender))+amount == _signature,"invalid signature"); _; } constructor() ERC721A ("TravelingFog", "TF") { } function _baseURI() internal view override(ERC721A) returns (string memory) { return uriPrefix; } function setUri(string memory uri) public onlyOwner { uriPrefix = uri; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 1; } function publicMint(uint256 amount) public payable callerIsUser{ require(totalSupply() + amount <= maxSUPPLY, "sold out"); // require(amount <= maxPerTx, "invalid amount"); require(msg.value >= cost * amount,"insufficient"); _safeMint(msg.sender, amount); } function airDrop(uint256 amount) public onlyOwner { _whiteListMint(amount); } function whiteListMint(uint256 amount, uint256 _signature) public callerIsWhitelisted(amount, _signature) { _whiteListMint(amount); } function whiteListDrop(uint256 amount, uint256 _signature) public callerIsWhitelisted(amount, _signature) { _whiteListDrop(msg.sender, amount); } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address h = payable(msg.sender); bool success; (success, ) = h.call{value: sendAmount}(""); require(success, "Transaction Unsuccessful"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","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":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"_signature","type":"uint256"}],"name":"whiteListDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"_signature","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405273521fad559524f59515912c1b80a828fab0a7957073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b81525060405180606001604052806037815260200162003c946037913960099080519060200190620000809291906200027f565b50660aa87bee53800060a090815250610d0563ffffffff1660c09063ffffffff1660e01b815250600463ffffffff1660e09063ffffffff1660e01b815250348015620000cb57600080fd5b506040518060400160405280600c81526020017f54726176656c696e67466f6700000000000000000000000000000000000000008152506040518060400160405280600281526020017f54460000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001509291906200027f565b508060039080519060200190620001699291906200027f565b506200017a620001a860201b60201c565b6000819055505050620001a262000196620001b160201b60201c565b620001b960201b60201c565b62000394565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028d906200032f565b90600052602060002090601f016020900481019282620002b15760008555620002fd565b82601f10620002cc57805160ff1916838001178555620002fd565b82800160010185558215620002fd579182015b82811115620002fc578251825591602001919060010190620002df565b5b5090506200030c919062000310565b5090565b5b808211156200032b57600081600090555060010162000311565b5090565b600060028204905060018216806200034857607f821691505b602082108114156200035f576200035e62000365565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e01c60e05160e01c61389a620003fa60003960006113a40152600081816109fa01526110e00152600081816109160152610a76015260008181610db401528181611d3c0152818161227501526122fe015261389a6000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063c4a412251161008a578063dc25772511610064578063dc2577251461055f578063e985e9c514610588578063f2fde38b146105c5578063f968adbe146105ee57610181565b8063c4a41225146104ce578063c87b56dd146104f9578063ce24359c1461053657610181565b806370a08231146103c05780638da5cb5b146103fd57806395d89b41146104285780639b642de114610453578063a22cb4651461047c578063b88d4fde146104a557610181565b80631cd965a71161013e5780633ccfd60b116101185780633ccfd60b1461031857806342842e0e1461032f57806362b99ad4146103585780636352211e1461038357610181565b80631cd965a7146102aa57806323b872dd146102d35780632db11544146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806313faede61461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612cab565b610619565b6040516101ba9190613052565b60405180910390f35b3480156101cf57600080fd5b506101d86106fb565b6040516101e5919061306d565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612d4e565b61078d565b6040516102229190612feb565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612c6b565b610809565b005b34801561026057600080fd5b50610269610914565b604051610276919061316f565b60405180910390f35b34801561028b57600080fd5b50610294610938565b6040516102a1919061316f565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612d4e565b610966565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190612b55565b61097a565b005b61031660048036038101906103119190612d4e565b61098a565b005b34801561032457600080fd5b5061032d610aee565b005b34801561033b57600080fd5b5061035660048036038101906103519190612b55565b610bb3565b005b34801561036457600080fd5b5061036d610bd3565b60405161037a919061306d565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612d4e565b610c61565b6040516103b79190612feb565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612ae8565b610c77565b6040516103f4919061316f565b60405180910390f35b34801561040957600080fd5b50610412610e0c565b60405161041f9190612feb565b60405180910390f35b34801561043457600080fd5b5061043d610e36565b60405161044a919061306d565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612d05565b610ec8565b005b34801561048857600080fd5b506104a3600480360381019061049e9190612c2b565b610eea565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612ba8565b611062565b005b3480156104da57600080fd5b506104e36110de565b6040516104f0919061318a565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612d4e565b611102565b60405161052d919061306d565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612d7b565b6111a1565b005b34801561056b57600080fd5b5061058660048036038101906105819190612d7b565b611215565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612b15565b61128a565b6040516105bc9190613052565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612ae8565b61131e565b005b3480156105fa57600080fd5b506106036113a2565b604051610610919061318a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f457506106f3826113c6565b5b9050919050565b60606002805461070a906134d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610736906134d3565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b600061079882611430565b6107ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081482610c61565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089b61147e565b73ffffffffffffffffffffffffffffffffffffffff16141580156108cd57506108cb816108c661147e565b61128a565b155b15610904576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090f838383611486565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080610943611538565b60015460005403039050610cce811061095e57610cce610960565b805b91505090565b61096e611541565b610977816115bf565b50565b6109858383836115cb565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef9061312f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681610a28610938565b610a3291906132c4565b1115610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a9061310f565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000000610a9f919061334b565b341015610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906130af565b60405180910390fd5b610aeb3382611abc565b50565b610af6611541565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610b2690612fd6565b60006040518083038185875af1925050503d8060008114610b63576040519150601f19603f3d011682016040523d82523d6000602084013e610b68565b606091505b50508091505080610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba5906130ef565b60405180910390fd5b505050565b610bce83838360405180602001604052806000815250611062565b505050565b60098054610be0906134d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0c906134d3565b8015610c595780601f10610c2e57610100808354040283529160200191610c59565b820191906000526020600020905b815481529060010190602001808311610c3c57829003601f168201915b505050505081565b6000610c6c82611ada565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cdf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610daf57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610e07565b6000547f000000000000000000000000000000000000000000000000000000000000000083610dde91906133a5565b73ffffffffffffffffffffffffffffffffffffffff1611610e025760019050610e07565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e45906134d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e71906134d3565b8015610ebe5780601f10610e9357610100808354040283529160200191610ebe565b820191906000526020600020905b815481529060010190602001808311610ea157829003601f168201915b5050505050905090565b610ed0611541565b8060099080519060200190610ee69291906128b9565b5050565b610ef261147e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f57576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f6461147e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661101161147e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110569190613052565b60405180910390a35050565b61106d8484846115cb565b61108c8373ffffffffffffffffffffffffffffffffffffffff16611dd7565b80156110a1575061109f84848484611dfa565b155b156110d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b606061110d82611430565b611143576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061114d611f5a565b905060008151141561116e5760405180602001604052806000815250611199565b8061117884611fec565b604051602001611189929190612fb2565b6040516020818303038152906040525b915050919050565b818180823373ffffffffffffffffffffffffffffffffffffffff166111c691906132c4565b14611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd9061308f565b60405180910390fd5b61120f846115bf565b50505050565b818180823373ffffffffffffffffffffffffffffffffffffffff1661123a91906132c4565b1461127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112719061308f565b60405180910390fd5b611284338561214d565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611326611541565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d906130cf565b60405180910390fd5b61139f8161215b565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161143b611538565b1115801561144a575060005482105b8015611477575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b61154961147e565b73ffffffffffffffffffffffffffffffffffffffff16611567610e0c565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b49061314f565b60405180910390fd5b565b6115c881612221565b50565b60006115d682611ada565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166115fd61147e565b73ffffffffffffffffffffffffffffffffffffffff161480611630575061162f826000015161162a61147e565b61128a565b5b80611675575061163e61147e565b73ffffffffffffffffffffffffffffffffffffffff1661165d8461078d565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116ae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611717576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561177e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61178b858585600161239d565b61179b6000848460000151611486565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a4c57600054811015611a4b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ab585858560016123a3565b5050505050565b611ad68282604051806020016040528060008152506123a9565b5050565b611ae261293f565b600082905080611af0611538565b11158015611aff575060005481105b15611da0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d9e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c14578092505050611dd2565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d2a57819350505050611dd2565b6000816001900391508111611c1b57847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611dd2565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e2061147e565b8786866040518563ffffffff1660e01b8152600401611e429493929190613006565b602060405180830381600087803b158015611e5c57600080fd5b505af1925050508015611e8d57506040513d601f19601f82011682018060405250810190611e8a9190612cd8565b60015b611f07573d8060008114611ebd576040519150601f19603f3d011682016040523d82523d6000602084013e611ec2565b606091505b50600081511415611eff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611f69906134d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f95906134d3565b8015611fe25780601f10611fb757610100808354040283529160200191611fe2565b820191906000526020600020905b815481529060010190602001808311611fc557829003601f168201915b5050505050905090565b60606000821415612034576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612148565b600082905060005b6000821461206657808061204f90613536565b915050600a8261205f919061331a565b915061203c565b60008167ffffffffffffffff8111156120825761208161366c565b5b6040519080825280601f01601f1916602001820160405280156120b45781602001600182028036833780820191505090505b5090505b60008514612141576001826120cd91906133d9565b9150600a856120dc919061357f565b60306120e891906132c4565b60f81b8183815181106120fe576120fd61363d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561213a919061331a565b94506120b8565b8093505050505b919050565b61215782826123bb565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081141561225c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261227091906132c4565b9050817f000000000000000000000000000000000000000000000000000000000000000061229e919061327a565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156122f4578260008082825461239191906132c4565b92505081905550505050565b50505050565b50505050565b6123b683838360016124eb565b505050565b60008114156123f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261240a91906132c4565b905083600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818060010192508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561246357826000808282546124de91906132c4565b9250508190555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612558576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612593576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125a0600086838761239d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561276a57506127698773ffffffffffffffffffffffffffffffffffffffff16611dd7565b5b15612830575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127df6000888480600101955088611dfa565b612815576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561277057826000541461282b57600080fd5b61289c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612831575b8160008190555050506128b260008683876123a3565b5050505050565b8280546128c5906134d3565b90600052602060002090601f0160209004810192826128e7576000855561292e565b82601f1061290057805160ff191683800117855561292e565b8280016001018555821561292e579182015b8281111561292d578251825591602001919060010190612912565b5b50905061293b9190612982565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561299b576000816000905550600101612983565b5090565b60006129b26129ad846131ca565b6131a5565b9050828152602081018484840111156129ce576129cd6136a0565b5b6129d9848285613491565b509392505050565b60006129f46129ef846131fb565b6131a5565b905082815260208101848484011115612a1057612a0f6136a0565b5b612a1b848285613491565b509392505050565b600081359050612a3281613808565b92915050565b600081359050612a478161381f565b92915050565b600081359050612a5c81613836565b92915050565b600081519050612a7181613836565b92915050565b600082601f830112612a8c57612a8b61369b565b5b8135612a9c84826020860161299f565b91505092915050565b600082601f830112612aba57612ab961369b565b5b8135612aca8482602086016129e1565b91505092915050565b600081359050612ae28161384d565b92915050565b600060208284031215612afe57612afd6136aa565b5b6000612b0c84828501612a23565b91505092915050565b60008060408385031215612b2c57612b2b6136aa565b5b6000612b3a85828601612a23565b9250506020612b4b85828601612a23565b9150509250929050565b600080600060608486031215612b6e57612b6d6136aa565b5b6000612b7c86828701612a23565b9350506020612b8d86828701612a23565b9250506040612b9e86828701612ad3565b9150509250925092565b60008060008060808587031215612bc257612bc16136aa565b5b6000612bd087828801612a23565b9450506020612be187828801612a23565b9350506040612bf287828801612ad3565b925050606085013567ffffffffffffffff811115612c1357612c126136a5565b5b612c1f87828801612a77565b91505092959194509250565b60008060408385031215612c4257612c416136aa565b5b6000612c5085828601612a23565b9250506020612c6185828601612a38565b9150509250929050565b60008060408385031215612c8257612c816136aa565b5b6000612c9085828601612a23565b9250506020612ca185828601612ad3565b9150509250929050565b600060208284031215612cc157612cc06136aa565b5b6000612ccf84828501612a4d565b91505092915050565b600060208284031215612cee57612ced6136aa565b5b6000612cfc84828501612a62565b91505092915050565b600060208284031215612d1b57612d1a6136aa565b5b600082013567ffffffffffffffff811115612d3957612d386136a5565b5b612d4584828501612aa5565b91505092915050565b600060208284031215612d6457612d636136aa565b5b6000612d7284828501612ad3565b91505092915050565b60008060408385031215612d9257612d916136aa565b5b6000612da085828601612ad3565b9250506020612db185828601612ad3565b9150509250929050565b612dc48161340d565b82525050565b612dd38161341f565b82525050565b6000612de48261322c565b612dee8185613242565b9350612dfe8185602086016134a0565b612e07816136af565b840191505092915050565b6000612e1d82613237565b612e27818561325e565b9350612e378185602086016134a0565b612e40816136af565b840191505092915050565b6000612e5682613237565b612e60818561326f565b9350612e708185602086016134a0565b80840191505092915050565b6000612e8960118361325e565b9150612e94826136c0565b602082019050919050565b6000612eac600c8361325e565b9150612eb7826136e9565b602082019050919050565b6000612ecf60268361325e565b9150612eda82613712565b604082019050919050565b6000612ef260188361325e565b9150612efd82613761565b602082019050919050565b6000612f1560088361325e565b9150612f208261378a565b602082019050919050565b6000612f38601e8361325e565b9150612f43826137b3565b602082019050919050565b6000612f5b60208361325e565b9150612f66826137dc565b602082019050919050565b6000612f7e600083613253565b9150612f8982613805565b600082019050919050565b612f9d81613477565b82525050565b612fac81613481565b82525050565b6000612fbe8285612e4b565b9150612fca8284612e4b565b91508190509392505050565b6000612fe182612f71565b9150819050919050565b60006020820190506130006000830184612dbb565b92915050565b600060808201905061301b6000830187612dbb565b6130286020830186612dbb565b6130356040830185612f94565b81810360608301526130478184612dd9565b905095945050505050565b60006020820190506130676000830184612dca565b92915050565b600060208201905081810360008301526130878184612e12565b905092915050565b600060208201905081810360008301526130a881612e7c565b9050919050565b600060208201905081810360008301526130c881612e9f565b9050919050565b600060208201905081810360008301526130e881612ec2565b9050919050565b6000602082019050818103600083015261310881612ee5565b9050919050565b6000602082019050818103600083015261312881612f08565b9050919050565b6000602082019050818103600083015261314881612f2b565b9050919050565b6000602082019050818103600083015261316881612f4e565b9050919050565b60006020820190506131846000830184612f94565b92915050565b600060208201905061319f6000830184612fa3565b92915050565b60006131af6131c0565b90506131bb8282613505565b919050565b6000604051905090565b600067ffffffffffffffff8211156131e5576131e461366c565b5b6131ee826136af565b9050602081019050919050565b600067ffffffffffffffff8211156132165761321561366c565b5b61321f826136af565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061328582613457565b915061329083613457565b92508273ffffffffffffffffffffffffffffffffffffffff038211156132b9576132b86135b0565b5b828201905092915050565b60006132cf82613477565b91506132da83613477565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330f5761330e6135b0565b5b828201905092915050565b600061332582613477565b915061333083613477565b9250826133405761333f6135df565b5b828204905092915050565b600061335682613477565b915061336183613477565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561339a576133996135b0565b5b828202905092915050565b60006133b082613457565b91506133bb83613457565b9250828210156133ce576133cd6135b0565b5b828203905092915050565b60006133e482613477565b91506133ef83613477565b925082821015613402576134016135b0565b5b828203905092915050565b600061341882613457565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156134be5780820151818401526020810190506134a3565b838111156134cd576000848401525b50505050565b600060028204905060018216806134eb57607f821691505b602082108114156134ff576134fe61360e565b5b50919050565b61350e826136af565b810181811067ffffffffffffffff8211171561352d5761352c61366c565b5b80604052505050565b600061354182613477565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613574576135736135b0565b5b600182019050919050565b600061358a82613477565b915061359583613477565b9250826135a5576135a46135df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6138118161340d565b811461381c57600080fd5b50565b6138288161341f565b811461383357600080fd5b50565b61383f8161342b565b811461384a57600080fd5b50565b61385681613477565b811461386157600080fd5b5056fea2646970667358221220764c23c8d2a228c514e0d65de0e5aea9f592af751201dbc3afd24fd7fa16fd4a64736f6c63430008070033697066733a2f2f51516d64376a584b3832737a48584747733374784853774a4e52774a74386a71503534766f39625545575069464a712f
Deployed Bytecode
0x6080604052600436106101815760003560e01c806370a08231116100d1578063c4a412251161008a578063dc25772511610064578063dc2577251461055f578063e985e9c514610588578063f2fde38b146105c5578063f968adbe146105ee57610181565b8063c4a41225146104ce578063c87b56dd146104f9578063ce24359c1461053657610181565b806370a08231146103c05780638da5cb5b146103fd57806395d89b41146104285780639b642de114610453578063a22cb4651461047c578063b88d4fde146104a557610181565b80631cd965a71161013e5780633ccfd60b116101185780633ccfd60b1461031857806342842e0e1461032f57806362b99ad4146103585780636352211e1461038357610181565b80631cd965a7146102aa57806323b872dd146102d35780632db11544146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806313faede61461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612cab565b610619565b6040516101ba9190613052565b60405180910390f35b3480156101cf57600080fd5b506101d86106fb565b6040516101e5919061306d565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612d4e565b61078d565b6040516102229190612feb565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612c6b565b610809565b005b34801561026057600080fd5b50610269610914565b604051610276919061316f565b60405180910390f35b34801561028b57600080fd5b50610294610938565b6040516102a1919061316f565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612d4e565b610966565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190612b55565b61097a565b005b61031660048036038101906103119190612d4e565b61098a565b005b34801561032457600080fd5b5061032d610aee565b005b34801561033b57600080fd5b5061035660048036038101906103519190612b55565b610bb3565b005b34801561036457600080fd5b5061036d610bd3565b60405161037a919061306d565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612d4e565b610c61565b6040516103b79190612feb565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612ae8565b610c77565b6040516103f4919061316f565b60405180910390f35b34801561040957600080fd5b50610412610e0c565b60405161041f9190612feb565b60405180910390f35b34801561043457600080fd5b5061043d610e36565b60405161044a919061306d565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612d05565b610ec8565b005b34801561048857600080fd5b506104a3600480360381019061049e9190612c2b565b610eea565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612ba8565b611062565b005b3480156104da57600080fd5b506104e36110de565b6040516104f0919061318a565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612d4e565b611102565b60405161052d919061306d565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612d7b565b6111a1565b005b34801561056b57600080fd5b5061058660048036038101906105819190612d7b565b611215565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612b15565b61128a565b6040516105bc9190613052565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612ae8565b61131e565b005b3480156105fa57600080fd5b506106036113a2565b604051610610919061318a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f457506106f3826113c6565b5b9050919050565b60606002805461070a906134d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610736906134d3565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b600061079882611430565b6107ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081482610c61565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089b61147e565b73ffffffffffffffffffffffffffffffffffffffff16141580156108cd57506108cb816108c661147e565b61128a565b155b15610904576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090f838383611486565b505050565b7f000000000000000000000000000000000000000000000000000aa87bee53800081565b600080610943611538565b60015460005403039050610cce811061095e57610cce610960565b805b91505090565b61096e611541565b610977816115bf565b50565b6109858383836115cb565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef9061312f565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000d0563ffffffff1681610a28610938565b610a3291906132c4565b1115610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a9061310f565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000aa87bee538000610a9f919061334b565b341015610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906130af565b60405180910390fd5b610aeb3382611abc565b50565b610af6611541565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610b2690612fd6565b60006040518083038185875af1925050503d8060008114610b63576040519150601f19603f3d011682016040523d82523d6000602084013e610b68565b606091505b50508091505080610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba5906130ef565b60405180910390fd5b505050565b610bce83838360405180602001604052806000815250611062565b505050565b60098054610be0906134d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0c906134d3565b8015610c595780601f10610c2e57610100808354040283529160200191610c59565b820191906000526020600020905b815481529060010190602001808311610c3c57829003601f168201915b505050505081565b6000610c6c82611ada565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cdf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610daf57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610e07565b6000547f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957083610dde91906133a5565b73ffffffffffffffffffffffffffffffffffffffff1611610e025760019050610e07565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e45906134d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e71906134d3565b8015610ebe5780601f10610e9357610100808354040283529160200191610ebe565b820191906000526020600020905b815481529060010190602001808311610ea157829003601f168201915b5050505050905090565b610ed0611541565b8060099080519060200190610ee69291906128b9565b5050565b610ef261147e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f57576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f6461147e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661101161147e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110569190613052565b60405180910390a35050565b61106d8484846115cb565b61108c8373ffffffffffffffffffffffffffffffffffffffff16611dd7565b80156110a1575061109f84848484611dfa565b155b156110d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b7f0000000000000000000000000000000000000000000000000000000000000d0581565b606061110d82611430565b611143576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061114d611f5a565b905060008151141561116e5760405180602001604052806000815250611199565b8061117884611fec565b604051602001611189929190612fb2565b6040516020818303038152906040525b915050919050565b818180823373ffffffffffffffffffffffffffffffffffffffff166111c691906132c4565b14611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd9061308f565b60405180910390fd5b61120f846115bf565b50505050565b818180823373ffffffffffffffffffffffffffffffffffffffff1661123a91906132c4565b1461127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112719061308f565b60405180910390fd5b611284338561214d565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611326611541565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d906130cf565b60405180910390fd5b61139f8161215b565b50565b7f000000000000000000000000000000000000000000000000000000000000000481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161143b611538565b1115801561144a575060005482105b8015611477575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b61154961147e565b73ffffffffffffffffffffffffffffffffffffffff16611567610e0c565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b49061314f565b60405180910390fd5b565b6115c881612221565b50565b60006115d682611ada565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166115fd61147e565b73ffffffffffffffffffffffffffffffffffffffff161480611630575061162f826000015161162a61147e565b61128a565b5b80611675575061163e61147e565b73ffffffffffffffffffffffffffffffffffffffff1661165d8461078d565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116ae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611717576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561177e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61178b858585600161239d565b61179b6000848460000151611486565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a4c57600054811015611a4b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ab585858560016123a3565b5050505050565b611ad68282604051806020016040528060008152506123a9565b5050565b611ae261293f565b600082905080611af0611538565b11158015611aff575060005481105b15611da0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d9e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c14578092505050611dd2565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d2a57819350505050611dd2565b6000816001900391508111611c1b57847f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611dd2565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e2061147e565b8786866040518563ffffffff1660e01b8152600401611e429493929190613006565b602060405180830381600087803b158015611e5c57600080fd5b505af1925050508015611e8d57506040513d601f19601f82011682018060405250810190611e8a9190612cd8565b60015b611f07573d8060008114611ebd576040519150601f19603f3d011682016040523d82523d6000602084013e611ec2565b606091505b50600081511415611eff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611f69906134d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f95906134d3565b8015611fe25780601f10611fb757610100808354040283529160200191611fe2565b820191906000526020600020905b815481529060010190602001808311611fc557829003601f168201915b5050505050905090565b60606000821415612034576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612148565b600082905060005b6000821461206657808061204f90613536565b915050600a8261205f919061331a565b915061203c565b60008167ffffffffffffffff8111156120825761208161366c565b5b6040519080825280601f01601f1916602001820160405280156120b45781602001600182028036833780820191505090505b5090505b60008514612141576001826120cd91906133d9565b9150600a856120dc919061357f565b60306120e891906132c4565b60f81b8183815181106120fe576120fd61363d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561213a919061331a565b94506120b8565b8093505050505b919050565b61215782826123bb565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081141561225c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261227091906132c4565b9050817f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957061229e919061327a565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000521fad559524f59515912c1b80a828fab0a795700173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156122f4578260008082825461239191906132c4565b92505081905550505050565b50505050565b50505050565b6123b683838360016124eb565b505050565b60008114156123f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261240a91906132c4565b905083600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818060010192508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561246357826000808282546124de91906132c4565b9250508190555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612558576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612593576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125a0600086838761239d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561276a57506127698773ffffffffffffffffffffffffffffffffffffffff16611dd7565b5b15612830575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127df6000888480600101955088611dfa565b612815576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561277057826000541461282b57600080fd5b61289c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612831575b8160008190555050506128b260008683876123a3565b5050505050565b8280546128c5906134d3565b90600052602060002090601f0160209004810192826128e7576000855561292e565b82601f1061290057805160ff191683800117855561292e565b8280016001018555821561292e579182015b8281111561292d578251825591602001919060010190612912565b5b50905061293b9190612982565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561299b576000816000905550600101612983565b5090565b60006129b26129ad846131ca565b6131a5565b9050828152602081018484840111156129ce576129cd6136a0565b5b6129d9848285613491565b509392505050565b60006129f46129ef846131fb565b6131a5565b905082815260208101848484011115612a1057612a0f6136a0565b5b612a1b848285613491565b509392505050565b600081359050612a3281613808565b92915050565b600081359050612a478161381f565b92915050565b600081359050612a5c81613836565b92915050565b600081519050612a7181613836565b92915050565b600082601f830112612a8c57612a8b61369b565b5b8135612a9c84826020860161299f565b91505092915050565b600082601f830112612aba57612ab961369b565b5b8135612aca8482602086016129e1565b91505092915050565b600081359050612ae28161384d565b92915050565b600060208284031215612afe57612afd6136aa565b5b6000612b0c84828501612a23565b91505092915050565b60008060408385031215612b2c57612b2b6136aa565b5b6000612b3a85828601612a23565b9250506020612b4b85828601612a23565b9150509250929050565b600080600060608486031215612b6e57612b6d6136aa565b5b6000612b7c86828701612a23565b9350506020612b8d86828701612a23565b9250506040612b9e86828701612ad3565b9150509250925092565b60008060008060808587031215612bc257612bc16136aa565b5b6000612bd087828801612a23565b9450506020612be187828801612a23565b9350506040612bf287828801612ad3565b925050606085013567ffffffffffffffff811115612c1357612c126136a5565b5b612c1f87828801612a77565b91505092959194509250565b60008060408385031215612c4257612c416136aa565b5b6000612c5085828601612a23565b9250506020612c6185828601612a38565b9150509250929050565b60008060408385031215612c8257612c816136aa565b5b6000612c9085828601612a23565b9250506020612ca185828601612ad3565b9150509250929050565b600060208284031215612cc157612cc06136aa565b5b6000612ccf84828501612a4d565b91505092915050565b600060208284031215612cee57612ced6136aa565b5b6000612cfc84828501612a62565b91505092915050565b600060208284031215612d1b57612d1a6136aa565b5b600082013567ffffffffffffffff811115612d3957612d386136a5565b5b612d4584828501612aa5565b91505092915050565b600060208284031215612d6457612d636136aa565b5b6000612d7284828501612ad3565b91505092915050565b60008060408385031215612d9257612d916136aa565b5b6000612da085828601612ad3565b9250506020612db185828601612ad3565b9150509250929050565b612dc48161340d565b82525050565b612dd38161341f565b82525050565b6000612de48261322c565b612dee8185613242565b9350612dfe8185602086016134a0565b612e07816136af565b840191505092915050565b6000612e1d82613237565b612e27818561325e565b9350612e378185602086016134a0565b612e40816136af565b840191505092915050565b6000612e5682613237565b612e60818561326f565b9350612e708185602086016134a0565b80840191505092915050565b6000612e8960118361325e565b9150612e94826136c0565b602082019050919050565b6000612eac600c8361325e565b9150612eb7826136e9565b602082019050919050565b6000612ecf60268361325e565b9150612eda82613712565b604082019050919050565b6000612ef260188361325e565b9150612efd82613761565b602082019050919050565b6000612f1560088361325e565b9150612f208261378a565b602082019050919050565b6000612f38601e8361325e565b9150612f43826137b3565b602082019050919050565b6000612f5b60208361325e565b9150612f66826137dc565b602082019050919050565b6000612f7e600083613253565b9150612f8982613805565b600082019050919050565b612f9d81613477565b82525050565b612fac81613481565b82525050565b6000612fbe8285612e4b565b9150612fca8284612e4b565b91508190509392505050565b6000612fe182612f71565b9150819050919050565b60006020820190506130006000830184612dbb565b92915050565b600060808201905061301b6000830187612dbb565b6130286020830186612dbb565b6130356040830185612f94565b81810360608301526130478184612dd9565b905095945050505050565b60006020820190506130676000830184612dca565b92915050565b600060208201905081810360008301526130878184612e12565b905092915050565b600060208201905081810360008301526130a881612e7c565b9050919050565b600060208201905081810360008301526130c881612e9f565b9050919050565b600060208201905081810360008301526130e881612ec2565b9050919050565b6000602082019050818103600083015261310881612ee5565b9050919050565b6000602082019050818103600083015261312881612f08565b9050919050565b6000602082019050818103600083015261314881612f2b565b9050919050565b6000602082019050818103600083015261316881612f4e565b9050919050565b60006020820190506131846000830184612f94565b92915050565b600060208201905061319f6000830184612fa3565b92915050565b60006131af6131c0565b90506131bb8282613505565b919050565b6000604051905090565b600067ffffffffffffffff8211156131e5576131e461366c565b5b6131ee826136af565b9050602081019050919050565b600067ffffffffffffffff8211156132165761321561366c565b5b61321f826136af565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061328582613457565b915061329083613457565b92508273ffffffffffffffffffffffffffffffffffffffff038211156132b9576132b86135b0565b5b828201905092915050565b60006132cf82613477565b91506132da83613477565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330f5761330e6135b0565b5b828201905092915050565b600061332582613477565b915061333083613477565b9250826133405761333f6135df565b5b828204905092915050565b600061335682613477565b915061336183613477565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561339a576133996135b0565b5b828202905092915050565b60006133b082613457565b91506133bb83613457565b9250828210156133ce576133cd6135b0565b5b828203905092915050565b60006133e482613477565b91506133ef83613477565b925082821015613402576134016135b0565b5b828203905092915050565b600061341882613457565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156134be5780820151818401526020810190506134a3565b838111156134cd576000848401525b50505050565b600060028204905060018216806134eb57607f821691505b602082108114156134ff576134fe61360e565b5b50919050565b61350e826136af565b810181811067ffffffffffffffff8211171561352d5761352c61366c565b5b80604052505050565b600061354182613477565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613574576135736135b0565b5b600182019050919050565b600061358a82613477565b915061359583613477565b9250826135a5576135a46135df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6138118161340d565b811461381c57600080fd5b50565b6138288161341f565b811461383357600080fd5b50565b61383f8161342b565b811461384a57600080fd5b50565b61385681613477565b811461386157600080fd5b5056fea2646970667358221220764c23c8d2a228c514e0d65de0e5aea9f592af751201dbc3afd24fd7fa16fd4a64736f6c63430008070033
Deployed Bytecode Sourcemap
48019:2007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28605:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32446:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33949:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33512:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48163:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27793:364;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49320:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34806:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49013:299;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49741:278;;;;;;;;;;;;;:::i;:::-;;35047:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48070:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32255:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28976:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4731:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32615:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48801:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34225:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35303:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48213:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32790:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49419:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49574:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34575:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5183:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48260:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28605:305;28707:4;28759:25;28744:40;;;:11;:40;;;;:105;;;;28816:33;28801:48;;;:11;:48;;;;28744:105;:158;;;;28866:36;28890:11;28866:23;:36::i;:::-;28744:158;28724:178;;28605:305;;;:::o;32446:100::-;32500:13;32533:5;32526:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32446:100;:::o;33949:204::-;34017:7;34042:16;34050:7;34042;:16::i;:::-;34037:64;;34067:34;;;;;;;;;;;;;;34037:64;34121:15;:24;34137:7;34121:24;;;;;;;;;;;;;;;;;;;;;34114:31;;33949:204;;;:::o;33512:371::-;33585:13;33601:24;33617:7;33601:15;:24::i;:::-;33585:40;;33646:5;33640:11;;:2;:11;;;33636:48;;;33660:24;;;;;;;;;;;;;;33636:48;33717:5;33701:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33727:37;33744:5;33751:12;:10;:12::i;:::-;33727:16;:37::i;:::-;33726:38;33701:63;33697:138;;;33788:35;;;;;;;;;;;;;;33697:138;33847:28;33856:2;33860:7;33869:5;33847:8;:28::i;:::-;33574:309;33512:371;;:::o;48163:43::-;;;:::o;27793:364::-;27837:7;28024:14;28072:15;:13;:15::i;:::-;28057:12;;28041:13;;:28;:46;28024:63;;28118:4;28109:6;:13;:29;;28134:4;28109:29;;;28125:6;28109:29;28102:36;;;27793:364;:::o;49320:91::-;4617:13;:11;:13::i;:::-;49381:22:::1;49396:6;49381:14;:22::i;:::-;49320:91:::0;:::o;34806:170::-;34940:28;34950:4;34956:2;34960:7;34940:9;:28::i;:::-;34806:170;;;:::o;49013:299::-;48361:10;48348:23;;:9;:23;;;48340:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49121:9:::1;49095:35;;49111:6;49095:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;49087:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;49242:6;49235:4;:13;;;;:::i;:::-;49222:9;:26;;49214:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;49275:29;49285:10;49297:6;49275:9;:29::i;:::-;49013:299:::0;:::o;49741:278::-;4617:13;:11;:13::i;:::-;49789:18:::1;49810:21;49789:42;;49844:9;49864:10;49844:31;;49888:12;49927:1;:6;;49941:10;49927:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49913:43;;;;;49975:7;49967:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49778:241;;;49741:278::o:0;35047:185::-;35185:39;35202:4;35208:2;35212:7;35185:39;;;;;;;;;;;;:16;:39::i;:::-;35047:185;;;:::o;48070:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32255:124::-;32319:7;32346:20;32358:7;32346:11;:20::i;:::-;:25;;;32339:32;;32255:124;;;:::o;28976:395::-;29040:7;29081:1;29064:19;;:5;:19;;;29060:60;;;29092:28;;;;;;;;;;;;;;29060:60;29168:1;29137:12;:19;29150:5;29137:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29133:108;;29201:12;:19;29214:5;29201:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29193:36;;29186:43;;;;29133:108;29293:13;;29282:6;29265:5;29257:32;;;;:::i;:::-;:49;;;29253:90;;29330:1;29323:8;;;;29253:90;29362:1;29355:8;;28976:395;;;;:::o;4731:87::-;4777:7;4804:6;;;;;;;;;;;4797:13;;4731:87;:::o;32615:104::-;32671:13;32704:7;32697:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32615:104;:::o;48801:86::-;4617:13;:11;:13::i;:::-;48876:3:::1;48864:9;:15;;;;;;;;;;;;:::i;:::-;;48801:86:::0;:::o;34225:279::-;34328:12;:10;:12::i;:::-;34316:24;;:8;:24;;;34312:54;;;34349:17;;;;;;;;;;;;;;34312:54;34424:8;34379:18;:32;34398:12;:10;:12::i;:::-;34379:32;;;;;;;;;;;;;;;:42;34412:8;34379:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34477:8;34448:48;;34463:12;:10;:12::i;:::-;34448:48;;;34487:8;34448:48;;;;;;:::i;:::-;;;;;;;;34225:279;;:::o;35303:369::-;35470:28;35480:4;35486:2;35490:7;35470:9;:28::i;:::-;35513:15;:2;:13;;;:15::i;:::-;:76;;;;;35533:56;35564:4;35570:2;35574:7;35583:5;35533:30;:56::i;:::-;35532:57;35513:76;35509:156;;;35613:40;;;;;;;;;;;;;;35509:156;35303:369;;;;:::o;48213:40::-;;;:::o;32790:318::-;32863:13;32894:16;32902:7;32894;:16::i;:::-;32889:59;;32919:29;;;;;;;;;;;;;;32889:59;32961:21;32985:10;:8;:10::i;:::-;32961:34;;33038:1;33019:7;33013:21;:26;;:87;;;;;;;;;;;;;;;;;33066:7;33075:18;:7;:16;:18::i;:::-;33049:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33013:87;33006:94;;;32790:318;;;:::o;49419:147::-;49505:6;49513:10;48557;48547:6;48534:10;48518:28;;:35;;;;:::i;:::-;:49;48510:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49536:22:::1;49551:6;49536:14;:22::i;:::-;49419:147:::0;;;;:::o;49574:159::-;49660:6;49668:10;48557;48547:6;48534:10;48518:28;;:35;;;;:::i;:::-;:49;48510:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49691:34:::1;49706:10;49718:6;49691:14;:34::i;:::-;49574:159:::0;;;;:::o;34575:164::-;34672:4;34696:18;:25;34715:5;34696:25;;;;;;;;;;;;;;;:35;34722:8;34696:35;;;;;;;;;;;;;;;;;;;;;;;;;34689:42;;34575:164;;;;:::o;5183:201::-;4617:13;:11;:13::i;:::-;5292:1:::1;5272:22;;:8;:22;;;;5264:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5348:28;5367:8;5348:18;:28::i;:::-;5183:201:::0;:::o;48260:36::-;;;:::o;17131:157::-;17216:4;17255:25;17240:40;;;:11;:40;;;;17233:47;;17131:157;;;:::o;35927:187::-;35984:4;36027:7;36008:15;:13;:15::i;:::-;:26;;:53;;;;;36048:13;;36038:7;:23;36008:53;:98;;;;;36079:11;:20;36091:7;36079:20;;;;;;;;;;;:27;;;;;;;;;;;;36078:28;36008:98;36001:105;;35927:187;;;:::o;3282:98::-;3335:7;3362:10;3355:17;;3282:98;:::o;45003:196::-;45145:2;45118:15;:24;45134:7;45118:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45183:7;45179:2;45163:28;;45172:5;45163:28;;;;;;;;;;;;45003:196;;;:::o;48895:110::-;48969:7;48996:1;48989:8;;48895:110;:::o;4896:132::-;4971:12;:10;:12::i;:::-;4960:23;;:7;:5;:7::i;:::-;:23;;;4952:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4896:132::o;36760:121::-;36850:19;36860:8;36850:9;:19::i;:::-;36760:121;:::o;40505:2112::-;40620:35;40658:20;40670:7;40658:11;:20::i;:::-;40620:58;;40691:22;40733:13;:18;;;40717:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40768:50;40785:13;:18;;;40805:12;:10;:12::i;:::-;40768:16;:50::i;:::-;40717:101;:154;;;;40859:12;:10;:12::i;:::-;40835:36;;:20;40847:7;40835:11;:20::i;:::-;:36;;;40717:154;40691:181;;40890:17;40885:66;;40916:35;;;;;;;;;;;;;;40885:66;40988:4;40966:26;;:13;:18;;;:26;;;40962:67;;41001:28;;;;;;;;;;;;;;40962:67;41058:1;41044:16;;:2;:16;;;41040:52;;;41069:23;;;;;;;;;;;;;;41040:52;41105:43;41127:4;41133:2;41137:7;41146:1;41105:21;:43::i;:::-;41213:49;41230:1;41234:7;41243:13;:18;;;41213:8;:49::i;:::-;41588:1;41558:12;:18;41571:4;41558:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41632:1;41604:12;:16;41617:2;41604:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41678:2;41650:11;:20;41662:7;41650:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41740:15;41695:11;:20;41707:7;41695:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42008:19;42040:1;42030:7;:11;42008:33;;42101:1;42060:43;;:11;:24;42072:11;42060:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42056:445;;;42285:13;;42271:11;:27;42267:219;;;42355:13;:18;;;42323:11;:24;42335:11;42323:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42438:13;:28;;;42396:11;:24;42408:11;42396:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42267:219;42056:445;41533:979;42548:7;42544:2;42529:27;;42538:4;42529:27;;;;;;;;;;;;42567:42;42588:4;42594:2;42598:7;42607:1;42567:20;:42::i;:::-;40609:2008;;40505:2112;;;:::o;36122:104::-;36191:27;36201:2;36205:8;36191:27;;;;;;;;;;;;:9;:27::i;:::-;36122:104;;:::o;30906:1287::-;30967:21;;:::i;:::-;31001:12;31016:7;31001:22;;31084:4;31065:15;:13;:15::i;:::-;:23;;:47;;;;;31099:13;;31092:4;:20;31065:47;31061:1065;;;31133:31;31167:11;:17;31179:4;31167:17;;;;;;;;;;;31133:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31208:9;:16;;;31203:904;;31279:1;31253:28;;:9;:14;;;:28;;;31249:101;;31317:9;31310:16;;;;;;31249:101;31654:13;31670:1;31654:17;;31694:270;31723:6;;;;;;;;31768:11;:17;31780:4;31768:17;;;;;;;;;;;31756:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31842:1;31816:28;;:9;:14;;;:28;;;31812:109;;31884:9;31877:16;;;;;;;31812:109;31961:1;31951:7;;;;;;;:11;31694:270;;32039:7;32021:6;32013:34;31988:9;:14;;:60;;;;;;;;;;;32078:9;32071:16;;;;;;;31203:904;31114:1012;31061:1065;32154:31;;;;;;;;;;;;;;30906:1287;;;;:::o;6975:326::-;7035:4;7292:1;7270:7;:19;;;:23;7263:30;;6975:326;;;:::o;45691:667::-;45854:4;45891:2;45875:36;;;45912:12;:10;:12::i;:::-;45926:4;45932:7;45941:5;45875:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45871:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46126:1;46109:6;:13;:18;46105:235;;;46155:40;;;;;;;;;;;;;;46105:235;46298:6;46292:13;46283:6;46279:2;46275:15;46268:38;45871:480;46004:45;;;45994:55;;;:6;:55;;;;45987:62;;;45691:667;;;;;;:::o;48682:111::-;48743:13;48776:9;48769:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48682:111;:::o;536:723::-;592:13;822:1;813:5;:10;809:53;;;840:10;;;;;;;;;;;;;;;;;;;;;809:53;872:12;887:5;872:20;;903:14;928:78;943:1;935:4;:9;928:78;;961:8;;;;;:::i;:::-;;;;992:2;984:10;;;;;:::i;:::-;;;928:78;;;1016:19;1048:6;1038:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016:39;;1066:154;1082:1;1073:5;:10;1066:154;;1110:1;1100:11;;;;;:::i;:::-;;;1177:2;1169:5;:10;;;;:::i;:::-;1156:2;:24;;;;:::i;:::-;1143:39;;1126:6;1133;1126:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1206:2;1197:11;;;;;:::i;:::-;;;1066:154;;;1244:6;1230:21;;;;;536:723;;;;:::o;36890:152::-;37005:25;37017:2;37021:8;37005:11;:25::i;:::-;36890:152;;:::o;5544:191::-;5618:16;5637:6;;;;;;;;;;;5618:25;;5663:8;5654:6;;:17;;;;;;;;;;;;;;;;;;5718:8;5687:40;;5708:8;5687:40;;;;;;;;;;;;5607:128;5544:191;:::o;39632:619::-;39733:1;39721:8;:13;39717:44;;;39743:18;;;;;;;;;;;;;;39717:44;39778:20;39801:13;;39778:36;;39829:11;39858:8;39843:12;:23;;;;:::i;:::-;39829:37;;39949:12;39931:6;39923:39;;;;:::i;:::-;39881:11;:26;39893:13;;39881:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;40021:166;40123:14;;;;;;40107:12;40089:6;40081:39;40052:86;;40069:1;40052:86;;;;;;;;;;;;40182:3;40166:12;:19;;40021:166;;40233:8;40216:13;;:25;;;;;;;:::i;:::-;;;;;;;;39702:549;;39632:619;:::o;47006:159::-;;;;;:::o;47824:158::-;;;;;:::o;36589:163::-;36712:32;36718:2;36722:8;36732:5;36739:4;36712:5;:32::i;:::-;36589:163;;;:::o;39082:542::-;39210:1;39198:8;:13;39194:44;;;39220:18;;;;;;;;;;;;;;39194:44;39255:20;39278:13;;39255:36;;39306:11;39335:8;39320:12;:23;;;;:::i;:::-;39306:37;;39392:2;39358:11;:26;39370:13;;39358:26;;;;;;;;;;;:31;;;:36;;;;;;;;;;;;;;;;;;39440:120;39496:14;;;;;;39492:2;39471:40;;39488:1;39471:40;;;;;;;;;;;;39555:3;39539:12;:19;;39440:120;;39606:8;39589:13;;:25;;;;;;;:::i;:::-;;;;;;;;39179:445;;39082:542;;:::o;37301:1773::-;37440:20;37463:13;;37440:36;;37505:1;37491:16;;:2;:16;;;37487:48;;;37516:19;;;;;;;;;;;;;;37487:48;37562:1;37550:8;:13;37546:44;;;37572:18;;;;;;;;;;;;;;37546:44;37603:61;37633:1;37637:2;37641:12;37655:8;37603:21;:61::i;:::-;37974:8;37939:12;:16;37952:2;37939:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38038:8;37998:12;:16;38011:2;37998:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38097:2;38064:11;:25;38076:12;38064:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38164:15;38114:11;:25;38126:12;38114:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38197:20;38220:12;38197:35;;38247:11;38276:8;38261:12;:23;38247:37;;38305:4;:23;;;;;38313:15;:2;:13;;;:15::i;:::-;38305:23;38301:641;;;38349:314;38405:12;38401:2;38380:38;;38397:1;38380:38;;;;;;;;;;;;38446:69;38485:1;38489:2;38493:14;;;;;;38509:5;38446:30;:69::i;:::-;38441:174;;38551:40;;;;;;;;;;;;;;38441:174;38658:3;38642:12;:19;;38349:314;;38744:12;38727:13;;:29;38723:43;;38758:8;;;38723:43;38301:641;;;38807:120;38863:14;;;;;;38859:2;38838:40;;38855:1;38838:40;;;;;;;;;;;;38922:3;38906:12;:19;;38807:120;;38301:641;38972:12;38956:13;:28;;;;37914:1082;;39006:60;39035:1;39039:2;39043:12;39057:8;39006:20;:60::i;:::-;37429:1645;37301:1773;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:109::-;7843:21;7858:5;7843:21;:::i;:::-;7838:3;7831:34;7762:109;;:::o;7877:360::-;7963:3;7991:38;8023:5;7991:38;:::i;:::-;8045:70;8108:6;8103:3;8045:70;:::i;:::-;8038:77;;8124:52;8169:6;8164:3;8157:4;8150:5;8146:16;8124:52;:::i;:::-;8201:29;8223:6;8201:29;:::i;:::-;8196:3;8192:39;8185:46;;7967:270;7877:360;;;;:::o;8243:364::-;8331:3;8359:39;8392:5;8359:39;:::i;:::-;8414:71;8478:6;8473:3;8414:71;:::i;:::-;8407:78;;8494:52;8539:6;8534:3;8527:4;8520:5;8516:16;8494:52;:::i;:::-;8571:29;8593:6;8571:29;:::i;:::-;8566:3;8562:39;8555:46;;8335:272;8243:364;;;;:::o;8613:377::-;8719:3;8747:39;8780:5;8747:39;:::i;:::-;8802:89;8884:6;8879:3;8802:89;:::i;:::-;8795:96;;8900:52;8945:6;8940:3;8933:4;8926:5;8922:16;8900:52;:::i;:::-;8977:6;8972:3;8968:16;8961:23;;8723:267;8613:377;;;;:::o;8996:366::-;9138:3;9159:67;9223:2;9218:3;9159:67;:::i;:::-;9152:74;;9235:93;9324:3;9235:93;:::i;:::-;9353:2;9348:3;9344:12;9337:19;;8996:366;;;:::o;9368:::-;9510:3;9531:67;9595:2;9590:3;9531:67;:::i;:::-;9524:74;;9607:93;9696:3;9607:93;:::i;:::-;9725:2;9720:3;9716:12;9709:19;;9368:366;;;:::o;9740:::-;9882:3;9903:67;9967:2;9962:3;9903:67;:::i;:::-;9896:74;;9979:93;10068:3;9979:93;:::i;:::-;10097:2;10092:3;10088:12;10081:19;;9740:366;;;:::o;10112:::-;10254:3;10275:67;10339:2;10334:3;10275:67;:::i;:::-;10268:74;;10351:93;10440:3;10351:93;:::i;:::-;10469:2;10464:3;10460:12;10453:19;;10112:366;;;:::o;10484:365::-;10626:3;10647:66;10711:1;10706:3;10647:66;:::i;:::-;10640:73;;10722:93;10811:3;10722:93;:::i;:::-;10840:2;10835:3;10831:12;10824:19;;10484:365;;;:::o;10855:366::-;10997:3;11018:67;11082:2;11077:3;11018:67;:::i;:::-;11011:74;;11094:93;11183:3;11094:93;:::i;:::-;11212:2;11207:3;11203:12;11196:19;;10855:366;;;:::o;11227:::-;11369:3;11390:67;11454:2;11449:3;11390:67;:::i;:::-;11383:74;;11466:93;11555:3;11466:93;:::i;:::-;11584:2;11579:3;11575:12;11568:19;;11227:366;;;:::o;11599:398::-;11758:3;11779:83;11860:1;11855:3;11779:83;:::i;:::-;11772:90;;11871:93;11960:3;11871:93;:::i;:::-;11989:1;11984:3;11980:11;11973:18;;11599:398;;;:::o;12003:118::-;12090:24;12108:5;12090:24;:::i;:::-;12085:3;12078:37;12003:118;;:::o;12127:115::-;12212:23;12229:5;12212:23;:::i;:::-;12207:3;12200:36;12127:115;;:::o;12248:435::-;12428:3;12450:95;12541:3;12532:6;12450:95;:::i;:::-;12443:102;;12562:95;12653:3;12644:6;12562:95;:::i;:::-;12555:102;;12674:3;12667:10;;12248:435;;;;;:::o;12689:379::-;12873:3;12895:147;13038:3;12895:147;:::i;:::-;12888:154;;13059:3;13052:10;;12689:379;;;:::o;13074:222::-;13167:4;13205:2;13194:9;13190:18;13182:26;;13218:71;13286:1;13275:9;13271:17;13262:6;13218:71;:::i;:::-;13074:222;;;;:::o;13302:640::-;13497:4;13535:3;13524:9;13520:19;13512:27;;13549:71;13617:1;13606:9;13602:17;13593:6;13549:71;:::i;:::-;13630:72;13698:2;13687:9;13683:18;13674:6;13630:72;:::i;:::-;13712;13780:2;13769:9;13765:18;13756:6;13712:72;:::i;:::-;13831:9;13825:4;13821:20;13816:2;13805:9;13801:18;13794:48;13859:76;13930:4;13921:6;13859:76;:::i;:::-;13851:84;;13302:640;;;;;;;:::o;13948:210::-;14035:4;14073:2;14062:9;14058:18;14050:26;;14086:65;14148:1;14137:9;14133:17;14124:6;14086:65;:::i;:::-;13948:210;;;;:::o;14164:313::-;14277:4;14315:2;14304:9;14300:18;14292:26;;14364:9;14358:4;14354:20;14350:1;14339:9;14335:17;14328:47;14392:78;14465:4;14456:6;14392:78;:::i;:::-;14384:86;;14164:313;;;;:::o;14483:419::-;14649:4;14687:2;14676:9;14672:18;14664:26;;14736:9;14730:4;14726:20;14722:1;14711:9;14707:17;14700:47;14764:131;14890:4;14764:131;:::i;:::-;14756:139;;14483:419;;;:::o;14908:::-;15074:4;15112:2;15101:9;15097:18;15089:26;;15161:9;15155:4;15151:20;15147:1;15136:9;15132:17;15125:47;15189:131;15315:4;15189:131;:::i;:::-;15181:139;;14908:419;;;:::o;15333:::-;15499:4;15537:2;15526:9;15522:18;15514:26;;15586:9;15580:4;15576:20;15572:1;15561:9;15557:17;15550:47;15614:131;15740:4;15614:131;:::i;:::-;15606:139;;15333:419;;;:::o;15758:::-;15924:4;15962:2;15951:9;15947:18;15939:26;;16011:9;16005:4;16001:20;15997:1;15986:9;15982:17;15975:47;16039:131;16165:4;16039:131;:::i;:::-;16031:139;;15758:419;;;:::o;16183:::-;16349:4;16387:2;16376:9;16372:18;16364:26;;16436:9;16430:4;16426:20;16422:1;16411:9;16407:17;16400:47;16464:131;16590:4;16464:131;:::i;:::-;16456:139;;16183:419;;;:::o;16608:::-;16774:4;16812:2;16801:9;16797:18;16789:26;;16861:9;16855:4;16851:20;16847:1;16836:9;16832:17;16825:47;16889:131;17015:4;16889:131;:::i;:::-;16881:139;;16608:419;;;:::o;17033:::-;17199:4;17237:2;17226:9;17222:18;17214:26;;17286:9;17280:4;17276:20;17272:1;17261:9;17257:17;17250:47;17314:131;17440:4;17314:131;:::i;:::-;17306:139;;17033:419;;;:::o;17458:222::-;17551:4;17589:2;17578:9;17574:18;17566:26;;17602:71;17670:1;17659:9;17655:17;17646:6;17602:71;:::i;:::-;17458:222;;;;:::o;17686:218::-;17777:4;17815:2;17804:9;17800:18;17792:26;;17828:69;17894:1;17883:9;17879:17;17870:6;17828:69;:::i;:::-;17686:218;;;;:::o;17910:129::-;17944:6;17971:20;;:::i;:::-;17961:30;;18000:33;18028:4;18020:6;18000:33;:::i;:::-;17910:129;;;:::o;18045:75::-;18078:6;18111:2;18105:9;18095:19;;18045:75;:::o;18126:307::-;18187:4;18277:18;18269:6;18266:30;18263:56;;;18299:18;;:::i;:::-;18263:56;18337:29;18359:6;18337:29;:::i;:::-;18329:37;;18421:4;18415;18411:15;18403:23;;18126:307;;;:::o;18439:308::-;18501:4;18591:18;18583:6;18580:30;18577:56;;;18613:18;;:::i;:::-;18577:56;18651:29;18673:6;18651:29;:::i;:::-;18643:37;;18735:4;18729;18725:15;18717:23;;18439:308;;;:::o;18753:98::-;18804:6;18838:5;18832:12;18822:22;;18753:98;;;:::o;18857:99::-;18909:6;18943:5;18937:12;18927:22;;18857:99;;;:::o;18962:168::-;19045:11;19079:6;19074:3;19067:19;19119:4;19114:3;19110:14;19095:29;;18962:168;;;;:::o;19136:147::-;19237:11;19274:3;19259:18;;19136:147;;;;:::o;19289:169::-;19373:11;19407:6;19402:3;19395:19;19447:4;19442:3;19438:14;19423:29;;19289:169;;;;:::o;19464:148::-;19566:11;19603:3;19588:18;;19464:148;;;;:::o;19618:281::-;19658:3;19677:20;19695:1;19677:20;:::i;:::-;19672:25;;19711:20;19729:1;19711:20;:::i;:::-;19706:25;;19841:1;19797:42;19793:50;19790:1;19787:57;19784:83;;;19847:18;;:::i;:::-;19784:83;19891:1;19888;19884:9;19877:16;;19618:281;;;;:::o;19905:305::-;19945:3;19964:20;19982:1;19964:20;:::i;:::-;19959:25;;19998:20;20016:1;19998:20;:::i;:::-;19993:25;;20152:1;20084:66;20080:74;20077:1;20074:81;20071:107;;;20158:18;;:::i;:::-;20071:107;20202:1;20199;20195:9;20188:16;;19905:305;;;;:::o;20216:185::-;20256:1;20273:20;20291:1;20273:20;:::i;:::-;20268:25;;20307:20;20325:1;20307:20;:::i;:::-;20302:25;;20346:1;20336:35;;20351:18;;:::i;:::-;20336:35;20393:1;20390;20386:9;20381:14;;20216:185;;;;:::o;20407:348::-;20447:7;20470:20;20488:1;20470:20;:::i;:::-;20465:25;;20504:20;20522:1;20504:20;:::i;:::-;20499:25;;20692:1;20624:66;20620:74;20617:1;20614:81;20609:1;20602:9;20595:17;20591:105;20588:131;;;20699:18;;:::i;:::-;20588:131;20747:1;20744;20740:9;20729:20;;20407:348;;;;:::o;20761:191::-;20801:4;20821:20;20839:1;20821:20;:::i;:::-;20816:25;;20855:20;20873:1;20855:20;:::i;:::-;20850:25;;20894:1;20891;20888:8;20885:34;;;20899:18;;:::i;:::-;20885:34;20944:1;20941;20937:9;20929:17;;20761:191;;;;:::o;20958:::-;20998:4;21018:20;21036:1;21018:20;:::i;:::-;21013:25;;21052:20;21070:1;21052:20;:::i;:::-;21047:25;;21091:1;21088;21085:8;21082:34;;;21096:18;;:::i;:::-;21082:34;21141:1;21138;21134:9;21126:17;;20958:191;;;;:::o;21155:96::-;21192:7;21221:24;21239:5;21221:24;:::i;:::-;21210:35;;21155:96;;;:::o;21257:90::-;21291:7;21334:5;21327:13;21320:21;21309:32;;21257:90;;;:::o;21353:149::-;21389:7;21429:66;21422:5;21418:78;21407:89;;21353:149;;;:::o;21508:126::-;21545:7;21585:42;21578:5;21574:54;21563:65;;21508:126;;;:::o;21640:77::-;21677:7;21706:5;21695:16;;21640:77;;;:::o;21723:93::-;21759:7;21799:10;21792:5;21788:22;21777:33;;21723:93;;;:::o;21822:154::-;21906:6;21901:3;21896;21883:30;21968:1;21959:6;21954:3;21950:16;21943:27;21822:154;;;:::o;21982:307::-;22050:1;22060:113;22074:6;22071:1;22068:13;22060:113;;;22159:1;22154:3;22150:11;22144:18;22140:1;22135:3;22131:11;22124:39;22096:2;22093:1;22089:10;22084:15;;22060:113;;;22191:6;22188:1;22185:13;22182:101;;;22271:1;22262:6;22257:3;22253:16;22246:27;22182:101;22031:258;21982:307;;;:::o;22295:320::-;22339:6;22376:1;22370:4;22366:12;22356:22;;22423:1;22417:4;22413:12;22444:18;22434:81;;22500:4;22492:6;22488:17;22478:27;;22434:81;22562:2;22554:6;22551:14;22531:18;22528:38;22525:84;;;22581:18;;:::i;:::-;22525:84;22346:269;22295:320;;;:::o;22621:281::-;22704:27;22726:4;22704:27;:::i;:::-;22696:6;22692:40;22834:6;22822:10;22819:22;22798:18;22786:10;22783:34;22780:62;22777:88;;;22845:18;;:::i;:::-;22777:88;22885:10;22881:2;22874:22;22664:238;22621:281;;:::o;22908:233::-;22947:3;22970:24;22988:5;22970:24;:::i;:::-;22961:33;;23016:66;23009:5;23006:77;23003:103;;;23086:18;;:::i;:::-;23003:103;23133:1;23126:5;23122:13;23115:20;;22908:233;;;:::o;23147:176::-;23179:1;23196:20;23214:1;23196:20;:::i;:::-;23191:25;;23230:20;23248:1;23230:20;:::i;:::-;23225:25;;23269:1;23259:35;;23274:18;;:::i;:::-;23259:35;23315:1;23312;23308:9;23303:14;;23147:176;;;;:::o;23329:180::-;23377:77;23374:1;23367:88;23474:4;23471:1;23464:15;23498:4;23495:1;23488:15;23515:180;23563:77;23560:1;23553:88;23660:4;23657:1;23650:15;23684:4;23681:1;23674:15;23701:180;23749:77;23746:1;23739:88;23846:4;23843:1;23836:15;23870:4;23867:1;23860:15;23887:180;23935:77;23932:1;23925:88;24032:4;24029:1;24022:15;24056:4;24053:1;24046:15;24073:180;24121:77;24118:1;24111:88;24218:4;24215:1;24208:15;24242:4;24239:1;24232:15;24259:117;24368:1;24365;24358:12;24382:117;24491:1;24488;24481:12;24505:117;24614:1;24611;24604:12;24628:117;24737:1;24734;24727:12;24751:102;24792:6;24843:2;24839:7;24834:2;24827:5;24823:14;24819:28;24809:38;;24751:102;;;:::o;24859:167::-;24999:19;24995:1;24987:6;24983:14;24976:43;24859:167;:::o;25032:162::-;25172:14;25168:1;25160:6;25156:14;25149:38;25032:162;:::o;25200:225::-;25340:34;25336:1;25328:6;25324:14;25317:58;25409:8;25404:2;25396:6;25392:15;25385:33;25200:225;:::o;25431:174::-;25571:26;25567:1;25559:6;25555:14;25548:50;25431:174;:::o;25611:158::-;25751:10;25747:1;25739:6;25735:14;25728:34;25611:158;:::o;25775:180::-;25915:32;25911:1;25903:6;25899:14;25892:56;25775:180;:::o;25961:182::-;26101:34;26097:1;26089:6;26085:14;26078:58;25961:182;:::o;26149:114::-;;:::o;26269:122::-;26342:24;26360:5;26342:24;:::i;:::-;26335:5;26332:35;26322:63;;26381:1;26378;26371:12;26322:63;26269:122;:::o;26397:116::-;26467:21;26482:5;26467:21;:::i;:::-;26460:5;26457:32;26447:60;;26503:1;26500;26493:12;26447:60;26397:116;:::o;26519:120::-;26591:23;26608:5;26591:23;:::i;:::-;26584:5;26581:34;26571:62;;26629:1;26626;26619:12;26571:62;26519:120;:::o;26645:122::-;26718:24;26736:5;26718:24;:::i;:::-;26711:5;26708:35;26698:63;;26757:1;26754;26747:12;26698:63;26645:122;:::o
Swarm Source
ipfs://764c23c8d2a228c514e0d65de0e5aea9f592af751201dbc3afd24fd7fa16fd4a
Loading...
Loading
Loading...
Loading
[ 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.