ERC-721
Overview
Max Total Supply
4 larvafrens
Holders
2
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 larvafrensLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LFRENS
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-15 */ // IERC165.sol // SPDX-License-Identifier: MIT 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); } // ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @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); } // Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // ERC721S.sol pragma solidity ^0.8.0; abstract contract ERC721S is Context, ERC165, IERC721, IERC721Metadata { using Address for address; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count = 0; uint length = _owners.length; for( uint i = 0; i < length; ++i ){ if( owner == _owners[i] ){ ++count; } } delete length; return count; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721S.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721S.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _owners.push(to); emit Transfer(address(0), to, tokenId); } function _burn(uint256 tokenId) internal virtual { address owner = ERC721S.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721S.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721S.ownerOf(tokenId), to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // SafeMath.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // ERC721Enum.sol pragma solidity ^0.8.0; abstract contract ERC721Enum is ERC721S, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721S) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) { require(index < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ){ if( count == index ) return i; else ++count; } } require(false, "ERC721Enum: owner ioob"); } function tokensOfOwner(address owner) public view returns (uint256[] memory) { require(0 < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob"); uint256 tokenCount = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(owner, i); } return tokenIds; } function totalSupply() public view virtual override returns (uint256) { return _owners.length; } function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob"); return index; } } // ReentrancyGuard.sol pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // PaymentSplitter.sol pragma solidity ^0.8.0; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + _totalReleased; uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account]; require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] = _released[account] + payment; _totalReleased = _totalReleased + payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } // Pausable.sol pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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; contract LFRENS is ERC721Enum, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public baseURI; uint256 public cost = 0.02 ether; uint256 public maxSupply = 8888; uint256 public maxFree = 4000; uint256 public nftPerAddressLimit = 10; bool public status = false; mapping(address => uint256) public addressMintedBalance; constructor() ERC721S("Larva Frens", "larvafrens"){ setBaseURI("ipfs://QmYQspz2YYdstNSkXV2HP49WHLspeT7767y6qgZbHFU7ex/"); } function _baseURI() internal view virtual returns (string memory) { return baseURI; } function mint(address _to, uint256 _mintAmount) public payable nonReentrant{ uint256 s = totalSupply(); require(status, "sale is not active yet"); require(_mintAmount > 0, "Cant mint 0" ); require(_mintAmount <= 10, "Cant mint more then max mint per transaction" ); require(s + _mintAmount <= maxSupply, "Cant go over supply" ); require(msg.value >= cost * _mintAmount); for (uint256 i = 0; i < _mintAmount; ++i) { _safeMint(_to, s + i, ""); } delete s; } function mintfree(address _to, uint256 _mintAmount) public payable nonReentrant{ uint256 s = totalSupply(); uint256 ownerMintedCount = addressMintedBalance[_to]; require(status, "sale is not active yet"); require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); require(_mintAmount > 0, "Cant mint 0" ); require(_mintAmount <= 3, "Cant mint more then maxmint" ); require(s + _mintAmount <= maxFree, "Cant go over supply" ); for (uint256 i = 0; i < _mintAmount; ++i) { addressMintedBalance[_to]++; _safeMint(_to, s + i, ""); } delete s; } function mintOwner(address _to, uint256 _mintAmount) public onlyOwner{ uint256 s = totalSupply(); require(s + _mintAmount <= maxSupply, "Cant go over supply" ); for (uint256 i = 0; i < _mintAmount; ++i) { _safeMint(_to, s + i, ""); } delete s; } function gift(uint[] calldata quantity, address[] calldata recipient) external onlyOwner{ require(quantity.length == recipient.length, "Provide quantities and recipients" ); uint totalQuantity = 0; uint256 s = totalSupply(); for(uint i = 0; i < quantity.length; ++i){ totalQuantity += quantity[i]; } require( s + totalQuantity <= maxSupply, "Too many" ); delete totalQuantity; for(uint i = 0; i < recipient.length; ++i){ for(uint j = 0; j < quantity[i]; ++j){ _safeMint( recipient[i], s++, "" ); } } delete s; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : ""; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxFree(uint256 _newMaxFree) public onlyOwner { maxFree = _newMaxFree; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setSaleStatus(bool _status) public onlyOwner { status = _status; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintfree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFree","type":"uint256"}],"name":"setmaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405266470de4df8200006008556122b8600955610fa0600a908155600b55600c805460ff191690553480156200003757600080fd5b50604080518082018252600b81526a4c61727661204672656e7360a81b60208083019182528351808501909452600a8452696c617276616672656e7360b01b9084015281519192916200008d91600091620001cb565b508051620000a3906001906020840190620001cb565b505050620000c0620000ba620000fd60201b60201c565b62000101565b6005805460ff60a01b19169055600160065560408051606081019091526036808252620000f7919062002998602083013962000153565b620002ae565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c7906007906020840190620001cb565b5050565b828054620001d99062000271565b90600052602060002090601f016020900481019282620001fd576000855562000248565b82601f106200021857805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002485782518255916020019190600101906200022b565b50620002569291506200025a565b5090565b5b808211156200025657600081556001016200025b565b600181811c908216806200028657607f821691505b60208210811415620002a857634e487b7160e01b600052602260045260246000fd5b50919050565b6126da80620002be6000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063d5034b741161006f578063d5034b741461061e578063d5abeb011461063e578063d897833e14610654578063e985e9c514610674578063f2fde38b146106bd57600080fd5b8063a22cb46514610588578063b88d4fde146105a8578063ba7d2c76146105c8578063c87b56dd146105de578063d0eb26b0146105fe57600080fd5b80638462151c116100f25780638462151c146104f55780638d2bcad9146105225780638da5cb5b1461053557806395d89b411461055357806396ea3a471461056857600080fd5b80636352211e1461048b5780636c0360eb146104ab57806370a08231146104c0578063715018a6146104e057600080fd5b80632f745c59116101b157806344a0d68a1161017557806344a0d68a146103f6578063485a68a3146104165780634f6ccce71461042c57806355f804b31461044c5780635c975abb1461046c57600080fd5b80632f745c591461037b5780633ccfd60b1461039b578063408cbf94146103a357806340c10f19146103c357806342842e0e146103d657600080fd5b806313faede6116101f857806313faede6146102db57806318160ddd146102ff57806318cae26914610314578063200d2ed21461034157806323b872dd1461035b57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a61024536600461227e565b6106dd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610708565b60405161025691906123f6565b34801561028d57600080fd5b506102a161029c366004612301565b61079a565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046121cd565b610827565b005b3480156102e757600080fd5b506102f160085481565b604051908152602001610256565b34801561030b57600080fd5b506002546102f1565b34801561032057600080fd5b506102f161032f36600461209d565b600d6020526000908152604090205481565b34801561034d57600080fd5b50600c5461024a9060ff1681565b34801561036757600080fd5b506102d96103763660046120eb565b61093d565b34801561038757600080fd5b506102f16103963660046121cd565b61096e565b6102d9610a1d565b3480156103af57600080fd5b506102d96103be3660046121cd565b610a9f565b6102d96103d13660046121cd565b610b46565b3480156103e257600080fd5b506102d96103f13660046120eb565b610d14565b34801561040257600080fd5b506102d9610411366004612301565b610d2f565b34801561042257600080fd5b506102f1600a5481565b34801561043857600080fd5b506102f1610447366004612301565b610d5e565b34801561045857600080fd5b506102d96104673660046122b8565b610dbb565b34801561047857600080fd5b50600554600160a01b900460ff1661024a565b34801561049757600080fd5b506102a16104a6366004612301565b610dfc565b3480156104b757600080fd5b50610274610e88565b3480156104cc57600080fd5b506102f16104db36600461209d565b610f16565b3480156104ec57600080fd5b506102d9610fe8565b34801561050157600080fd5b5061051561051036600461209d565b61101e565b60405161025691906123b2565b6102d96105303660046121cd565b6110e8565b34801561054157600080fd5b506005546001600160a01b03166102a1565b34801561055f57600080fd5b50610274611327565b34801561057457600080fd5b506102d96105833660046121f7565b611336565b34801561059457600080fd5b506102d96105a33660046121a3565b6114f6565b3480156105b457600080fd5b506102d96105c3366004612127565b6115bb565b3480156105d457600080fd5b506102f1600b5481565b3480156105ea57600080fd5b506102746105f9366004612301565b6115ed565b34801561060a57600080fd5b506102d9610619366004612301565b6116aa565b34801561062a57600080fd5b506102d9610639366004612301565b6116d9565b34801561064a57600080fd5b506102f160095481565b34801561066057600080fd5b506102d961066f366004612263565b611708565b34801561068057600080fd5b5061024a61068f3660046120b8565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156106c957600080fd5b506102d96106d836600461209d565b611745565b60006001600160e01b0319821663780e9d6360e01b14806107025750610702826117dd565b92915050565b606060008054610717906125cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610743906125cc565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b60006107a58261182d565b61080b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061083282610dfc565b9050806001600160a01b0316836001600160a01b031614156108a05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610802565b336001600160a01b03821614806108bc57506108bc813361068f565b61092e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610802565b6109388383611877565b505050565b61094733826118e5565b6109635760405162461bcd60e51b8152600401610802906124ed565b6109388383836119cf565b600061097983610f16565b82106109975760405162461bcd60e51b8152600401610802906124bd565b6000805b600254811015610a0457600281815481106109b8576109b8612662565b6000918252602090912001546001600160a01b03868116911614156109f457838214156109e85791506107029050565b6109f182612607565b91505b6109fd81612607565b905061099b565b5060405162461bcd60e51b8152600401610802906124bd565b6005546001600160a01b03163314610a475760405162461bcd60e51b815260040161080290612488565b604051600090339047908381818185875af1925050503d8060008114610a89576040519150601f19603f3d011682016040523d82523d6000602084013e610a8e565b606091505b5050905080610a9c57600080fd5b50565b6005546001600160a01b03163314610ac95760405162461bcd60e51b815260040161080290612488565b6000610ad460025490565b600954909150610ae4838361253e565b1115610b025760405162461bcd60e51b81526004016108029061245b565b60005b82811015610b4057610b3084610b1b838561253e565b60405180602001604052806000815250611b25565b610b3981612607565b9050610b05565b50505050565b60026006541415610b995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b60026006556000610ba960025490565b600c5490915060ff16610bf75760405162461bcd60e51b81526020600482015260166024820152751cd85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b6044820152606401610802565b60008211610c355760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610802565b600a821115610c9b5760405162461bcd60e51b815260206004820152602c60248201527f43616e74206d696e74206d6f7265207468656e206d6178206d696e742070657260448201526b103a3930b739b0b1ba34b7b760a11b6064820152608401610802565b600954610ca8838361253e565b1115610cc65760405162461bcd60e51b81526004016108029061245b565b81600854610cd4919061256a565b341015610ce057600080fd5b60005b82811015610d0957610cf984610b1b838561253e565b610d0281612607565b9050610ce3565b505060016006555050565b610938838383604051806020016040528060008152506115bb565b6005546001600160a01b03163314610d595760405162461bcd60e51b815260040161080290612488565b600855565b6000610d6960025490565b8210610db75760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610802565b5090565b6005546001600160a01b03163314610de55760405162461bcd60e51b815260040161080290612488565b8051610df8906007906020840190611f1f565b5050565b60008060028381548110610e1257610e12612662565b6000918252602090912001546001600160a01b03169050806107025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610802565b60078054610e95906125cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec1906125cc565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b505050505081565b60006001600160a01b038216610f815760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610802565b600254600090815b81811015610fdf5760028181548110610fa457610fa4612662565b6000918252602090912001546001600160a01b0386811691161415610fcf57610fcc83612607565b92505b610fd881612607565b9050610f89565b50909392505050565b6005546001600160a01b031633146110125760405162461bcd60e51b815260040161080290612488565b61101c6000611b58565b565b606061102982610f16565b6000106110485760405162461bcd60e51b8152600401610802906124bd565b600061105383610f16565b905060008167ffffffffffffffff81111561107057611070612678565b604051908082528060200260200182016040528015611099578160200160208202803683370190505b50905060005b828110156110e0576110b1858261096e565b8282815181106110c3576110c3612662565b6020908102919091010152806110d881612607565b91505061109f565b509392505050565b6002600654141561113b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b6002600655600061114b60025490565b6001600160a01b0384166000908152600d6020526040902054600c549192509060ff166111b35760405162461bcd60e51b81526020600482015260166024820152751cd85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b6044820152606401610802565b600b546111c0848361253e565b111561120e5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610802565b6000831161124c5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610802565b600383111561129d5760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610802565b600a546112aa848461253e565b11156112c85760405162461bcd60e51b81526004016108029061245b565b60005b8381101561131b576001600160a01b0385166000908152600d602052604081208054916112f783612607565b9091555061130b905085610b1b838661253e565b61131481612607565b90506112cb565b50506001600655505050565b606060018054610717906125cc565b6005546001600160a01b031633146113605760405162461bcd60e51b815260040161080290612488565b8281146113b95760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610802565b6000806113c560025490565b905060005b85811015611408578686828181106113e4576113e4612662565b90506020020135836113f6919061253e565b925061140181612607565b90506113ca565b50600954611416838361253e565b111561144f5760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b6044820152606401610802565b6000915060005b838110156114ed5760005b87878381811061147357611473612662565b905060200201358110156114dc576114cc86868481811061149657611496612662565b90506020020160208101906114ab919061209d565b846114b581612607565b955060405180602001604052806000815250611b25565b6114d581612607565b9050611461565b506114e681612607565b9050611456565b50505050505050565b6001600160a01b03821633141561154f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610802565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115c533836118e5565b6115e15760405162461bcd60e51b8152600401610802906124ed565b610b4084848484611baa565b60606115f88261182d565b61164e5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610802565b6000611658611bdd565b9050600081511161167857604051806020016040528060008152506116a3565b8061168284611bec565b604051602001611693929190612346565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146116d45760405162461bcd60e51b815260040161080290612488565b600b55565b6005546001600160a01b031633146117035760405162461bcd60e51b815260040161080290612488565b600a55565b6005546001600160a01b031633146117325760405162461bcd60e51b815260040161080290612488565b600c805460ff1916911515919091179055565b6005546001600160a01b0316331461176f5760405162461bcd60e51b815260040161080290612488565b6001600160a01b0381166117d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610802565b610a9c81611b58565b60006001600160e01b031982166380ac58cd60e01b148061180e57506001600160e01b03198216635b5e139f60e01b145b8061070257506301ffc9a760e01b6001600160e01b0319831614610702565b60025460009082108015610702575060006001600160a01b03166002838154811061185a5761185a612662565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ac82610dfc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118f08261182d565b6119515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610802565b600061195c83610dfc565b9050806001600160a01b0316846001600160a01b031614806119975750836001600160a01b031661198c8461079a565b6001600160a01b0316145b806119c757506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119e282610dfc565b6001600160a01b031614611a4a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610802565b6001600160a01b038216611aac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610802565b611ab7600082611877565b8160028281548110611acb57611acb612662565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611b2f8383611cea565b611b3c6000848484611e12565b6109385760405162461bcd60e51b815260040161080290612409565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611bb58484846119cf565b611bc184848484611e12565b610b405760405162461bcd60e51b815260040161080290612409565b606060078054610717906125cc565b606081611c105750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c3a5780611c2481612607565b9150611c339050600a83612556565b9150611c14565b60008167ffffffffffffffff811115611c5557611c55612678565b6040519080825280601f01601f191660200182016040528015611c7f576020820181803683370190505b5090505b84156119c757611c94600183612589565b9150611ca1600a86612622565b611cac90603061253e565b60f81b818381518110611cc157611cc1612662565b60200101906001600160f81b031916908160001a905350611ce3600a86612556565b9450611c83565b6001600160a01b038216611d405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610802565b611d498161182d565b15611d965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610802565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f1457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e56903390899088908890600401612375565b602060405180830381600087803b158015611e7057600080fd5b505af1925050508015611ea0575060408051601f3d908101601f19168201909252611e9d9181019061229b565b60015b611efa573d808015611ece576040519150601f19603f3d011682016040523d82523d6000602084013e611ed3565b606091505b508051611ef25760405162461bcd60e51b815260040161080290612409565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119c7565b506001949350505050565b828054611f2b906125cc565b90600052602060002090601f016020900481019282611f4d5760008555611f93565b82601f10611f6657805160ff1916838001178555611f93565b82800160010185558215611f93579182015b82811115611f93578251825591602001919060010190611f78565b50610db79291505b80821115610db75760008155600101611f9b565b600067ffffffffffffffff80841115611fca57611fca612678565b604051601f8501601f19908116603f01168101908282118183101715611ff257611ff2612678565b8160405280935085815286868601111561200b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461203c57600080fd5b919050565b60008083601f84011261205357600080fd5b50813567ffffffffffffffff81111561206b57600080fd5b6020830191508360208260051b850101111561208657600080fd5b9250929050565b8035801515811461203c57600080fd5b6000602082840312156120af57600080fd5b6116a382612025565b600080604083850312156120cb57600080fd5b6120d483612025565b91506120e260208401612025565b90509250929050565b60008060006060848603121561210057600080fd5b61210984612025565b925061211760208501612025565b9150604084013590509250925092565b6000806000806080858703121561213d57600080fd5b61214685612025565b935061215460208601612025565b925060408501359150606085013567ffffffffffffffff81111561217757600080fd5b8501601f8101871361218857600080fd5b61219787823560208401611faf565b91505092959194509250565b600080604083850312156121b657600080fd5b6121bf83612025565b91506120e26020840161208d565b600080604083850312156121e057600080fd5b6121e983612025565b946020939093013593505050565b6000806000806040858703121561220d57600080fd5b843567ffffffffffffffff8082111561222557600080fd5b61223188838901612041565b9096509450602087013591508082111561224a57600080fd5b5061225787828801612041565b95989497509550505050565b60006020828403121561227557600080fd5b6116a38261208d565b60006020828403121561229057600080fd5b81356116a38161268e565b6000602082840312156122ad57600080fd5b81516116a38161268e565b6000602082840312156122ca57600080fd5b813567ffffffffffffffff8111156122e157600080fd5b8201601f810184136122f257600080fd5b6119c784823560208401611faf565b60006020828403121561231357600080fd5b5035919050565b600081518084526123328160208601602086016125a0565b601f01601f19169290920160200192915050565b600083516123588184602088016125a0565b83519083019061236c8183602088016125a0565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123a89083018461231a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123ea578351835292840192918401916001016123ce565b50909695505050505050565b6020815260006116a3602083018461231a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526013908201527243616e7420676f206f76657220737570706c7960681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561255157612551612636565b500190565b6000826125655761256561264c565b500490565b600081600019048311821515161561258457612584612636565b500290565b60008282101561259b5761259b612636565b500390565b60005b838110156125bb5781810151838201526020016125a3565b83811115610b405750506000910152565b600181811c908216806125e057607f821691505b6020821081141561260157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561261b5761261b612636565b5060010190565b6000826126315761263161264c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a9c57600080fdfea26469706673582212203e6a5de8df68a19d2ff0815033326679bb6874c42935f6c2a84df12bf631c53864736f6c63430008070033697066733a2f2f516d595173707a3259596473744e536b5856324850343957484c7370655437373637793671675a624846553765782f
Deployed Bytecode
0x6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063d5034b741161006f578063d5034b741461061e578063d5abeb011461063e578063d897833e14610654578063e985e9c514610674578063f2fde38b146106bd57600080fd5b8063a22cb46514610588578063b88d4fde146105a8578063ba7d2c76146105c8578063c87b56dd146105de578063d0eb26b0146105fe57600080fd5b80638462151c116100f25780638462151c146104f55780638d2bcad9146105225780638da5cb5b1461053557806395d89b411461055357806396ea3a471461056857600080fd5b80636352211e1461048b5780636c0360eb146104ab57806370a08231146104c0578063715018a6146104e057600080fd5b80632f745c59116101b157806344a0d68a1161017557806344a0d68a146103f6578063485a68a3146104165780634f6ccce71461042c57806355f804b31461044c5780635c975abb1461046c57600080fd5b80632f745c591461037b5780633ccfd60b1461039b578063408cbf94146103a357806340c10f19146103c357806342842e0e146103d657600080fd5b806313faede6116101f857806313faede6146102db57806318160ddd146102ff57806318cae26914610314578063200d2ed21461034157806323b872dd1461035b57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a61024536600461227e565b6106dd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610708565b60405161025691906123f6565b34801561028d57600080fd5b506102a161029c366004612301565b61079a565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046121cd565b610827565b005b3480156102e757600080fd5b506102f160085481565b604051908152602001610256565b34801561030b57600080fd5b506002546102f1565b34801561032057600080fd5b506102f161032f36600461209d565b600d6020526000908152604090205481565b34801561034d57600080fd5b50600c5461024a9060ff1681565b34801561036757600080fd5b506102d96103763660046120eb565b61093d565b34801561038757600080fd5b506102f16103963660046121cd565b61096e565b6102d9610a1d565b3480156103af57600080fd5b506102d96103be3660046121cd565b610a9f565b6102d96103d13660046121cd565b610b46565b3480156103e257600080fd5b506102d96103f13660046120eb565b610d14565b34801561040257600080fd5b506102d9610411366004612301565b610d2f565b34801561042257600080fd5b506102f1600a5481565b34801561043857600080fd5b506102f1610447366004612301565b610d5e565b34801561045857600080fd5b506102d96104673660046122b8565b610dbb565b34801561047857600080fd5b50600554600160a01b900460ff1661024a565b34801561049757600080fd5b506102a16104a6366004612301565b610dfc565b3480156104b757600080fd5b50610274610e88565b3480156104cc57600080fd5b506102f16104db36600461209d565b610f16565b3480156104ec57600080fd5b506102d9610fe8565b34801561050157600080fd5b5061051561051036600461209d565b61101e565b60405161025691906123b2565b6102d96105303660046121cd565b6110e8565b34801561054157600080fd5b506005546001600160a01b03166102a1565b34801561055f57600080fd5b50610274611327565b34801561057457600080fd5b506102d96105833660046121f7565b611336565b34801561059457600080fd5b506102d96105a33660046121a3565b6114f6565b3480156105b457600080fd5b506102d96105c3366004612127565b6115bb565b3480156105d457600080fd5b506102f1600b5481565b3480156105ea57600080fd5b506102746105f9366004612301565b6115ed565b34801561060a57600080fd5b506102d9610619366004612301565b6116aa565b34801561062a57600080fd5b506102d9610639366004612301565b6116d9565b34801561064a57600080fd5b506102f160095481565b34801561066057600080fd5b506102d961066f366004612263565b611708565b34801561068057600080fd5b5061024a61068f3660046120b8565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156106c957600080fd5b506102d96106d836600461209d565b611745565b60006001600160e01b0319821663780e9d6360e01b14806107025750610702826117dd565b92915050565b606060008054610717906125cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610743906125cc565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b60006107a58261182d565b61080b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061083282610dfc565b9050806001600160a01b0316836001600160a01b031614156108a05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610802565b336001600160a01b03821614806108bc57506108bc813361068f565b61092e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610802565b6109388383611877565b505050565b61094733826118e5565b6109635760405162461bcd60e51b8152600401610802906124ed565b6109388383836119cf565b600061097983610f16565b82106109975760405162461bcd60e51b8152600401610802906124bd565b6000805b600254811015610a0457600281815481106109b8576109b8612662565b6000918252602090912001546001600160a01b03868116911614156109f457838214156109e85791506107029050565b6109f182612607565b91505b6109fd81612607565b905061099b565b5060405162461bcd60e51b8152600401610802906124bd565b6005546001600160a01b03163314610a475760405162461bcd60e51b815260040161080290612488565b604051600090339047908381818185875af1925050503d8060008114610a89576040519150601f19603f3d011682016040523d82523d6000602084013e610a8e565b606091505b5050905080610a9c57600080fd5b50565b6005546001600160a01b03163314610ac95760405162461bcd60e51b815260040161080290612488565b6000610ad460025490565b600954909150610ae4838361253e565b1115610b025760405162461bcd60e51b81526004016108029061245b565b60005b82811015610b4057610b3084610b1b838561253e565b60405180602001604052806000815250611b25565b610b3981612607565b9050610b05565b50505050565b60026006541415610b995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b60026006556000610ba960025490565b600c5490915060ff16610bf75760405162461bcd60e51b81526020600482015260166024820152751cd85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b6044820152606401610802565b60008211610c355760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610802565b600a821115610c9b5760405162461bcd60e51b815260206004820152602c60248201527f43616e74206d696e74206d6f7265207468656e206d6178206d696e742070657260448201526b103a3930b739b0b1ba34b7b760a11b6064820152608401610802565b600954610ca8838361253e565b1115610cc65760405162461bcd60e51b81526004016108029061245b565b81600854610cd4919061256a565b341015610ce057600080fd5b60005b82811015610d0957610cf984610b1b838561253e565b610d0281612607565b9050610ce3565b505060016006555050565b610938838383604051806020016040528060008152506115bb565b6005546001600160a01b03163314610d595760405162461bcd60e51b815260040161080290612488565b600855565b6000610d6960025490565b8210610db75760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610802565b5090565b6005546001600160a01b03163314610de55760405162461bcd60e51b815260040161080290612488565b8051610df8906007906020840190611f1f565b5050565b60008060028381548110610e1257610e12612662565b6000918252602090912001546001600160a01b03169050806107025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610802565b60078054610e95906125cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec1906125cc565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b505050505081565b60006001600160a01b038216610f815760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610802565b600254600090815b81811015610fdf5760028181548110610fa457610fa4612662565b6000918252602090912001546001600160a01b0386811691161415610fcf57610fcc83612607565b92505b610fd881612607565b9050610f89565b50909392505050565b6005546001600160a01b031633146110125760405162461bcd60e51b815260040161080290612488565b61101c6000611b58565b565b606061102982610f16565b6000106110485760405162461bcd60e51b8152600401610802906124bd565b600061105383610f16565b905060008167ffffffffffffffff81111561107057611070612678565b604051908082528060200260200182016040528015611099578160200160208202803683370190505b50905060005b828110156110e0576110b1858261096e565b8282815181106110c3576110c3612662565b6020908102919091010152806110d881612607565b91505061109f565b509392505050565b6002600654141561113b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b6002600655600061114b60025490565b6001600160a01b0384166000908152600d6020526040902054600c549192509060ff166111b35760405162461bcd60e51b81526020600482015260166024820152751cd85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b6044820152606401610802565b600b546111c0848361253e565b111561120e5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610802565b6000831161124c5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610802565b600383111561129d5760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610802565b600a546112aa848461253e565b11156112c85760405162461bcd60e51b81526004016108029061245b565b60005b8381101561131b576001600160a01b0385166000908152600d602052604081208054916112f783612607565b9091555061130b905085610b1b838661253e565b61131481612607565b90506112cb565b50506001600655505050565b606060018054610717906125cc565b6005546001600160a01b031633146113605760405162461bcd60e51b815260040161080290612488565b8281146113b95760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610802565b6000806113c560025490565b905060005b85811015611408578686828181106113e4576113e4612662565b90506020020135836113f6919061253e565b925061140181612607565b90506113ca565b50600954611416838361253e565b111561144f5760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b6044820152606401610802565b6000915060005b838110156114ed5760005b87878381811061147357611473612662565b905060200201358110156114dc576114cc86868481811061149657611496612662565b90506020020160208101906114ab919061209d565b846114b581612607565b955060405180602001604052806000815250611b25565b6114d581612607565b9050611461565b506114e681612607565b9050611456565b50505050505050565b6001600160a01b03821633141561154f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610802565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115c533836118e5565b6115e15760405162461bcd60e51b8152600401610802906124ed565b610b4084848484611baa565b60606115f88261182d565b61164e5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610802565b6000611658611bdd565b9050600081511161167857604051806020016040528060008152506116a3565b8061168284611bec565b604051602001611693929190612346565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146116d45760405162461bcd60e51b815260040161080290612488565b600b55565b6005546001600160a01b031633146117035760405162461bcd60e51b815260040161080290612488565b600a55565b6005546001600160a01b031633146117325760405162461bcd60e51b815260040161080290612488565b600c805460ff1916911515919091179055565b6005546001600160a01b0316331461176f5760405162461bcd60e51b815260040161080290612488565b6001600160a01b0381166117d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610802565b610a9c81611b58565b60006001600160e01b031982166380ac58cd60e01b148061180e57506001600160e01b03198216635b5e139f60e01b145b8061070257506301ffc9a760e01b6001600160e01b0319831614610702565b60025460009082108015610702575060006001600160a01b03166002838154811061185a5761185a612662565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ac82610dfc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118f08261182d565b6119515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610802565b600061195c83610dfc565b9050806001600160a01b0316846001600160a01b031614806119975750836001600160a01b031661198c8461079a565b6001600160a01b0316145b806119c757506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119e282610dfc565b6001600160a01b031614611a4a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610802565b6001600160a01b038216611aac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610802565b611ab7600082611877565b8160028281548110611acb57611acb612662565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611b2f8383611cea565b611b3c6000848484611e12565b6109385760405162461bcd60e51b815260040161080290612409565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611bb58484846119cf565b611bc184848484611e12565b610b405760405162461bcd60e51b815260040161080290612409565b606060078054610717906125cc565b606081611c105750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c3a5780611c2481612607565b9150611c339050600a83612556565b9150611c14565b60008167ffffffffffffffff811115611c5557611c55612678565b6040519080825280601f01601f191660200182016040528015611c7f576020820181803683370190505b5090505b84156119c757611c94600183612589565b9150611ca1600a86612622565b611cac90603061253e565b60f81b818381518110611cc157611cc1612662565b60200101906001600160f81b031916908160001a905350611ce3600a86612556565b9450611c83565b6001600160a01b038216611d405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610802565b611d498161182d565b15611d965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610802565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f1457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e56903390899088908890600401612375565b602060405180830381600087803b158015611e7057600080fd5b505af1925050508015611ea0575060408051601f3d908101601f19168201909252611e9d9181019061229b565b60015b611efa573d808015611ece576040519150601f19603f3d011682016040523d82523d6000602084013e611ed3565b606091505b508051611ef25760405162461bcd60e51b815260040161080290612409565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119c7565b506001949350505050565b828054611f2b906125cc565b90600052602060002090601f016020900481019282611f4d5760008555611f93565b82601f10611f6657805160ff1916838001178555611f93565b82800160010185558215611f93579182015b82811115611f93578251825591602001919060010190611f78565b50610db79291505b80821115610db75760008155600101611f9b565b600067ffffffffffffffff80841115611fca57611fca612678565b604051601f8501601f19908116603f01168101908282118183101715611ff257611ff2612678565b8160405280935085815286868601111561200b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461203c57600080fd5b919050565b60008083601f84011261205357600080fd5b50813567ffffffffffffffff81111561206b57600080fd5b6020830191508360208260051b850101111561208657600080fd5b9250929050565b8035801515811461203c57600080fd5b6000602082840312156120af57600080fd5b6116a382612025565b600080604083850312156120cb57600080fd5b6120d483612025565b91506120e260208401612025565b90509250929050565b60008060006060848603121561210057600080fd5b61210984612025565b925061211760208501612025565b9150604084013590509250925092565b6000806000806080858703121561213d57600080fd5b61214685612025565b935061215460208601612025565b925060408501359150606085013567ffffffffffffffff81111561217757600080fd5b8501601f8101871361218857600080fd5b61219787823560208401611faf565b91505092959194509250565b600080604083850312156121b657600080fd5b6121bf83612025565b91506120e26020840161208d565b600080604083850312156121e057600080fd5b6121e983612025565b946020939093013593505050565b6000806000806040858703121561220d57600080fd5b843567ffffffffffffffff8082111561222557600080fd5b61223188838901612041565b9096509450602087013591508082111561224a57600080fd5b5061225787828801612041565b95989497509550505050565b60006020828403121561227557600080fd5b6116a38261208d565b60006020828403121561229057600080fd5b81356116a38161268e565b6000602082840312156122ad57600080fd5b81516116a38161268e565b6000602082840312156122ca57600080fd5b813567ffffffffffffffff8111156122e157600080fd5b8201601f810184136122f257600080fd5b6119c784823560208401611faf565b60006020828403121561231357600080fd5b5035919050565b600081518084526123328160208601602086016125a0565b601f01601f19169290920160200192915050565b600083516123588184602088016125a0565b83519083019061236c8183602088016125a0565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123a89083018461231a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123ea578351835292840192918401916001016123ce565b50909695505050505050565b6020815260006116a3602083018461231a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526013908201527243616e7420676f206f76657220737570706c7960681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561255157612551612636565b500190565b6000826125655761256561264c565b500490565b600081600019048311821515161561258457612584612636565b500290565b60008282101561259b5761259b612636565b500390565b60005b838110156125bb5781810151838201526020016125a3565b83811115610b405750506000910152565b600181811c908216806125e057607f821691505b6020821081141561260157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561261b5761261b612636565b5060010190565b6000826126315761263161264c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a9c57600080fdfea26469706673582212203e6a5de8df68a19d2ff0815033326679bb6874c42935f6c2a84df12bf631c53864736f6c63430008070033
Deployed Bytecode Sourcemap
47952:3612:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32201:225;;;;;;;;;;-1:-1:-1;32201:225:0;;;;;:::i;:::-;;:::i;:::-;;;7900:14:1;;7893:22;7875:41;;7863:2;7848:18;32201:225:0;;;;;;;;11320:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11954:221::-;;;;;;;;;;-1:-1:-1;11954:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6561:32:1;;;6543:51;;6531:2;6516:18;11954:221:0;6397:203:1;11536:412:0;;;;;;;;;;-1:-1:-1;11536:412:0;;;;;:::i;:::-;;:::i;:::-;;48079:32;;;;;;;;;;;;;;;;;;;18631:25:1;;;18619:2;18604:18;48079:32:0;18485:177:1;33362:110:0;;;;;;;;;;-1:-1:-1;33450:7:0;:14;33362:110;;48264:55;;;;;;;;;;-1:-1:-1;48264:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;48231:26;;;;;;;;;;-1:-1:-1;48231:26:0;;;;;;;;12652:339;;;;;;;;;;-1:-1:-1;12652:339:0;;;;;:::i;:::-;;:::i;32432:500::-;;;;;;;;;;-1:-1:-1;32432:500:0;;;;;:::i;:::-;;:::i;51390:165::-;;;:::i;49715:281::-;;;;;;;;;;-1:-1:-1;49715:281:0;;;;;:::i;:::-;;:::i;48563:494::-;;;;;;:::i;:::-;;:::i;12997:185::-;;;;;;;;;;-1:-1:-1;12997:185:0;;;;;:::i;:::-;;:::i;51017:80::-;;;;;;;;;;-1:-1:-1;51017:80:0;;;;;:::i;:::-;;:::i;48153:29::-;;;;;;;;;;;;;;;;33478:194;;;;;;;;;;-1:-1:-1;33478:194:0;;;;;:::i;:::-;;:::i;51199:98::-;;;;;;;;;;-1:-1:-1;51199:98:0;;;;;:::i;:::-;;:::i;42466:86::-;;;;;;;;;;-1:-1:-1;42537:7:0;;-1:-1:-1;;;42537:7:0;;;;42466:86;;11075:239;;;;;;;;;;-1:-1:-1;11075:239:0;;;;;:::i;:::-;;:::i;48054:21::-;;;;;;;;;;;;;:::i;10655:414::-;;;;;;;;;;-1:-1:-1;10655:414:0;;;;;:::i;:::-;;:::i;47294:94::-;;;;;;;;;;;;;:::i;32938:418::-;;;;;;;;;;-1:-1:-1;32938:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49065:642::-;;;;;;:::i;:::-;;:::i;46643:87::-;;;;;;;;;;-1:-1:-1;46716:6:0;;-1:-1:-1;;;;;46716:6:0;46643:87;;11426:104;;;;;;;;;;;;;:::i;50001:560::-;;;;;;;;;;-1:-1:-1;50001:560:0;;;;;:::i;:::-;;:::i;12181:295::-;;;;;;;;;;-1:-1:-1;12181:295:0;;;;;:::i;:::-;;:::i;13188:328::-;;;;;;;;;;-1:-1:-1;13188:328:0;;;;;:::i;:::-;;:::i;48189:38::-;;;;;;;;;;;;;;;;50567:327;;;;;;;;;;-1:-1:-1;50567:327:0;;;;;:::i;:::-;;:::i;50902:110::-;;;;;;;;;;-1:-1:-1;50902:110:0;;;;;:::i;:::-;;:::i;51102:92::-;;;;;;;;;;-1:-1:-1;51102:92:0;;;;;:::i;:::-;;:::i;48115:31::-;;;;;;;;;;;;;;;;51302:83;;;;;;;;;;-1:-1:-1;51302:83:0;;;;;:::i;:::-;;:::i;12482:164::-;;;;;;;;;;-1:-1:-1;12482:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;12603:25:0;;;12579:4;12603:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12482:164;47543:192;;;;;;;;;;-1:-1:-1;47543:192:0;;;;;:::i;:::-;;:::i;32201:225::-;32304:4;-1:-1:-1;;;;;;32328:50:0;;-1:-1:-1;;;32328:50:0;;:90;;;32382:36;32406:11;32382:23;:36::i;:::-;32321:97;32201:225;-1:-1:-1;;32201:225:0:o;11320:100::-;11374:13;11407:5;11400:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11320:100;:::o;11954:221::-;12030:7;12058:16;12066:7;12058;:16::i;:::-;12050:73;;;;-1:-1:-1;;;12050:73:0;;14928:2:1;12050:73:0;;;14910:21:1;14967:2;14947:18;;;14940:30;15006:34;14986:18;;;14979:62;-1:-1:-1;;;15057:18:1;;;15050:42;15109:19;;12050:73:0;;;;;;;;;-1:-1:-1;12143:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12143:24:0;;11954:221::o;11536:412::-;11617:13;11633:24;11649:7;11633:15;:24::i;:::-;11617:40;;11682:5;-1:-1:-1;;;;;11676:11:0;:2;-1:-1:-1;;;;;11676:11:0;;;11668:57;;;;-1:-1:-1;;;11668:57:0;;17151:2:1;11668:57:0;;;17133:21:1;17190:2;17170:18;;;17163:30;17229:34;17209:18;;;17202:62;-1:-1:-1;;;17280:18:1;;;17273:31;17321:19;;11668:57:0;16949:397:1;11668:57:0;9696:10;-1:-1:-1;;;;;11760:21:0;;;;:62;;-1:-1:-1;11785:37:0;11802:5;9696:10;12482:164;:::i;11785:37::-;11738:168;;;;-1:-1:-1;;;11738:168:0;;12973:2:1;11738:168:0;;;12955:21:1;13012:2;12992:18;;;12985:30;13051:34;13031:18;;;13024:62;13122:26;13102:18;;;13095:54;13166:19;;11738:168:0;12771:420:1;11738:168:0;11919:21;11928:2;11932:7;11919:8;:21::i;:::-;11606:342;11536:412;;:::o;12652:339::-;12847:41;9696:10;12880:7;12847:18;:41::i;:::-;12839:103;;;;-1:-1:-1;;;12839:103:0;;;;;;;:::i;:::-;12955:28;12965:4;12971:2;12975:7;12955:9;:28::i;32432:500::-;32521:15;32565:24;32583:5;32565:17;:24::i;:::-;32557:5;:32;32549:67;;;;-1:-1:-1;;;32549:67:0;;;;;;;:::i;:::-;32627:10;32653:6;32648:226;32665:7;:14;32661:18;;32648:226;;;32714:7;32722:1;32714:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32705:19:0;;;32714:10;;32705:19;32701:162;;;32758:5;32749;:14;32745:102;;;32794:1;-1:-1:-1;32787:8:0;;-1:-1:-1;32787:8:0;32745:102;32840:7;;;:::i;:::-;;;32745:102;32681:3;;;:::i;:::-;;;32648:226;;;-1:-1:-1;32884:40:0;;-1:-1:-1;;;32884:40:0;;;;;;;:::i;51390:165::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51465:58:::1;::::0;51447:12:::1;::::0;51473:10:::1;::::0;51497:21:::1;::::0;51447:12;51465:58;51447:12;51465:58;51497:21;51473:10;51465:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51446:77;;;51542:7;51534:16;;;::::0;::::1;;51435:120;51390:165::o:0;49715:281::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;49789:9:::1;49801:13;33450:7:::0;:14;;33362:110;49801:13:::1;49852:9;::::0;49789:25;;-1:-1:-1;49833:15:0::1;49837:11:::0;49789:25;49833:15:::1;:::i;:::-;:28;;49825:61;;;;-1:-1:-1::0;;;49825:61:0::1;;;;;;;:::i;:::-;49902:9;49897:79;49921:11;49917:1;:15;49897:79;;;49945:25;49955:3:::0;49960:5:::1;49964:1:::0;49960;:5:::1;:::i;:::-;49945:25;;;;;;;;;;;::::0;:9:::1;:25::i;:::-;49934:3;::::0;::::1;:::i;:::-;;;49897:79;;;-1:-1:-1::0;;;;49715:281:0:o;48563:494::-;35385:1;35981:7;;:19;;35973:63;;;;-1:-1:-1;;;35973:63:0;;18327:2:1;35973:63:0;;;18309:21:1;18366:2;18346:18;;;18339:30;18405:33;18385:18;;;18378:61;18456:18;;35973:63:0;18125:355:1;35973:63:0;35385:1;36114:7;:18;48643:9:::1;48655:13;33450:7:::0;:14;;33362:110;48655:13:::1;48687:6;::::0;48643:25;;-1:-1:-1;48687:6:0::1;;48679:41;;;::::0;-1:-1:-1;;;48679:41:0;;10691:2:1;48679:41:0::1;::::0;::::1;10673:21:1::0;10730:2;10710:18;;;10703:30;-1:-1:-1;;;10749:18:1;;;10742:52;10811:18;;48679:41:0::1;10489:346:1::0;48679:41:0::1;48747:1;48733:11;:15;48725:40;;;::::0;-1:-1:-1;;;48725:40:0;;8766:2:1;48725:40:0::1;::::0;::::1;8748:21:1::0;8805:2;8785:18;;;8778:30;-1:-1:-1;;;8824:18:1;;;8817:41;8875:18;;48725:40:0::1;8564:335:1::0;48725:40:0::1;48793:2;48778:11;:17;;48770:75;;;::::0;-1:-1:-1;;;48770:75:0;;8353:2:1;48770:75:0::1;::::0;::::1;8335:21:1::0;8392:2;8372:18;;;8365:30;8431:34;8411:18;;;8404:62;-1:-1:-1;;;8482:18:1;;;8475:42;8534:19;;48770:75:0::1;8151:408:1::0;48770:75:0::1;48877:9;::::0;48858:15:::1;48862:11:::0;48858:1;:15:::1;:::i;:::-;:28;;48850:61;;;;-1:-1:-1::0;;;48850:61:0::1;;;;;;;:::i;:::-;48944:11;48937:4;;:18;;;;:::i;:::-;48924:9;:31;;48916:40;;;::::0;::::1;;48966:9;48961:79;48985:11;48981:1;:15;48961:79;;;49009:25;49019:3:::0;49024:5:::1;49028:1:::0;49024;:5:::1;:::i;49009:25::-;48998:3;::::0;::::1;:::i;:::-;;;48961:79;;;-1:-1:-1::0;;35341:1:0;36293:7;:22;-1:-1:-1;;48563:494:0:o;12997:185::-;13135:39;13152:4;13158:2;13162:7;13135:39;;;;;;;;;;;;:16;:39::i;51017:80::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51077:4:::1;:15:::0;51017:80::o;33478:194::-;33553:7;33589:24;33450:7;:14;;33362:110;33589:24;33581:5;:32;33573:68;;;;-1:-1:-1;;;33573:68:0;;16799:2:1;33573:68:0;;;16781:21:1;16838:2;16818:18;;;16811:30;16877:25;16857:18;;;16850:53;16920:18;;33573:68:0;16597:347:1;33573:68:0;-1:-1:-1;33659:5:0;33478:194::o;51199:98::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51271:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51199:98:::0;:::o;11075:239::-;11147:7;11167:13;11183:7;11191;11183:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11183:16:0;;-1:-1:-1;11218:19:0;11210:73;;;;-1:-1:-1;;;11210:73:0;;13809:2:1;11210:73:0;;;13791:21:1;13848:2;13828:18;;;13821:30;13887:34;13867:18;;;13860:62;-1:-1:-1;;;13938:18:1;;;13931:39;13987:19;;11210:73:0;13607:405:1;48054:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10655:414::-;10727:7;-1:-1:-1;;;;;10755:19:0;;10747:74;;;;-1:-1:-1;;;10747:74:0;;13398:2:1;10747:74:0;;;13380:21:1;13437:2;13417:18;;;13410:30;13476:34;13456:18;;;13449:62;-1:-1:-1;;;13527:18:1;;;13520:40;13577:19;;10747:74:0;13196:406:1;10747:74:0;10871:7;:14;10832:10;;;10896:119;10917:6;10913:1;:10;10896:119;;;10956:7;10964:1;10956:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;10947:19:0;;;10956:10;;10947:19;10943:61;;;10983:7;;;:::i;:::-;;;10943:61;10925:3;;;:::i;:::-;;;10896:119;;;-1:-1:-1;11056:5:0;;10655:414;-1:-1:-1;;;10655:414:0:o;47294:94::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;47359:21:::1;47377:1;47359:9;:21::i;:::-;47294:94::o:0;32938:418::-;32997:16;33038:24;33056:5;33038:17;:24::i;:::-;33034:1;:28;33026:63;;;;-1:-1:-1;;;33026:63:0;;;;;;;:::i;:::-;33100:18;33121:16;33131:5;33121:9;:16::i;:::-;33100:37;;33148:25;33190:10;33176:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33176:25:0;;33148:53;;33217:9;33212:111;33236:10;33232:1;:14;33212:111;;;33282:29;33302:5;33309:1;33282:19;:29::i;:::-;33268:8;33277:1;33268:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;33248:3;;;;:::i;:::-;;;;33212:111;;;-1:-1:-1;33340:8:0;32938:418;-1:-1:-1;;;32938:418:0:o;49065:642::-;35385:1;35981:7;;:19;;35973:63;;;;-1:-1:-1;;;35973:63:0;;18327:2:1;35973:63:0;;;18309:21:1;18366:2;18346:18;;;18339:30;18405:33;18385:18;;;18378:61;18456:18;;35973:63:0;18125:355:1;35973:63:0;35385:1;36114:7;:18;49149:9:::1;49161:13;33450:7:::0;:14;;33362:110;49161:13:::1;-1:-1:-1::0;;;;;49212:25:0;::::1;49185:24;49212:25:::0;;;:20:::1;:25;::::0;;;;;49256:6:::1;::::0;49149:25;;-1:-1:-1;49212:25:0;49256:6:::1;;49248:41;;;::::0;-1:-1:-1;;;49248:41:0;;10691:2:1;49248:41:0::1;::::0;::::1;10673:21:1::0;10730:2;10710:18;;;10703:30;-1:-1:-1;;;10749:18:1;;;10742:52;10811:18;;49248:41:0::1;10489:346:1::0;49248:41:0::1;49342:18;::::0;49308:30:::1;49327:11:::0;49308:16;:30:::1;:::i;:::-;:52;;49300:93;;;::::0;-1:-1:-1;;;49300:93:0;;11042:2:1;49300:93:0::1;::::0;::::1;11024:21:1::0;11081:2;11061:18;;;11054:30;11120;11100:18;;;11093:58;11168:18;;49300:93:0::1;10840:352:1::0;49300:93:0::1;49420:1;49406:11;:15;49398:40;;;::::0;-1:-1:-1;;;49398:40:0;;8766:2:1;49398:40:0::1;::::0;::::1;8748:21:1::0;8805:2;8785:18;;;8778:30;-1:-1:-1;;;8824:18:1;;;8817:41;8875:18;;49398:40:0::1;8564:335:1::0;49398:40:0::1;49466:1;49451:11;:16;;49443:57;;;::::0;-1:-1:-1;;;49443:57:0;;17971:2:1;49443:57:0::1;::::0;::::1;17953:21:1::0;18010:2;17990:18;;;17983:30;18049:29;18029:18;;;18022:57;18096:18;;49443:57:0::1;17769:351:1::0;49443:57:0::1;49532:7;::::0;49513:15:::1;49517:11:::0;49513:1;:15:::1;:::i;:::-;:26;;49505:59;;;;-1:-1:-1::0;;;49505:59:0::1;;;;;;;:::i;:::-;49574:9;49569:121;49593:11;49589:1;:15;49569:121;;;-1:-1:-1::0;;;;;49626:25:0;::::1;;::::0;;;:20:::1;:25;::::0;;;;:27;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;49659:25:0::1;::::0;-1:-1:-1;49669:3:0;49674:5:::1;49678:1:::0;49674;:5:::1;:::i;49659:25::-;49606:3;::::0;::::1;:::i;:::-;;;49569:121;;;-1:-1:-1::0;;35341:1:0;36293:7;:22;-1:-1:-1;;;49065:642:0:o;11426:104::-;11482:13;11515:7;11508:14;;;;;:::i;50001:560::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;50102:35;;::::1;50094:82;;;::::0;-1:-1:-1;;;50094:82:0;;12571:2:1;50094:82:0::1;::::0;::::1;12553:21:1::0;12610:2;12590:18;;;12583:30;12649:34;12629:18;;;12622:62;-1:-1:-1;;;12700:18:1;;;12693:31;12741:19;;50094:82:0::1;12369:397:1::0;50094:82:0::1;50181:18;50208:9:::0;50220:13:::1;33450:7:::0;:14;;33362:110;50220:13:::1;50208:25;;50242:6;50238:81;50254:19:::0;;::::1;50238:81;;;50302:8;;50311:1;50302:11;;;;;;;:::i;:::-;;;;;;;50285:28;;;;;:::i;:::-;::::0;-1:-1:-1;50275:3:0::1;::::0;::::1;:::i;:::-;;;50238:81;;;-1:-1:-1::0;50353:9:0::1;::::0;50332:17:::1;50336:13:::0;50332:1;:17:::1;:::i;:::-;:30;;50323:53;;;::::0;-1:-1:-1;;;50323:53:0;;15341:2:1;50323:53:0::1;::::0;::::1;15323:21:1::0;15380:1;15360:18;;;15353:29;-1:-1:-1;;;15398:18:1;;;15391:38;15446:18;;50323:53:0::1;15139:331:1::0;50323:53:0::1;50381:20;;;50410:6;50406:137;50422:20:::0;;::::1;50406:137;;;50458:6;50454:84;50474:8;;50483:1;50474:11;;;;;;;:::i;:::-;;;;;;;50470:1;:15;50454:84;;;50497:34;50508:9;;50518:1;50508:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50522:3:::0;::::1;::::0;::::1;:::i;:::-;;;50497:34;;;;;;;;;;;::::0;:9:::1;:34::i;:::-;50487:3;::::0;::::1;:::i;:::-;;;50454:84;;;-1:-1:-1::0;50444:3:0::1;::::0;::::1;:::i;:::-;;;50406:137;;;-1:-1:-1::0;;;;;;;50001:560:0:o;12181:295::-;-1:-1:-1;;;;;12284:24:0;;9696:10;12284:24;;12276:62;;;;-1:-1:-1;;;12276:62:0;;11804:2:1;12276:62:0;;;11786:21:1;11843:2;11823:18;;;11816:30;11882:27;11862:18;;;11855:55;11927:18;;12276:62:0;11602:349:1;12276:62:0;9696:10;12351:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;12351:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;12351:53:0;;;;;;;;;;12420:48;;7875:41:1;;;12351:42:0;;9696:10;12420:48;;7848:18:1;12420:48:0;;;;;;;12181:295;;:::o;13188:328::-;13363:41;9696:10;13396:7;13363:18;:41::i;:::-;13355:103;;;;-1:-1:-1;;;13355:103:0;;;;;;;:::i;:::-;13469:39;13483:4;13489:2;13493:7;13502:5;13469:13;:39::i;50567:327::-;50640:13;50671:16;50679:7;50671;:16::i;:::-;50663:62;;;;-1:-1:-1;;;50663:62:0;;9106:2:1;50663:62:0;;;9088:21:1;9145:2;9125:18;;;9118:30;9184:34;9164:18;;;9157:62;-1:-1:-1;;;9235:18:1;;;9228:31;9276:19;;50663:62:0;8904:397:1;50663:62:0;50733:28;50764:10;:8;:10::i;:::-;50733:41;;50820:1;50795:14;50789:28;:32;:100;;;;;;;;;;;;;;;;;50848:14;50864:18;:7;:16;:18::i;:::-;50831:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50789:100;50782:107;50567:327;-1:-1:-1;;;50567:327:0:o;50902:110::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;50977:18:::1;:27:::0;50902:110::o;51102:92::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51168:7:::1;:21:::0;51102:92::o;51302:83::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51364:6:::1;:16:::0;;-1:-1:-1;;51364:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51302:83::o;47543:192::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47632:22:0;::::1;47624:73;;;::::0;-1:-1:-1;;;47624:73:0;;9927:2:1;47624:73:0::1;::::0;::::1;9909:21:1::0;9966:2;9946:18;;;9939:30;10005:34;9985:18;;;9978:62;-1:-1:-1;;;10056:18:1;;;10049:36;10102:19;;47624:73:0::1;9725:402:1::0;47624:73:0::1;47708:19;47718:8;47708:9;:19::i;10344:305::-:0;10446:4;-1:-1:-1;;;;;;10483:40:0;;-1:-1:-1;;;10483:40:0;;:105;;-1:-1:-1;;;;;;;10540:48:0;;-1:-1:-1;;;10540:48:0;10483:105;:158;;;-1:-1:-1;;;;;;;;;;1683:40:0;;;10605:36;1574:157;13845:155;13944:7;:14;13910:4;;13934:24;;:58;;;;;13990:1;-1:-1:-1;;;;;13962:30:0;:7;13970;13962:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;13962:16:0;:30;;13927:65;13845:155;-1:-1:-1;;13845:155:0:o;15997:175::-;16072:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;16072:29:0;-1:-1:-1;;;;;16072:29:0;;;;;;;;:24;;16126;16072;16126:15;:24::i;:::-;-1:-1:-1;;;;;16117:47:0;;;;;;;;;;;15997:175;;:::o;14003:349::-;14096:4;14121:16;14129:7;14121;:16::i;:::-;14113:73;;;;-1:-1:-1;;;14113:73:0;;12158:2:1;14113:73:0;;;12140:21:1;12197:2;12177:18;;;12170:30;12236:34;12216:18;;;12209:62;-1:-1:-1;;;12287:18:1;;;12280:42;12339:19;;14113:73:0;11956:408:1;14113:73:0;14197:13;14213:24;14229:7;14213:15;:24::i;:::-;14197:40;;14267:5;-1:-1:-1;;;;;14256:16:0;:7;-1:-1:-1;;;;;14256:16:0;;:51;;;;14300:7;-1:-1:-1;;;;;14276:31:0;:20;14288:7;14276:11;:20::i;:::-;-1:-1:-1;;;;;14276:31:0;;14256:51;:87;;;-1:-1:-1;;;;;;12603:25:0;;;12579:4;12603:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;14311:32;14248:96;14003:349;-1:-1:-1;;;;14003:349:0:o;15477:517::-;15637:4;-1:-1:-1;;;;;15609:32:0;:24;15625:7;15609:15;:24::i;:::-;-1:-1:-1;;;;;15609:32:0;;15601:86;;;;-1:-1:-1;;;15601:86:0;;16038:2:1;15601:86:0;;;16020:21:1;16077:2;16057:18;;;16050:30;16116:34;16096:18;;;16089:62;-1:-1:-1;;;16167:18:1;;;16160:39;16216:19;;15601:86:0;15836:405:1;15601:86:0;-1:-1:-1;;;;;15706:16:0;;15698:65;;;;-1:-1:-1;;;15698:65:0;;11399:2:1;15698:65:0;;;11381:21:1;11438:2;11418:18;;;11411:30;11477:34;11457:18;;;11450:62;-1:-1:-1;;;11528:18:1;;;11521:34;11572:19;;15698:65:0;11197:400:1;15698:65:0;15880:29;15897:1;15901:7;15880:8;:29::i;:::-;15939:2;15920:7;15928;15920:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;15920:21:0;-1:-1:-1;;;;;15920:21:0;;;;;;15959:27;;15978:7;;15959:27;;;;;;;;;;15920:16;15959:27;15477:517;;;:::o;14468:321::-;14598:18;14604:2;14608:7;14598:5;:18::i;:::-;14649:54;14680:1;14684:2;14688:7;14697:5;14649:22;:54::i;:::-;14627:154;;;;-1:-1:-1;;;14627:154:0;;;;;;;:::i;47743:173::-;47818:6;;;-1:-1:-1;;;;;47835:17:0;;;-1:-1:-1;;;;;;47835:17:0;;;;;;;47868:40;;47818:6;;;47835:17;47818:6;;47868:40;;47799:16;;47868:40;47788:128;47743:173;:::o;13527:315::-;13684:28;13694:4;13700:2;13704:7;13684:9;:28::i;:::-;13731:48;13754:4;13760:2;13764:7;13773:5;13731:22;:48::i;:::-;13723:111;;;;-1:-1:-1;;;13723:111:0;;;;;;;:::i;48465:93::-;48516:13;48546:7;48539:14;;;;;:::i;43925:723::-;43981:13;44202:10;44198:53;;-1:-1:-1;;44229:10:0;;;;;;;;;;;;-1:-1:-1;;;44229:10:0;;;;;43925:723::o;44198:53::-;44276:5;44261:12;44317:78;44324:9;;44317:78;;44350:8;;;;:::i;:::-;;-1:-1:-1;44373:10:0;;-1:-1:-1;44381:2:0;44373:10;;:::i;:::-;;;44317:78;;;44405:19;44437:6;44427:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44427:17:0;;44405:39;;44455:154;44462:10;;44455:154;;44489:11;44499:1;44489:11;;:::i;:::-;;-1:-1:-1;44558:10:0;44566:2;44558:5;:10;:::i;:::-;44545:24;;:2;:24;:::i;:::-;44532:39;;44515:6;44522;44515:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;44515:56:0;;;;;;;;-1:-1:-1;44586:11:0;44595:2;44586:11;;:::i;:::-;;;44455:154;;14792:346;-1:-1:-1;;;;;14872:16:0;;14864:61;;;;-1:-1:-1;;;14864:61:0;;14219:2:1;14864:61:0;;;14201:21:1;;;14238:18;;;14231:30;14297:34;14277:18;;;14270:62;14349:18;;14864:61:0;14017:356:1;14864:61:0;14945:16;14953:7;14945;:16::i;:::-;14944:17;14936:58;;;;-1:-1:-1;;;14936:58:0;;10334:2:1;14936:58:0;;;10316:21:1;10373:2;10353:18;;;10346:30;10412;10392:18;;;10385:58;10460:18;;14936:58:0;10132:352:1;14936:58:0;15063:7;:16;;;;;;;-1:-1:-1;15063:16:0;;;;;;;-1:-1:-1;;;;;;15063:16:0;-1:-1:-1;;;;;15063:16:0;;;;;;;;15097:33;;15122:7;;-1:-1:-1;15097:33:0;;-1:-1:-1;;15097:33:0;14792:346;;:::o;16175:799::-;16330:4;-1:-1:-1;;;;;16351:13:0;;25075:20;25123:8;16347:620;;16387:72;;-1:-1:-1;;;16387:72:0;;-1:-1:-1;;;;;16387:36:0;;;;;:72;;9696:10;;16438:4;;16444:7;;16453:5;;16387:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16387:72:0;;;;;;;;-1:-1:-1;;16387:72:0;;;;;;;;;;;;:::i;:::-;;;16383:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16629:13:0;;16625:272;;16672:60;;-1:-1:-1;;;16672:60:0;;;;;;;:::i;16625:272::-;16847:6;16841:13;16832:6;16828:2;16824:15;16817:38;16383:529;-1:-1:-1;;;;;;16510:51:0;-1:-1:-1;;;16510:51:0;;-1:-1:-1;16503:58:0;;16347:620;-1:-1:-1;16951:4:0;16175:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;2581:18;2573:6;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:773::-;3465:6;3473;3481;3489;3542:2;3530:9;3521:7;3517:23;3513:32;3510:52;;;3558:1;3555;3548:12;3510:52;3598:9;3585:23;3627:18;3668:2;3660:6;3657:14;3654:34;;;3684:1;3681;3674:12;3654:34;3723:70;3785:7;3776:6;3765:9;3761:22;3723:70;:::i;:::-;3812:8;;-1:-1:-1;3697:96:1;-1:-1:-1;3900:2:1;3885:18;;3872:32;;-1:-1:-1;3916:16:1;;;3913:36;;;3945:1;3942;3935:12;3913:36;;3984:72;4048:7;4037:8;4026:9;4022:24;3984:72;:::i;:::-;3343:773;;;;-1:-1:-1;4075:8:1;-1:-1:-1;;;;3343:773:1:o;4121:180::-;4177:6;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:26;4285:9;4269:26;:::i;4306:245::-;4364:6;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:30;4515:5;4491:30;:::i;4556:249::-;4625:6;4678:2;4666:9;4657:7;4653:23;4649:32;4646:52;;;4694:1;4691;4684:12;4646:52;4726:9;4720:16;4745:30;4769:5;4745:30;:::i;4810:450::-;4879:6;4932:2;4920:9;4911:7;4907:23;4903:32;4900:52;;;4948:1;4945;4938:12;4900:52;4988:9;4975:23;5021:18;5013:6;5010:30;5007:50;;;5053:1;5050;5043:12;5007:50;5076:22;;5129:4;5121:13;;5117:27;-1:-1:-1;5107:55:1;;5158:1;5155;5148:12;5107:55;5181:73;5246:7;5241:2;5228:16;5223:2;5219;5215:11;5181:73;:::i;5265:180::-;5324:6;5377:2;5365:9;5356:7;5352:23;5348:32;5345:52;;;5393:1;5390;5383:12;5345:52;-1:-1:-1;5416:23:1;;5265:180;-1:-1:-1;5265:180:1:o;5450:257::-;5491:3;5529:5;5523:12;5556:6;5551:3;5544:19;5572:63;5628:6;5621:4;5616:3;5612:14;5605:4;5598:5;5594:16;5572:63;:::i;:::-;5689:2;5668:15;-1:-1:-1;;5664:29:1;5655:39;;;;5696:4;5651:50;;5450:257;-1:-1:-1;;5450:257:1:o;5712:470::-;5891:3;5929:6;5923:13;5945:53;5991:6;5986:3;5979:4;5971:6;5967:17;5945:53;:::i;:::-;6061:13;;6020:16;;;;6083:57;6061:13;6020:16;6117:4;6105:17;;6083:57;:::i;:::-;6156:20;;5712:470;-1:-1:-1;;;;5712:470:1:o;6605:488::-;-1:-1:-1;;;;;6874:15:1;;;6856:34;;6926:15;;6921:2;6906:18;;6899:43;6973:2;6958:18;;6951:34;;;7021:3;7016:2;7001:18;;6994:31;;;6799:4;;7042:45;;7067:19;;7059:6;7042:45;:::i;:::-;7034:53;6605:488;-1:-1:-1;;;;;;6605:488:1:o;7098:632::-;7269:2;7321:21;;;7391:13;;7294:18;;;7413:22;;;7240:4;;7269:2;7492:15;;;;7466:2;7451:18;;;7240:4;7535:169;7549:6;7546:1;7543:13;7535:169;;;7610:13;;7598:26;;7679:15;;;;7644:12;;;;7571:1;7564:9;7535:169;;;-1:-1:-1;7721:3:1;;7098:632;-1:-1:-1;;;;;;7098:632:1:o;7927:219::-;8076:2;8065:9;8058:21;8039:4;8096:44;8136:2;8125:9;8121:18;8113:6;8096:44;:::i;9306:414::-;9508:2;9490:21;;;9547:2;9527:18;;;9520:30;9586:34;9581:2;9566:18;;9559:62;-1:-1:-1;;;9652:2:1;9637:18;;9630:48;9710:3;9695:19;;9306:414::o;14378:343::-;14580:2;14562:21;;;14619:2;14599:18;;;14592:30;-1:-1:-1;;;14653:2:1;14638:18;;14631:49;14712:2;14697:18;;14378:343::o;15475:356::-;15677:2;15659:21;;;15696:18;;;15689:30;15755:34;15750:2;15735:18;;15728:62;15822:2;15807:18;;15475:356::o;16246:346::-;16448:2;16430:21;;;16487:2;16467:18;;;16460:30;-1:-1:-1;;;16521:2:1;16506:18;;16499:52;16583:2;16568:18;;16246:346::o;17351:413::-;17553:2;17535:21;;;17592:2;17572:18;;;17565:30;17631:34;17626:2;17611:18;;17604:62;-1:-1:-1;;;17697:2:1;17682:18;;17675:47;17754:3;17739:19;;17351:413::o;18667:128::-;18707:3;18738:1;18734:6;18731:1;18728:13;18725:39;;;18744:18;;:::i;:::-;-1:-1:-1;18780:9:1;;18667:128::o;18800:120::-;18840:1;18866;18856:35;;18871:18;;:::i;:::-;-1:-1:-1;18905:9:1;;18800:120::o;18925:168::-;18965:7;19031:1;19027;19023:6;19019:14;19016:1;19013:21;19008:1;19001:9;18994:17;18990:45;18987:71;;;19038:18;;:::i;:::-;-1:-1:-1;19078:9:1;;18925:168::o;19098:125::-;19138:4;19166:1;19163;19160:8;19157:34;;;19171:18;;:::i;:::-;-1:-1:-1;19208:9:1;;19098:125::o;19228:258::-;19300:1;19310:113;19324:6;19321:1;19318:13;19310:113;;;19400:11;;;19394:18;19381:11;;;19374:39;19346:2;19339:10;19310:113;;;19441:6;19438:1;19435:13;19432:48;;;-1:-1:-1;;19476:1:1;19458:16;;19451:27;19228:258::o;19491:380::-;19570:1;19566:12;;;;19613;;;19634:61;;19688:4;19680:6;19676:17;19666:27;;19634:61;19741:2;19733:6;19730:14;19710:18;19707:38;19704:161;;;19787:10;19782:3;19778:20;19775:1;19768:31;19822:4;19819:1;19812:15;19850:4;19847:1;19840:15;19704:161;;19491:380;;;:::o;19876:135::-;19915:3;-1:-1:-1;;19936:17:1;;19933:43;;;19956:18;;:::i;:::-;-1:-1:-1;20003:1:1;19992:13;;19876:135::o;20016:112::-;20048:1;20074;20064:35;;20079:18;;:::i;:::-;-1:-1:-1;20113:9:1;;20016:112::o;20133:127::-;20194:10;20189:3;20185:20;20182:1;20175:31;20225:4;20222:1;20215:15;20249:4;20246:1;20239:15;20265:127;20326:10;20321:3;20317:20;20314:1;20307:31;20357:4;20354:1;20347:15;20381:4;20378:1;20371:15;20397:127;20458:10;20453:3;20449:20;20446:1;20439:31;20489:4;20486:1;20479:15;20513:4;20510:1;20503:15;20529:127;20590:10;20585:3;20581:20;20578:1;20571:31;20621:4;20618:1;20611:15;20645:4;20642:1;20635:15;20661:131;-1:-1:-1;;;;;;20735:32:1;;20725:43;;20715:71;;20782:1;20779;20772:12
Swarm Source
ipfs://3e6a5de8df68a19d2ff0815033326679bb6874c42935f6c2a84df12bf631c538
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.