Overview
CRO Balance
0 CRO
CRO Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 74 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 17706072 | 6 days ago | IN | 0 CRO | 0.27418403 | ||||
Transfer From | 17242842 | 36 days ago | IN | 0 CRO | 0.505 | ||||
Transfer From | 17242840 | 36 days ago | IN | 0 CRO | 0.505 | ||||
Set Approval For... | 17041367 | 50 days ago | IN | 0 CRO | 0.135239 | ||||
Set Approval For... | 17041367 | 50 days ago | IN | 0 CRO | 0.235734 | ||||
Safe Transfer Fr... | 16740840 | 70 days ago | IN | 0 CRO | 0.37794351 | ||||
Safe Transfer Fr... | 16633984 | 77 days ago | IN | 0 CRO | 0.282412 | ||||
Safe Transfer Fr... | 16592165 | 79 days ago | IN | 0 CRO | 0.27544664 | ||||
Safe Transfer Fr... | 16495516 | 86 days ago | IN | 0 CRO | 0.36361972 | ||||
Safe Transfer Fr... | 15489954 | 151 days ago | IN | 0 CRO | 0.27424461 | ||||
Safe Transfer Fr... | 15489948 | 151 days ago | IN | 0 CRO | 0.27424461 | ||||
Safe Transfer Fr... | 15489928 | 151 days ago | IN | 0 CRO | 0.36057396 | ||||
Set Approval For... | 15381342 | 158 days ago | IN | 0 CRO | 0.235734 | ||||
Safe Transfer Fr... | 15350008 | 161 days ago | IN | 0 CRO | 0.3606811 | ||||
Safe Transfer Fr... | 15321105 | 162 days ago | IN | 0 CRO | 0.27544664 | ||||
Safe Transfer Fr... | 15317076 | 163 days ago | IN | 0 CRO | 0.36361972 | ||||
Safe Transfer Fr... | 15229614 | 169 days ago | IN | 0 CRO | 0.27550775 | ||||
Safe Transfer Fr... | 15203206 | 170 days ago | IN | 0 CRO | 0.27544664 | ||||
Safe Transfer Fr... | 15202987 | 170 days ago | IN | 0 CRO | 0.36051338 | ||||
Set Approval For... | 15189362 | 171 days ago | IN | 0 CRO | 0.235734 | ||||
Safe Transfer Fr... | 15189354 | 171 days ago | IN | 0 CRO | 0.3606811 | ||||
Safe Transfer Fr... | 15181022 | 172 days ago | IN | 0 CRO | 0.27544664 | ||||
Safe Transfer Fr... | 15180654 | 172 days ago | IN | 0 CRO | 0.36361972 | ||||
Safe Transfer Fr... | 15143189 | 174 days ago | IN | 0 CRO | 0.27544664 | ||||
Safe Transfer Fr... | 15127850 | 175 days ago | IN | 0 CRO | 0.3606205 |
Loading...
Loading
Contract Name:
ICYVIP
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2024-02-09 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //Developer Info: //Written by Blockchainguy.net //Email: [email protected] //Instagram: @sheraz.manzoor /** * @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; } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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); } pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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; } } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } 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); } 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); } 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 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 = 1; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter - 1; } } /** * @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(); return uint256(_addressData[owner].balance); } /** * 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; } /** * 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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); uint256 curr = tokenId; unchecked { if (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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned && tokenId > 0; } 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); } /** * @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; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, 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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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 {} } contract ICYVIP is Ownable, ERC721A{ using Strings for uint256; uint public maxSupply = 300; string public baseURI = "ipfs://QmaWJ5tamq9wEXnmiW36GrNc2R1jAQ8iHwg9gehfAgrXut/"; constructor() ERC721A("ICY VIP", "ICYVIP"){} function sendNftstoMultipleWallets(address[] memory _wallets) external onlyOwner{ require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached."); for(uint i = 0; i < _wallets.length; i++) _safeMint(_wallets[i], 1); } function airdrop(address _reciever, uint256 _count) external onlyOwner{ require(totalSupply() + _count <= maxSupply, "Max Supply Reached."); _safeMint(_reciever, _count); } function setBaseUri(string memory _uri) external onlyOwner { baseURI = _uri; } function setMaxSupply(uint _temp) external onlyOwner{ maxSupply = _temp; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI( uint256 _tokenId ) public view virtual override returns (string memory) { require(_tokenId > 0,"Token id doesnot exist."); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, "ICY_VIP_", _tokenId.toString(), ".json" ) ) : ""; } }
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":"address","name":"_reciever","type":"address"},{"internalType":"uint256","name":"_count","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_wallets","type":"address[]"}],"name":"sendNftstoMultipleWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_temp","type":"uint256"}],"name":"setMaxSupply","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"}]
Contract Creation Code
60806040526001805561012c600955604051806060016040528060368152602001620033f060369139600a90805190602001906200003f929190620001e0565b503480156200004d57600080fd5b506040518060400160405280600781526020017f49435920564950000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4943595649500000000000000000000000000000000000000000000000000000815250620000da620000ce6200011460201b60201c565b6200011c60201b60201c565b8160039080519060200190620000f2929190620001e0565b5080600490805190602001906200010b929190620001e0565b505050620002f5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ee90620002bf565b90600052602060002090601f0160209004810192826200021257600085556200025e565b82601f106200022d57805160ff19168380011785556200025e565b828001600101855582156200025e579182015b828111156200025d57825182559160200191906001019062000240565b5b5090506200026d919062000271565b5090565b5b808211156200028c57600081600090555060010162000272565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d857607f821691505b60208210811415620002ef57620002ee62000290565b5b50919050565b6130eb80620003056000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a22cb4651161007c578063a22cb46514610376578063b88d4fde14610392578063c87b56dd146103ae578063d5abeb01146103de578063e985e9c5146103fc578063f2fde38b1461042c5761014d565b8063715018a6146102dc5780638a0c5204146102e65780638ba4cc3c146103025780638da5cb5b1461031e57806395d89b411461033c578063a0bcfc7f1461035a5761014d565b806323b872dd1161011557806323b872dd1461020a57806342842e0e146102265780636352211e146102425780636c0360eb146102725780636f8b44b01461029057806370a08231146102ac5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190612379565b610448565b60405161017991906123c1565b60405180910390f35b61018a61052a565b6040516101979190612475565b60405180910390f35b6101ba60048036038101906101b591906124cd565b6105bc565b6040516101c7919061253b565b60405180910390f35b6101ea60048036038101906101e59190612582565b610638565b005b6101f4610743565b60405161020191906125d1565b60405180910390f35b610224600480360381019061021f91906125ec565b610754565b005b610240600480360381019061023b91906125ec565b610764565b005b61025c600480360381019061025791906124cd565b610784565b604051610269919061253b565b60405180910390f35b61027a61079a565b6040516102879190612475565b60405180910390f35b6102aa60048036038101906102a591906124cd565b610828565b005b6102c660048036038101906102c1919061263f565b6108ae565b6040516102d391906125d1565b60405180910390f35b6102e461097e565b005b61030060048036038101906102fb91906127b4565b610a06565b005b61031c60048036038101906103179190612582565b610b22565b005b610326610c03565b604051610333919061253b565b60405180910390f35b610344610c2c565b6040516103519190612475565b60405180910390f35b610374600480360381019061036f91906128b2565b610cbe565b005b610390600480360381019061038b9190612927565b610d54565b005b6103ac60048036038101906103a79190612a08565b610ecc565b005b6103c860048036038101906103c391906124cd565b610f1f565b6040516103d59190612475565b60405180910390f35b6103e6610fc1565b6040516103f391906125d1565b60405180910390f35b61041660048036038101906104119190612a8b565b610fc7565b60405161042391906123c1565b60405180910390f35b6104466004803603810190610441919061263f565b61105b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610523575061052282611153565b5b9050919050565b60606003805461053990612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461056590612afa565b80156105b25780601f10610587576101008083540402835291602001916105b2565b820191906000526020600020905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b60006105c7826111bd565b6105fd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064382610784565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ab576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ca611204565b73ffffffffffffffffffffffffffffffffffffffff16141580156106fc57506106fa816106f5611204565b610fc7565b155b15610733576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61073e83838361120c565b505050565b600060016002546001540303905090565b61075f8383836112be565b505050565b61077f83838360405180602001604052806000815250610ecc565b505050565b600061078f826117af565b600001519050919050565b600a80546107a790612afa565b80601f01602080910402602001604051908101604052809291908181526020018280546107d390612afa565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b505050505081565b610830611204565b73ffffffffffffffffffffffffffffffffffffffff1661084e610c03565b73ffffffffffffffffffffffffffffffffffffffff16146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b90612b78565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610916576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610986611204565b73ffffffffffffffffffffffffffffffffffffffff166109a4610c03565b73ffffffffffffffffffffffffffffffffffffffff16146109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190612b78565b60405180910390fd5b610a046000611a6a565b565b610a0e611204565b73ffffffffffffffffffffffffffffffffffffffff16610a2c610c03565b73ffffffffffffffffffffffffffffffffffffffff1614610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990612b78565b60405180910390fd5b6009548151610a8f610743565b610a999190612bc7565b1115610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190612c69565b60405180910390fd5b60005b8151811015610b1e57610b0b828281518110610afc57610afb612c89565b5b60200260200101516001611b2e565b8080610b1690612cb8565b915050610add565b5050565b610b2a611204565b73ffffffffffffffffffffffffffffffffffffffff16610b48610c03565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590612b78565b60405180910390fd5b60095481610baa610743565b610bb49190612bc7565b1115610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90612c69565b60405180910390fd5b610bff8282611b2e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c3b90612afa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6790612afa565b8015610cb45780601f10610c8957610100808354040283529160200191610cb4565b820191906000526020600020905b815481529060010190602001808311610c9757829003601f168201915b5050505050905090565b610cc6611204565b73ffffffffffffffffffffffffffffffffffffffff16610ce4610c03565b73ffffffffffffffffffffffffffffffffffffffff1614610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190612b78565b60405180910390fd5b80600a9080519060200190610d50929190612227565b5050565b610d5c611204565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610dce611204565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e7b611204565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ec091906123c1565b60405180910390a35050565b610ed78484846112be565b610ee384848484611b4c565b610f19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606060008211610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90612d4d565b60405180910390fd5b6000610f6e611ccb565b90506000815111610f8e5760405180602001604052806000815250610fb9565b80610f9884611d5d565b604051602001610fa9929190612e41565b6040516020818303038152906040525b915050919050565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611063611204565b73ffffffffffffffffffffffffffffffffffffffff16611081610c03565b73ffffffffffffffffffffffffffffffffffffffff16146110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90612b78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90612eed565b60405180910390fd5b61115081611a6a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600154821080156111f1575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b80156111fd5750600082115b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006112c9826117af565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166112f0611204565b73ffffffffffffffffffffffffffffffffffffffff1614806113235750611322826000015161131d611204565b610fc7565b5b806113685750611331611204565b73ffffffffffffffffffffffffffffffffffffffff16611350846105bc565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806113a1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461140a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611471576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61147e8585856001611ebe565b61148e600084846000015161120c565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561173f5760015481101561173e5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117a88585856001611ec4565b5050505050565b6117b76122ad565b6117c0826111bd565b6117f6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829050600154811015611a33576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a3157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611915578092505050611a65565b5b600115611a3057818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a2b578092505050611a65565b611916565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b48828260405180602001604052806000815250611eca565b5050565b6000611b6d8473ffffffffffffffffffffffffffffffffffffffff16611edc565b15611cbe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b96611204565b8786866040518563ffffffff1660e01b8152600401611bb89493929190612f62565b6020604051808303816000875af1925050508015611bf457506040513d601f19601f82011682018060405250810190611bf19190612fc3565b60015b611c6e573d8060008114611c24576040519150601f19603f3d011682016040523d82523d6000602084013e611c29565b606091505b50600081511415611c66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cc3565b600190505b949350505050565b6060600a8054611cda90612afa565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0690612afa565b8015611d535780601f10611d2857610100808354040283529160200191611d53565b820191906000526020600020905b815481529060010190602001808311611d3657829003601f168201915b5050505050905090565b60606000821415611da5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eb9565b600082905060005b60008214611dd7578080611dc090612cb8565b915050600a82611dd0919061301f565b9150611dad565b60008167ffffffffffffffff811115611df357611df2612671565b5b6040519080825280601f01601f191660200182016040528015611e255781602001600182028036833780820191505090505b5090505b60008514611eb257600182611e3e9190613050565b9150600a85611e4d9190613084565b6030611e599190612bc7565b60f81b818381518110611e6f57611e6e612c89565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611eab919061301f565b9450611e29565b8093505050505b919050565b50505050565b50505050565b611ed78383836001611eef565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f5d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611f98576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa56000868387611ebe565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561220a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156121be57506121bc6000888488611b4c565b155b156121f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612143565b5080600181905550506122206000868387611ec4565b5050505050565b82805461223390612afa565b90600052602060002090601f016020900481019282612255576000855561229c565b82601f1061226e57805160ff191683800117855561229c565b8280016001018555821561229c579182015b8281111561229b578251825591602001919060010190612280565b5b5090506122a991906122f0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156123095760008160009055506001016122f1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61235681612321565b811461236157600080fd5b50565b6000813590506123738161234d565b92915050565b60006020828403121561238f5761238e612317565b5b600061239d84828501612364565b91505092915050565b60008115159050919050565b6123bb816123a6565b82525050565b60006020820190506123d660008301846123b2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124165780820151818401526020810190506123fb565b83811115612425576000848401525b50505050565b6000601f19601f8301169050919050565b6000612447826123dc565b61245181856123e7565b93506124618185602086016123f8565b61246a8161242b565b840191505092915050565b6000602082019050818103600083015261248f818461243c565b905092915050565b6000819050919050565b6124aa81612497565b81146124b557600080fd5b50565b6000813590506124c7816124a1565b92915050565b6000602082840312156124e3576124e2612317565b5b60006124f1848285016124b8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612525826124fa565b9050919050565b6125358161251a565b82525050565b6000602082019050612550600083018461252c565b92915050565b61255f8161251a565b811461256a57600080fd5b50565b60008135905061257c81612556565b92915050565b6000806040838503121561259957612598612317565b5b60006125a78582860161256d565b92505060206125b8858286016124b8565b9150509250929050565b6125cb81612497565b82525050565b60006020820190506125e660008301846125c2565b92915050565b60008060006060848603121561260557612604612317565b5b60006126138682870161256d565b93505060206126248682870161256d565b9250506040612635868287016124b8565b9150509250925092565b60006020828403121561265557612654612317565b5b60006126638482850161256d565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126a98261242b565b810181811067ffffffffffffffff821117156126c8576126c7612671565b5b80604052505050565b60006126db61230d565b90506126e782826126a0565b919050565b600067ffffffffffffffff82111561270757612706612671565b5b602082029050602081019050919050565b600080fd5b600061273061272b846126ec565b6126d1565b9050808382526020820190506020840283018581111561275357612752612718565b5b835b8181101561277c5780612768888261256d565b845260208401935050602081019050612755565b5050509392505050565b600082601f83011261279b5761279a61266c565b5b81356127ab84826020860161271d565b91505092915050565b6000602082840312156127ca576127c9612317565b5b600082013567ffffffffffffffff8111156127e8576127e761231c565b5b6127f484828501612786565b91505092915050565b600080fd5b600067ffffffffffffffff82111561281d5761281c612671565b5b6128268261242b565b9050602081019050919050565b82818337600083830152505050565b600061285561285084612802565b6126d1565b905082815260208101848484011115612871576128706127fd565b5b61287c848285612833565b509392505050565b600082601f8301126128995761289861266c565b5b81356128a9848260208601612842565b91505092915050565b6000602082840312156128c8576128c7612317565b5b600082013567ffffffffffffffff8111156128e6576128e561231c565b5b6128f284828501612884565b91505092915050565b612904816123a6565b811461290f57600080fd5b50565b600081359050612921816128fb565b92915050565b6000806040838503121561293e5761293d612317565b5b600061294c8582860161256d565b925050602061295d85828601612912565b9150509250929050565b600067ffffffffffffffff82111561298257612981612671565b5b61298b8261242b565b9050602081019050919050565b60006129ab6129a684612967565b6126d1565b9050828152602081018484840111156129c7576129c66127fd565b5b6129d2848285612833565b509392505050565b600082601f8301126129ef576129ee61266c565b5b81356129ff848260208601612998565b91505092915050565b60008060008060808587031215612a2257612a21612317565b5b6000612a308782880161256d565b9450506020612a418782880161256d565b9350506040612a52878288016124b8565b925050606085013567ffffffffffffffff811115612a7357612a7261231c565b5b612a7f878288016129da565b91505092959194509250565b60008060408385031215612aa257612aa1612317565b5b6000612ab08582860161256d565b9250506020612ac18582860161256d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1257607f821691505b60208210811415612b2657612b25612acb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b626020836123e7565b9150612b6d82612b2c565b602082019050919050565b60006020820190508181036000830152612b9181612b55565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bd282612497565b9150612bdd83612497565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c1257612c11612b98565b5b828201905092915050565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b6000612c536013836123e7565b9150612c5e82612c1d565b602082019050919050565b60006020820190508181036000830152612c8281612c46565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612cc382612497565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cf657612cf5612b98565b5b600182019050919050565b7f546f6b656e20696420646f65736e6f742065786973742e000000000000000000600082015250565b6000612d376017836123e7565b9150612d4282612d01565b602082019050919050565b60006020820190508181036000830152612d6681612d2a565b9050919050565b600081905092915050565b6000612d83826123dc565b612d8d8185612d6d565b9350612d9d8185602086016123f8565b80840191505092915050565b7f4943595f5649505f000000000000000000000000000000000000000000000000600082015250565b6000612ddf600883612d6d565b9150612dea82612da9565b600882019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e2b600583612d6d565b9150612e3682612df5565b600582019050919050565b6000612e4d8285612d78565b9150612e5882612dd2565b9150612e648284612d78565b9150612e6f82612e1e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ed76026836123e7565b9150612ee282612e7b565b604082019050919050565b60006020820190508181036000830152612f0681612eca565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f3482612f0d565b612f3e8185612f18565b9350612f4e8185602086016123f8565b612f578161242b565b840191505092915050565b6000608082019050612f77600083018761252c565b612f84602083018661252c565b612f9160408301856125c2565b8181036060830152612fa38184612f29565b905095945050505050565b600081519050612fbd8161234d565b92915050565b600060208284031215612fd957612fd8612317565b5b6000612fe784828501612fae565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061302a82612497565b915061303583612497565b92508261304557613044612ff0565b5b828204905092915050565b600061305b82612497565b915061306683612497565b92508282101561307957613078612b98565b5b828203905092915050565b600061308f82612497565b915061309a83612497565b9250826130aa576130a9612ff0565b5b82820690509291505056fea2646970667358221220167463224de7419179b5414f080beedc4566569380c4099d21b4cd5a475aa64764736f6c634300080b0033697066733a2f2f516d61574a3574616d71397745586e6d6957333647724e633252316a4151386948776739676568664167725875742f
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a22cb4651161007c578063a22cb46514610376578063b88d4fde14610392578063c87b56dd146103ae578063d5abeb01146103de578063e985e9c5146103fc578063f2fde38b1461042c5761014d565b8063715018a6146102dc5780638a0c5204146102e65780638ba4cc3c146103025780638da5cb5b1461031e57806395d89b411461033c578063a0bcfc7f1461035a5761014d565b806323b872dd1161011557806323b872dd1461020a57806342842e0e146102265780636352211e146102425780636c0360eb146102725780636f8b44b01461029057806370a08231146102ac5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190612379565b610448565b60405161017991906123c1565b60405180910390f35b61018a61052a565b6040516101979190612475565b60405180910390f35b6101ba60048036038101906101b591906124cd565b6105bc565b6040516101c7919061253b565b60405180910390f35b6101ea60048036038101906101e59190612582565b610638565b005b6101f4610743565b60405161020191906125d1565b60405180910390f35b610224600480360381019061021f91906125ec565b610754565b005b610240600480360381019061023b91906125ec565b610764565b005b61025c600480360381019061025791906124cd565b610784565b604051610269919061253b565b60405180910390f35b61027a61079a565b6040516102879190612475565b60405180910390f35b6102aa60048036038101906102a591906124cd565b610828565b005b6102c660048036038101906102c1919061263f565b6108ae565b6040516102d391906125d1565b60405180910390f35b6102e461097e565b005b61030060048036038101906102fb91906127b4565b610a06565b005b61031c60048036038101906103179190612582565b610b22565b005b610326610c03565b604051610333919061253b565b60405180910390f35b610344610c2c565b6040516103519190612475565b60405180910390f35b610374600480360381019061036f91906128b2565b610cbe565b005b610390600480360381019061038b9190612927565b610d54565b005b6103ac60048036038101906103a79190612a08565b610ecc565b005b6103c860048036038101906103c391906124cd565b610f1f565b6040516103d59190612475565b60405180910390f35b6103e6610fc1565b6040516103f391906125d1565b60405180910390f35b61041660048036038101906104119190612a8b565b610fc7565b60405161042391906123c1565b60405180910390f35b6104466004803603810190610441919061263f565b61105b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610523575061052282611153565b5b9050919050565b60606003805461053990612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461056590612afa565b80156105b25780601f10610587576101008083540402835291602001916105b2565b820191906000526020600020905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b60006105c7826111bd565b6105fd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064382610784565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ab576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ca611204565b73ffffffffffffffffffffffffffffffffffffffff16141580156106fc57506106fa816106f5611204565b610fc7565b155b15610733576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61073e83838361120c565b505050565b600060016002546001540303905090565b61075f8383836112be565b505050565b61077f83838360405180602001604052806000815250610ecc565b505050565b600061078f826117af565b600001519050919050565b600a80546107a790612afa565b80601f01602080910402602001604051908101604052809291908181526020018280546107d390612afa565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b505050505081565b610830611204565b73ffffffffffffffffffffffffffffffffffffffff1661084e610c03565b73ffffffffffffffffffffffffffffffffffffffff16146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b90612b78565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610916576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610986611204565b73ffffffffffffffffffffffffffffffffffffffff166109a4610c03565b73ffffffffffffffffffffffffffffffffffffffff16146109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190612b78565b60405180910390fd5b610a046000611a6a565b565b610a0e611204565b73ffffffffffffffffffffffffffffffffffffffff16610a2c610c03565b73ffffffffffffffffffffffffffffffffffffffff1614610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990612b78565b60405180910390fd5b6009548151610a8f610743565b610a999190612bc7565b1115610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190612c69565b60405180910390fd5b60005b8151811015610b1e57610b0b828281518110610afc57610afb612c89565b5b60200260200101516001611b2e565b8080610b1690612cb8565b915050610add565b5050565b610b2a611204565b73ffffffffffffffffffffffffffffffffffffffff16610b48610c03565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590612b78565b60405180910390fd5b60095481610baa610743565b610bb49190612bc7565b1115610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90612c69565b60405180910390fd5b610bff8282611b2e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c3b90612afa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6790612afa565b8015610cb45780601f10610c8957610100808354040283529160200191610cb4565b820191906000526020600020905b815481529060010190602001808311610c9757829003601f168201915b5050505050905090565b610cc6611204565b73ffffffffffffffffffffffffffffffffffffffff16610ce4610c03565b73ffffffffffffffffffffffffffffffffffffffff1614610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190612b78565b60405180910390fd5b80600a9080519060200190610d50929190612227565b5050565b610d5c611204565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610dce611204565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e7b611204565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ec091906123c1565b60405180910390a35050565b610ed78484846112be565b610ee384848484611b4c565b610f19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606060008211610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90612d4d565b60405180910390fd5b6000610f6e611ccb565b90506000815111610f8e5760405180602001604052806000815250610fb9565b80610f9884611d5d565b604051602001610fa9929190612e41565b6040516020818303038152906040525b915050919050565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611063611204565b73ffffffffffffffffffffffffffffffffffffffff16611081610c03565b73ffffffffffffffffffffffffffffffffffffffff16146110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90612b78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90612eed565b60405180910390fd5b61115081611a6a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600154821080156111f1575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b80156111fd5750600082115b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006112c9826117af565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166112f0611204565b73ffffffffffffffffffffffffffffffffffffffff1614806113235750611322826000015161131d611204565b610fc7565b5b806113685750611331611204565b73ffffffffffffffffffffffffffffffffffffffff16611350846105bc565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806113a1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461140a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611471576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61147e8585856001611ebe565b61148e600084846000015161120c565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561173f5760015481101561173e5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117a88585856001611ec4565b5050505050565b6117b76122ad565b6117c0826111bd565b6117f6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829050600154811015611a33576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a3157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611915578092505050611a65565b5b600115611a3057818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a2b578092505050611a65565b611916565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b48828260405180602001604052806000815250611eca565b5050565b6000611b6d8473ffffffffffffffffffffffffffffffffffffffff16611edc565b15611cbe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b96611204565b8786866040518563ffffffff1660e01b8152600401611bb89493929190612f62565b6020604051808303816000875af1925050508015611bf457506040513d601f19601f82011682018060405250810190611bf19190612fc3565b60015b611c6e573d8060008114611c24576040519150601f19603f3d011682016040523d82523d6000602084013e611c29565b606091505b50600081511415611c66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cc3565b600190505b949350505050565b6060600a8054611cda90612afa565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0690612afa565b8015611d535780601f10611d2857610100808354040283529160200191611d53565b820191906000526020600020905b815481529060010190602001808311611d3657829003601f168201915b5050505050905090565b60606000821415611da5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eb9565b600082905060005b60008214611dd7578080611dc090612cb8565b915050600a82611dd0919061301f565b9150611dad565b60008167ffffffffffffffff811115611df357611df2612671565b5b6040519080825280601f01601f191660200182016040528015611e255781602001600182028036833780820191505090505b5090505b60008514611eb257600182611e3e9190613050565b9150600a85611e4d9190613084565b6030611e599190612bc7565b60f81b818381518110611e6f57611e6e612c89565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611eab919061301f565b9450611e29565b8093505050505b919050565b50505050565b50505050565b611ed78383836001611eef565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f5d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611f98576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa56000868387611ebe565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561220a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156121be57506121bc6000888488611b4c565b155b156121f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612143565b5080600181905550506122206000868387611ec4565b5050505050565b82805461223390612afa565b90600052602060002090601f016020900481019282612255576000855561229c565b82601f1061226e57805160ff191683800117855561229c565b8280016001018555821561229c579182015b8281111561229b578251825591602001919060010190612280565b5b5090506122a991906122f0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156123095760008160009055506001016122f1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61235681612321565b811461236157600080fd5b50565b6000813590506123738161234d565b92915050565b60006020828403121561238f5761238e612317565b5b600061239d84828501612364565b91505092915050565b60008115159050919050565b6123bb816123a6565b82525050565b60006020820190506123d660008301846123b2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124165780820151818401526020810190506123fb565b83811115612425576000848401525b50505050565b6000601f19601f8301169050919050565b6000612447826123dc565b61245181856123e7565b93506124618185602086016123f8565b61246a8161242b565b840191505092915050565b6000602082019050818103600083015261248f818461243c565b905092915050565b6000819050919050565b6124aa81612497565b81146124b557600080fd5b50565b6000813590506124c7816124a1565b92915050565b6000602082840312156124e3576124e2612317565b5b60006124f1848285016124b8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612525826124fa565b9050919050565b6125358161251a565b82525050565b6000602082019050612550600083018461252c565b92915050565b61255f8161251a565b811461256a57600080fd5b50565b60008135905061257c81612556565b92915050565b6000806040838503121561259957612598612317565b5b60006125a78582860161256d565b92505060206125b8858286016124b8565b9150509250929050565b6125cb81612497565b82525050565b60006020820190506125e660008301846125c2565b92915050565b60008060006060848603121561260557612604612317565b5b60006126138682870161256d565b93505060206126248682870161256d565b9250506040612635868287016124b8565b9150509250925092565b60006020828403121561265557612654612317565b5b60006126638482850161256d565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126a98261242b565b810181811067ffffffffffffffff821117156126c8576126c7612671565b5b80604052505050565b60006126db61230d565b90506126e782826126a0565b919050565b600067ffffffffffffffff82111561270757612706612671565b5b602082029050602081019050919050565b600080fd5b600061273061272b846126ec565b6126d1565b9050808382526020820190506020840283018581111561275357612752612718565b5b835b8181101561277c5780612768888261256d565b845260208401935050602081019050612755565b5050509392505050565b600082601f83011261279b5761279a61266c565b5b81356127ab84826020860161271d565b91505092915050565b6000602082840312156127ca576127c9612317565b5b600082013567ffffffffffffffff8111156127e8576127e761231c565b5b6127f484828501612786565b91505092915050565b600080fd5b600067ffffffffffffffff82111561281d5761281c612671565b5b6128268261242b565b9050602081019050919050565b82818337600083830152505050565b600061285561285084612802565b6126d1565b905082815260208101848484011115612871576128706127fd565b5b61287c848285612833565b509392505050565b600082601f8301126128995761289861266c565b5b81356128a9848260208601612842565b91505092915050565b6000602082840312156128c8576128c7612317565b5b600082013567ffffffffffffffff8111156128e6576128e561231c565b5b6128f284828501612884565b91505092915050565b612904816123a6565b811461290f57600080fd5b50565b600081359050612921816128fb565b92915050565b6000806040838503121561293e5761293d612317565b5b600061294c8582860161256d565b925050602061295d85828601612912565b9150509250929050565b600067ffffffffffffffff82111561298257612981612671565b5b61298b8261242b565b9050602081019050919050565b60006129ab6129a684612967565b6126d1565b9050828152602081018484840111156129c7576129c66127fd565b5b6129d2848285612833565b509392505050565b600082601f8301126129ef576129ee61266c565b5b81356129ff848260208601612998565b91505092915050565b60008060008060808587031215612a2257612a21612317565b5b6000612a308782880161256d565b9450506020612a418782880161256d565b9350506040612a52878288016124b8565b925050606085013567ffffffffffffffff811115612a7357612a7261231c565b5b612a7f878288016129da565b91505092959194509250565b60008060408385031215612aa257612aa1612317565b5b6000612ab08582860161256d565b9250506020612ac18582860161256d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1257607f821691505b60208210811415612b2657612b25612acb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b626020836123e7565b9150612b6d82612b2c565b602082019050919050565b60006020820190508181036000830152612b9181612b55565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bd282612497565b9150612bdd83612497565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c1257612c11612b98565b5b828201905092915050565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b6000612c536013836123e7565b9150612c5e82612c1d565b602082019050919050565b60006020820190508181036000830152612c8281612c46565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612cc382612497565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cf657612cf5612b98565b5b600182019050919050565b7f546f6b656e20696420646f65736e6f742065786973742e000000000000000000600082015250565b6000612d376017836123e7565b9150612d4282612d01565b602082019050919050565b60006020820190508181036000830152612d6681612d2a565b9050919050565b600081905092915050565b6000612d83826123dc565b612d8d8185612d6d565b9350612d9d8185602086016123f8565b80840191505092915050565b7f4943595f5649505f000000000000000000000000000000000000000000000000600082015250565b6000612ddf600883612d6d565b9150612dea82612da9565b600882019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e2b600583612d6d565b9150612e3682612df5565b600582019050919050565b6000612e4d8285612d78565b9150612e5882612dd2565b9150612e648284612d78565b9150612e6f82612e1e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ed76026836123e7565b9150612ee282612e7b565b604082019050919050565b60006020820190508181036000830152612f0681612eca565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f3482612f0d565b612f3e8185612f18565b9350612f4e8185602086016123f8565b612f578161242b565b840191505092915050565b6000608082019050612f77600083018761252c565b612f84602083018661252c565b612f9160408301856125c2565b8181036060830152612fa38184612f29565b905095945050505050565b600081519050612fbd8161234d565b92915050565b600060208284031215612fd957612fd8612317565b5b6000612fe784828501612fae565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061302a82612497565b915061303583612497565b92508261304557613044612ff0565b5b828204905092915050565b600061305b82612497565b915061306683612497565b92508282101561307957613078612b98565b5b828203905092915050565b600061308f82612497565b915061309a83612497565b9250826130aa576130a9612ff0565b5b82820690509291505056fea2646970667358221220167463224de7419179b5414f080beedc4566569380c4099d21b4cd5a475aa64764736f6c634300080b0033
Deployed Bytecode Sourcemap
42758:1653:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25469:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28901:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30404:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29967:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25114:283;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31261:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31502:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28710:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42866:80;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43590:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25838:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14227:94;;;:::i;:::-;;43007:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43279:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13576:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29070:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43490:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30680:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31758:342;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43805:601;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42832:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31030:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14476:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25469:305;25571:4;25623:25;25608:40;;;:11;:40;;;;:105;;;;25680:33;25665:48;;;:11;:48;;;;25608:105;:158;;;;25730:36;25754:11;25730:23;:36::i;:::-;25608:158;25588:178;;25469:305;;;:::o;28901:100::-;28955:13;28988:5;28981:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28901:100;:::o;30404:204::-;30472:7;30497:16;30505:7;30497;:16::i;:::-;30492:64;;30522:34;;;;;;;;;;;;;;30492:64;30576:15;:24;30592:7;30576:24;;;;;;;;;;;;;;;;;;;;;30569:31;;30404:204;;;:::o;29967:371::-;30040:13;30056:24;30072:7;30056:15;:24::i;:::-;30040:40;;30101:5;30095:11;;:2;:11;;;30091:48;;;30115:24;;;;;;;;;;;;;;30091:48;30172:5;30156:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;30182:37;30199:5;30206:12;:10;:12::i;:::-;30182:16;:37::i;:::-;30181:38;30156:63;30152:138;;;30243:35;;;;;;;;;;;;;;30152:138;30302:28;30311:2;30315:7;30324:5;30302:8;:28::i;:::-;30029:309;29967:371;;:::o;25114:283::-;25166:7;25373:1;25358:12;;25342:13;;:28;:32;25335:39;;25114:283;:::o;31261:170::-;31395:28;31405:4;31411:2;31415:7;31395:9;:28::i;:::-;31261:170;;;:::o;31502:185::-;31640:39;31657:4;31663:2;31667:7;31640:39;;;;;;;;;;;;:16;:39::i;:::-;31502:185;;;:::o;28710:124::-;28774:7;28801:20;28813:7;28801:11;:20::i;:::-;:25;;;28794:32;;28710:124;;;:::o;42866:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43590:88::-;13807:12;:10;:12::i;:::-;13796:23;;:7;:5;:7::i;:::-;:23;;;13788:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43665:5:::1;43653:9;:17;;;;43590:88:::0;:::o;25838:206::-;25902:7;25943:1;25926:19;;:5;:19;;;25922:60;;;25954:28;;;;;;;;;;;;;;25922:60;26008:12;:19;26021:5;26008:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26000:36;;25993:43;;25838:206;;;:::o;14227:94::-;13807:12;:10;:12::i;:::-;13796:23;;:7;:5;:7::i;:::-;:23;;;13788:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14292:21:::1;14310:1;14292:9;:21::i;:::-;14227:94::o:0;43007:266::-;13807:12;:10;:12::i;:::-;13796:23;;:7;:5;:7::i;:::-;:23;;;13788:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43141:9:::1;;43122:8;:15;43106:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;43098:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43189:6;43185:80;43205:8;:15;43201:1;:19;43185:80;;;43240:25;43250:8;43259:1;43250:11;;;;;;;;:::i;:::-;;;;;;;;43263:1;43240:9;:25::i;:::-;43222:3;;;;;:::i;:::-;;;;43185:80;;;;43007:266:::0;:::o;43279:203::-;13807:12;:10;:12::i;:::-;13796:23;;:7;:5;:7::i;:::-;:23;;;13788:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43398:9:::1;;43388:6;43372:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;43364:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43446:28;43456:9;43467:6;43446:9;:28::i;:::-;43279:203:::0;;:::o;13576:87::-;13622:7;13649:6;;;;;;;;;;;13642:13;;13576:87;:::o;29070:104::-;29126:13;29159:7;29152:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29070:104;:::o;43490:92::-;13807:12;:10;:12::i;:::-;13796:23;;:7;:5;:7::i;:::-;:23;;;13788:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43570:4:::1;43560:7;:14;;;;;;;;;;;;:::i;:::-;;43490:92:::0;:::o;30680:279::-;30783:12;:10;:12::i;:::-;30771:24;;:8;:24;;;30767:54;;;30804:17;;;;;;;;;;;;;;30767:54;30879:8;30834:18;:32;30853:12;:10;:12::i;:::-;30834:32;;;;;;;;;;;;;;;:42;30867:8;30834:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30932:8;30903:48;;30918:12;:10;:12::i;:::-;30903:48;;;30942:8;30903:48;;;;;;:::i;:::-;;;;;;;;30680:279;;:::o;31758:342::-;31925:28;31935:4;31941:2;31945:7;31925:9;:28::i;:::-;31969:48;31992:4;31998:2;32002:7;32011:5;31969:22;:48::i;:::-;31964:129;;32041:40;;;;;;;;;;;;;;31964:129;31758:342;;;;:::o;43805:601::-;43895:13;43940:1;43929:8;:12;43921:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;43979:28;44010:10;:8;:10::i;:::-;43979:41;;44082:1;44057:14;44051:28;:32;:347;;;;;;;;;;;;;;;;;44175:14;44254:19;:8;:17;:19::i;:::-;44132:225;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44051:347;44031:367;;;43805:601;;;:::o;42832:27::-;;;;:::o;31030:164::-;31127:4;31151:18;:25;31170:5;31151:25;;;;;;;;;;;;;;;:35;31177:8;31151:35;;;;;;;;;;;;;;;;;;;;;;;;;31144:42;;31030:164;;;;:::o;14476:192::-;13807:12;:10;:12::i;:::-;13796:23;;:7;:5;:7::i;:::-;:23;;;13788:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14585:1:::1;14565:22;;:8;:22;;;;14557:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14641:19;14651:8;14641:9;:19::i;:::-;14476:192:::0;:::o;15581:157::-;15666:4;15705:25;15690:40;;;:11;:40;;;;15683:47;;15581:157;;;:::o;32355:159::-;32412:4;32446:13;;32436:7;:23;:55;;;;;32464:11;:20;32476:7;32464:20;;;;;;;;;;;:27;;;;;;;;;;;;32463:28;32436:55;:70;;;;;32505:1;32495:7;:11;32436:70;32429:77;;32355:159;;;:::o;716:98::-;769:7;796:10;789:17;;716:98;:::o;39576:196::-;39718:2;39691:15;:24;39707:7;39691:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39756:7;39752:2;39736:28;;39745:5;39736:28;;;;;;;;;;;;39576:196;;;:::o;35077:2112::-;35192:35;35230:20;35242:7;35230:11;:20::i;:::-;35192:58;;35263:22;35305:13;:18;;;35289:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;35340:50;35357:13;:18;;;35377:12;:10;:12::i;:::-;35340:16;:50::i;:::-;35289:101;:154;;;;35431:12;:10;:12::i;:::-;35407:36;;:20;35419:7;35407:11;:20::i;:::-;:36;;;35289:154;35263:181;;35462:17;35457:66;;35488:35;;;;;;;;;;;;;;35457:66;35560:4;35538:26;;:13;:18;;;:26;;;35534:67;;35573:28;;;;;;;;;;;;;;35534:67;35630:1;35616:16;;:2;:16;;;35612:52;;;35641:23;;;;;;;;;;;;;;35612:52;35677:43;35699:4;35705:2;35709:7;35718:1;35677:21;:43::i;:::-;35785:49;35802:1;35806:7;35815:13;:18;;;35785:8;:49::i;:::-;36160:1;36130:12;:18;36143:4;36130:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36204:1;36176:12;:16;36189:2;36176:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36250:2;36222:11;:20;36234:7;36222:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;36312:15;36267:11;:20;36279:7;36267:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;36580:19;36612:1;36602:7;:11;36580:33;;36673:1;36632:43;;:11;:24;36644:11;36632:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36628:445;;;36857:13;;36843:11;:27;36839:219;;;36927:13;:18;;;36895:11;:24;36907:11;36895:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37010:13;:28;;;36968:11;:24;36980:11;36968:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;36839:219;36628:445;36105:979;37120:7;37116:2;37101:27;;37110:4;37101:27;;;;;;;;;;;;37139:42;37160:4;37166:2;37170:7;37179:1;37139:20;:42::i;:::-;35181:2008;;35077:2112;;;:::o;27493:1155::-;27554:21;;:::i;:::-;27593:16;27601:7;27593;:16::i;:::-;27588:59;;27618:29;;;;;;;;;;;;;;27588:59;27660:12;27675:7;27660:22;;27731:13;;27724:4;:20;27720:861;;;27765:31;27799:11;:17;27811:4;27799:17;;;;;;;;;;;27765:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27840:9;:16;;;27835:731;;27911:1;27885:28;;:9;:14;;;:28;;;27881:101;;27949:9;27942:16;;;;;;27881:101;28286:261;28293:4;28286:261;;;28326:6;;;;;;;;28371:11;:17;28383:4;28371:17;;;;;;;;;;;28359:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28445:1;28419:28;;:9;:14;;;:28;;;28415:109;;28487:9;28480:16;;;;;;28415:109;28286:261;;;27835:731;27746:835;27720:861;28609:31;;;;;;;;;;;;;;27493:1155;;;;:::o;14676:173::-;14732:16;14751:6;;;;;;;;;;;14732:25;;14777:8;14768:6;;:17;;;;;;;;;;;;;;;;;;14832:8;14801:40;;14822:8;14801:40;;;;;;;;;;;;14721:128;14676:173;:::o;32522:104::-;32591:27;32601:2;32605:8;32591:27;;;;;;;;;;;;:9;:27::i;:::-;32522:104;;:::o;40337:790::-;40492:4;40513:15;:2;:13;;;:15::i;:::-;40509:611;;;40565:2;40549:36;;;40586:12;:10;:12::i;:::-;40600:4;40606:7;40615:5;40549:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40545:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40812:1;40795:6;:13;:18;40791:259;;;40845:40;;;;;;;;;;;;;;40791:259;41000:6;40994:13;40985:6;40981:2;40977:15;40970:38;40545:520;40682:45;;;40672:55;;;:6;:55;;;;40665:62;;;;;40509:611;41104:4;41097:11;;40337:790;;;;;;;:::o;43686:108::-;43746:13;43779:7;43772:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43686:108;:::o;1181:723::-;1237:13;1467:1;1458:5;:10;1454:53;;;1485:10;;;;;;;;;;;;;;;;;;;;;1454:53;1517:12;1532:5;1517:20;;1548:14;1573:78;1588:1;1580:4;:9;1573:78;;1606:8;;;;;:::i;:::-;;;;1637:2;1629:10;;;;;:::i;:::-;;;1573:78;;;1661:19;1693:6;1683:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1661:39;;1711:154;1727:1;1718:5;:10;1711:154;;1755:1;1745:11;;;;;:::i;:::-;;;1822:2;1814:5;:10;;;;:::i;:::-;1801:2;:24;;;;:::i;:::-;1788:39;;1771:6;1778;1771:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1851:2;1842:11;;;;;:::i;:::-;;;1711:154;;;1889:6;1875:21;;;;;1181:723;;;;:::o;41775:159::-;;;;;:::o;42593:158::-;;;;;:::o;32989:163::-;33112:32;33118:2;33122:8;33132:5;33139:4;33112:5;:32::i;:::-;32989:163;;;:::o;3646:387::-;3706:4;3914:12;3981:7;3969:20;3961:28;;4024:1;4017:4;:8;4010:15;;;3646:387;;;:::o;33411:1412::-;33550:20;33573:13;;33550:36;;33615:1;33601:16;;:2;:16;;;33597:48;;;33626:19;;;;;;;;;;;;;;33597:48;33672:1;33660:8;:13;33656:44;;;33682:18;;;;;;;;;;;;;;33656:44;33713:61;33743:1;33747:2;33751:12;33765:8;33713:21;:61::i;:::-;34086:8;34051:12;:16;34064:2;34051:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34150:8;34110:12;:16;34123:2;34110:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34209:2;34176:11;:25;34188:12;34176:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34276:15;34226:11;:25;34238:12;34226:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34309:20;34332:12;34309:35;;34366:9;34361:328;34381:8;34377:1;:12;34361:328;;;34445:12;34441:2;34420:38;;34437:1;34420:38;;;;;;;;;;;;34481:4;:68;;;;;34490:59;34521:1;34525:2;34529:12;34543:5;34490:22;:59::i;:::-;34489:60;34481:68;34477:164;;;34581:40;;;;;;;;;;;;;;34477:164;34659:14;;;;;;;34391:3;;;;;;;34361:328;;;;34721:12;34705:13;:28;;;;34026:719;34755:60;34784:1;34788:2;34792:12;34806:8;34755:20;:60::i;:::-;33539:1284;33411:1412;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:180;6421:77;6418:1;6411:88;6518:4;6515:1;6508:15;6542:4;6539:1;6532:15;6559:281;6642:27;6664:4;6642:27;:::i;:::-;6634:6;6630:40;6772:6;6760:10;6757:22;6736:18;6724:10;6721:34;6718:62;6715:88;;;6783:18;;:::i;:::-;6715:88;6823:10;6819:2;6812:22;6602:238;6559:281;;:::o;6846:129::-;6880:6;6907:20;;:::i;:::-;6897:30;;6936:33;6964:4;6956:6;6936:33;:::i;:::-;6846:129;;;:::o;6981:311::-;7058:4;7148:18;7140:6;7137:30;7134:56;;;7170:18;;:::i;:::-;7134:56;7220:4;7212:6;7208:17;7200:25;;7280:4;7274;7270:15;7262:23;;6981:311;;;:::o;7298:117::-;7407:1;7404;7397:12;7438:710;7534:5;7559:81;7575:64;7632:6;7575:64;:::i;:::-;7559:81;:::i;:::-;7550:90;;7660:5;7689:6;7682:5;7675:21;7723:4;7716:5;7712:16;7705:23;;7776:4;7768:6;7764:17;7756:6;7752:30;7805:3;7797:6;7794:15;7791:122;;;7824:79;;:::i;:::-;7791:122;7939:6;7922:220;7956:6;7951:3;7948:15;7922:220;;;8031:3;8060:37;8093:3;8081:10;8060:37;:::i;:::-;8055:3;8048:50;8127:4;8122:3;8118:14;8111:21;;7998:144;7982:4;7977:3;7973:14;7966:21;;7922:220;;;7926:21;7540:608;;7438:710;;;;;:::o;8171:370::-;8242:5;8291:3;8284:4;8276:6;8272:17;8268:27;8258:122;;8299:79;;:::i;:::-;8258:122;8416:6;8403:20;8441:94;8531:3;8523:6;8516:4;8508:6;8504:17;8441:94;:::i;:::-;8432:103;;8248:293;8171:370;;;;:::o;8547:539::-;8631:6;8680:2;8668:9;8659:7;8655:23;8651:32;8648:119;;;8686:79;;:::i;:::-;8648:119;8834:1;8823:9;8819:17;8806:31;8864:18;8856:6;8853:30;8850:117;;;8886:79;;:::i;:::-;8850:117;8991:78;9061:7;9052:6;9041:9;9037:22;8991:78;:::i;:::-;8981:88;;8777:302;8547:539;;;;:::o;9092:117::-;9201:1;9198;9191:12;9215:308;9277:4;9367:18;9359:6;9356:30;9353:56;;;9389:18;;:::i;:::-;9353:56;9427:29;9449:6;9427:29;:::i;:::-;9419:37;;9511:4;9505;9501:15;9493:23;;9215:308;;;:::o;9529:154::-;9613:6;9608:3;9603;9590:30;9675:1;9666:6;9661:3;9657:16;9650:27;9529:154;;;:::o;9689:412::-;9767:5;9792:66;9808:49;9850:6;9808:49;:::i;:::-;9792:66;:::i;:::-;9783:75;;9881:6;9874:5;9867:21;9919:4;9912:5;9908:16;9957:3;9948:6;9943:3;9939:16;9936:25;9933:112;;;9964:79;;:::i;:::-;9933:112;10054:41;10088:6;10083:3;10078;10054:41;:::i;:::-;9773:328;9689:412;;;;;:::o;10121:340::-;10177:5;10226:3;10219:4;10211:6;10207:17;10203:27;10193:122;;10234:79;;:::i;:::-;10193:122;10351:6;10338:20;10376:79;10451:3;10443:6;10436:4;10428:6;10424:17;10376:79;:::i;:::-;10367:88;;10183:278;10121:340;;;;:::o;10467:509::-;10536:6;10585:2;10573:9;10564:7;10560:23;10556:32;10553:119;;;10591:79;;:::i;:::-;10553:119;10739:1;10728:9;10724:17;10711:31;10769:18;10761:6;10758:30;10755:117;;;10791:79;;:::i;:::-;10755:117;10896:63;10951:7;10942:6;10931:9;10927:22;10896:63;:::i;:::-;10886:73;;10682:287;10467:509;;;;:::o;10982:116::-;11052:21;11067:5;11052:21;:::i;:::-;11045:5;11042:32;11032:60;;11088:1;11085;11078:12;11032:60;10982:116;:::o;11104:133::-;11147:5;11185:6;11172:20;11163:29;;11201:30;11225:5;11201:30;:::i;:::-;11104:133;;;;:::o;11243:468::-;11308:6;11316;11365:2;11353:9;11344:7;11340:23;11336:32;11333:119;;;11371:79;;:::i;:::-;11333:119;11491:1;11516:53;11561:7;11552:6;11541:9;11537:22;11516:53;:::i;:::-;11506:63;;11462:117;11618:2;11644:50;11686:7;11677:6;11666:9;11662:22;11644:50;:::i;:::-;11634:60;;11589:115;11243:468;;;;;:::o;11717:307::-;11778:4;11868:18;11860:6;11857:30;11854:56;;;11890:18;;:::i;:::-;11854:56;11928:29;11950:6;11928:29;:::i;:::-;11920:37;;12012:4;12006;12002:15;11994:23;;11717:307;;;:::o;12030:410::-;12107:5;12132:65;12148:48;12189:6;12148:48;:::i;:::-;12132:65;:::i;:::-;12123:74;;12220:6;12213:5;12206:21;12258:4;12251:5;12247:16;12296:3;12287:6;12282:3;12278:16;12275:25;12272:112;;;12303:79;;:::i;:::-;12272:112;12393:41;12427:6;12422:3;12417;12393:41;:::i;:::-;12113:327;12030:410;;;;;:::o;12459:338::-;12514:5;12563:3;12556:4;12548:6;12544:17;12540:27;12530:122;;12571:79;;:::i;:::-;12530:122;12688:6;12675:20;12713:78;12787:3;12779:6;12772:4;12764:6;12760:17;12713:78;:::i;:::-;12704:87;;12520:277;12459:338;;;;:::o;12803:943::-;12898:6;12906;12914;12922;12971:3;12959:9;12950:7;12946:23;12942:33;12939:120;;;12978:79;;:::i;:::-;12939:120;13098:1;13123:53;13168:7;13159:6;13148:9;13144:22;13123:53;:::i;:::-;13113:63;;13069:117;13225:2;13251:53;13296:7;13287:6;13276:9;13272:22;13251:53;:::i;:::-;13241:63;;13196:118;13353:2;13379:53;13424:7;13415:6;13404:9;13400:22;13379:53;:::i;:::-;13369:63;;13324:118;13509:2;13498:9;13494:18;13481:32;13540:18;13532:6;13529:30;13526:117;;;13562:79;;:::i;:::-;13526:117;13667:62;13721:7;13712:6;13701:9;13697:22;13667:62;:::i;:::-;13657:72;;13452:287;12803:943;;;;;;;:::o;13752:474::-;13820:6;13828;13877:2;13865:9;13856:7;13852:23;13848:32;13845:119;;;13883:79;;:::i;:::-;13845:119;14003:1;14028:53;14073:7;14064:6;14053:9;14049:22;14028:53;:::i;:::-;14018:63;;13974:117;14130:2;14156:53;14201:7;14192:6;14181:9;14177:22;14156:53;:::i;:::-;14146:63;;14101:118;13752:474;;;;;:::o;14232:180::-;14280:77;14277:1;14270:88;14377:4;14374:1;14367:15;14401:4;14398:1;14391:15;14418:320;14462:6;14499:1;14493:4;14489:12;14479:22;;14546:1;14540:4;14536:12;14567:18;14557:81;;14623:4;14615:6;14611:17;14601:27;;14557:81;14685:2;14677:6;14674:14;14654:18;14651:38;14648:84;;;14704:18;;:::i;:::-;14648:84;14469:269;14418:320;;;:::o;14744:182::-;14884:34;14880:1;14872:6;14868:14;14861:58;14744:182;:::o;14932:366::-;15074:3;15095:67;15159:2;15154:3;15095:67;:::i;:::-;15088:74;;15171:93;15260:3;15171:93;:::i;:::-;15289:2;15284:3;15280:12;15273:19;;14932:366;;;:::o;15304:419::-;15470:4;15508:2;15497:9;15493:18;15485:26;;15557:9;15551:4;15547:20;15543:1;15532:9;15528:17;15521:47;15585:131;15711:4;15585:131;:::i;:::-;15577:139;;15304:419;;;:::o;15729:180::-;15777:77;15774:1;15767:88;15874:4;15871:1;15864:15;15898:4;15895:1;15888:15;15915:305;15955:3;15974:20;15992:1;15974:20;:::i;:::-;15969:25;;16008:20;16026:1;16008:20;:::i;:::-;16003:25;;16162:1;16094:66;16090:74;16087:1;16084:81;16081:107;;;16168:18;;:::i;:::-;16081:107;16212:1;16209;16205:9;16198:16;;15915:305;;;;:::o;16226:169::-;16366:21;16362:1;16354:6;16350:14;16343:45;16226:169;:::o;16401:366::-;16543:3;16564:67;16628:2;16623:3;16564:67;:::i;:::-;16557:74;;16640:93;16729:3;16640:93;:::i;:::-;16758:2;16753:3;16749:12;16742:19;;16401:366;;;:::o;16773:419::-;16939:4;16977:2;16966:9;16962:18;16954:26;;17026:9;17020:4;17016:20;17012:1;17001:9;16997:17;16990:47;17054:131;17180:4;17054:131;:::i;:::-;17046:139;;16773:419;;;:::o;17198:180::-;17246:77;17243:1;17236:88;17343:4;17340:1;17333:15;17367:4;17364:1;17357:15;17384:233;17423:3;17446:24;17464:5;17446:24;:::i;:::-;17437:33;;17492:66;17485:5;17482:77;17479:103;;;17562:18;;:::i;:::-;17479:103;17609:1;17602:5;17598:13;17591:20;;17384:233;;;:::o;17623:173::-;17763:25;17759:1;17751:6;17747:14;17740:49;17623:173;:::o;17802:366::-;17944:3;17965:67;18029:2;18024:3;17965:67;:::i;:::-;17958:74;;18041:93;18130:3;18041:93;:::i;:::-;18159:2;18154:3;18150:12;18143:19;;17802:366;;;:::o;18174:419::-;18340:4;18378:2;18367:9;18363:18;18355:26;;18427:9;18421:4;18417:20;18413:1;18402:9;18398:17;18391:47;18455:131;18581:4;18455:131;:::i;:::-;18447:139;;18174:419;;;:::o;18599:148::-;18701:11;18738:3;18723:18;;18599:148;;;;:::o;18753:377::-;18859:3;18887:39;18920:5;18887:39;:::i;:::-;18942:89;19024:6;19019:3;18942:89;:::i;:::-;18935:96;;19040:52;19085:6;19080:3;19073:4;19066:5;19062:16;19040:52;:::i;:::-;19117:6;19112:3;19108:16;19101:23;;18863:267;18753:377;;;;:::o;19136:158::-;19276:10;19272:1;19264:6;19260:14;19253:34;19136:158;:::o;19300:400::-;19460:3;19481:84;19563:1;19558:3;19481:84;:::i;:::-;19474:91;;19574:93;19663:3;19574:93;:::i;:::-;19692:1;19687:3;19683:11;19676:18;;19300:400;;;:::o;19706:155::-;19846:7;19842:1;19834:6;19830:14;19823:31;19706:155;:::o;19867:400::-;20027:3;20048:84;20130:1;20125:3;20048:84;:::i;:::-;20041:91;;20141:93;20230:3;20141:93;:::i;:::-;20259:1;20254:3;20250:11;20243:18;;19867:400;;;:::o;20273:967::-;20655:3;20677:95;20768:3;20759:6;20677:95;:::i;:::-;20670:102;;20789:148;20933:3;20789:148;:::i;:::-;20782:155;;20954:95;21045:3;21036:6;20954:95;:::i;:::-;20947:102;;21066:148;21210:3;21066:148;:::i;:::-;21059:155;;21231:3;21224:10;;20273:967;;;;;:::o;21246:225::-;21386:34;21382:1;21374:6;21370:14;21363:58;21455:8;21450:2;21442:6;21438:15;21431:33;21246:225;:::o;21477:366::-;21619:3;21640:67;21704:2;21699:3;21640:67;:::i;:::-;21633:74;;21716:93;21805:3;21716:93;:::i;:::-;21834:2;21829:3;21825:12;21818:19;;21477:366;;;:::o;21849:419::-;22015:4;22053:2;22042:9;22038:18;22030:26;;22102:9;22096:4;22092:20;22088:1;22077:9;22073:17;22066:47;22130:131;22256:4;22130:131;:::i;:::-;22122:139;;21849:419;;;:::o;22274:98::-;22325:6;22359:5;22353:12;22343:22;;22274:98;;;:::o;22378:168::-;22461:11;22495:6;22490:3;22483:19;22535:4;22530:3;22526:14;22511:29;;22378:168;;;;:::o;22552:360::-;22638:3;22666:38;22698:5;22666:38;:::i;:::-;22720:70;22783:6;22778:3;22720:70;:::i;:::-;22713:77;;22799:52;22844:6;22839:3;22832:4;22825:5;22821:16;22799:52;:::i;:::-;22876:29;22898:6;22876:29;:::i;:::-;22871:3;22867:39;22860:46;;22642:270;22552:360;;;;:::o;22918:640::-;23113:4;23151:3;23140:9;23136:19;23128:27;;23165:71;23233:1;23222:9;23218:17;23209:6;23165:71;:::i;:::-;23246:72;23314:2;23303:9;23299:18;23290:6;23246:72;:::i;:::-;23328;23396:2;23385:9;23381:18;23372:6;23328:72;:::i;:::-;23447:9;23441:4;23437:20;23432:2;23421:9;23417:18;23410:48;23475:76;23546:4;23537:6;23475:76;:::i;:::-;23467:84;;22918:640;;;;;;;:::o;23564:141::-;23620:5;23651:6;23645:13;23636:22;;23667:32;23693:5;23667:32;:::i;:::-;23564:141;;;;:::o;23711:349::-;23780:6;23829:2;23817:9;23808:7;23804:23;23800:32;23797:119;;;23835:79;;:::i;:::-;23797:119;23955:1;23980:63;24035:7;24026:6;24015:9;24011:22;23980:63;:::i;:::-;23970:73;;23926:127;23711:349;;;;:::o;24066:180::-;24114:77;24111:1;24104:88;24211:4;24208:1;24201:15;24235:4;24232:1;24225:15;24252:185;24292:1;24309:20;24327:1;24309:20;:::i;:::-;24304:25;;24343:20;24361:1;24343:20;:::i;:::-;24338:25;;24382:1;24372:35;;24387:18;;:::i;:::-;24372:35;24429:1;24426;24422:9;24417:14;;24252:185;;;;:::o;24443:191::-;24483:4;24503:20;24521:1;24503:20;:::i;:::-;24498:25;;24537:20;24555:1;24537:20;:::i;:::-;24532:25;;24576:1;24573;24570:8;24567:34;;;24581:18;;:::i;:::-;24567:34;24626:1;24623;24619:9;24611:17;;24443:191;;;;:::o;24640:176::-;24672:1;24689:20;24707:1;24689:20;:::i;:::-;24684:25;;24723:20;24741:1;24723:20;:::i;:::-;24718:25;;24762:1;24752:35;;24767:18;;:::i;:::-;24752:35;24808:1;24805;24801:9;24796:14;;24640:176;;;;:::o
Swarm Source
ipfs://167463224de7419179b5414f080beedc4566569380c4099d21b4cd5a475aa647
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.