Contract Address Details
contract
0x852F1aE3EEe3b12882e0961b7f76b57844A13163
- Contract Name
- AzuroBet
- Creator
- 0x92fb32–9fdc2f at 0x30fbd7–e3f100
- Balance
- 0 xDai ( )
- Tokens
-
Fetching tokens...
- Transactions
- 1 Transactions
- Transfers
- 0 Transfers
- Gas Used
- 114,609
- Last Balance Update
- 26229221
This contract has been verified via Sourcify.
View contract in Sourcify repository
- Contract name:
- AzuroBet
- Optimization enabled
- true
- Compiler version
- v0.8.4+commit.c7e474f2
- Optimization runs
- 1000
- EVM Version
- istanbul
- Verified at
- 2022-06-07T12:07:55.019487Z
contracts/AzuroBet.sol
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "./interface/IAzuroBet.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; /// @title Azuro bet NFT contract AzuroBet is OwnableUpgradeable, ERC721Upgradeable, IAzuroBet { // Last minted token ID uint256 lastTokenId; // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; string public baseURI; // Liquidity pool address address public lpAddress; // Token ID -> core address mapping(uint256 => address) private tokenToCore; /** * @notice Only permits calls by LP. */ modifier onlyLp() { if (msg.sender != lpAddress) revert OnlyLp(); _; } function initialize() external virtual initializer { __Ownable_init_unchained(); __ERC721_init("AzuroBet-NFT", "BET"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view override(IERC165Upgradeable, ERC721Upgradeable) returns (bool) { return interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721EnumerableUpgradeable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return lastTokenId; } /** * @dev See {IERC721EnumerableUpgradeable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require( index < super.balanceOf(owner), "ERC721: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721EnumerableUpgradeable-tokenByIndex}. * @dev The function included only to support ERC721EnumerableUpgradeable interface. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < lastTokenId, "ERC721: global index out of bounds"); return index + 1; } /** * @notice Hook that is called before any token transfer includes minting and burning. * @param from token sender * @param to token recipient * @param tokenId transferring token ID */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from != to) { if (from != address(0)) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to != address(0)) { _addTokenToOwnerEnumeration(to, tokenId); } } } /** * @notice Private function to remove a token from this extension's ownership-tracking data structures. * @param from address representing the previous owner of the given token ID * @param tokenId ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) internal { uint256 lastTokenIndex = super.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId_ = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId_; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId_] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @notice Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) internal { uint256 length = super.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @notice Get IDs of tokens owned by `owner`. */ function getTokensByOwner(address owner) external view returns (uint256[] memory tokenIds) { uint256 _tokens = super.balanceOf(owner); tokenIds = new uint256[](_tokens); for (uint256 i = 0; i < _tokens; i++) { tokenIds[i] = _ownedTokens[owner][i]; } } /** * @dev See {IERC721Upgradeable-ownerOf}. */ function ownerOf(uint256 tokenId) public view override(ERC721Upgradeable, IAzuroBet) returns (address) { return ERC721Upgradeable.ownerOf(tokenId); } /** * @dev LP: See {ERC721Upgradeable-_burn}. */ function burn(uint256 tokenId) external override onlyLp { super._burn(tokenId); } /** * @dev LP: See {ERC721Upgradeable-_mint}. */ function mint(address account, address core) external override onlyLp { lastTokenId++; tokenToCore[lastTokenId] = core; super._mint(account, lastTokenId); } /** * @dev See {ERC721Upgradeable-_baseURI}. */ function _baseURI() internal view override returns (string memory) { return baseURI; } /** * @notice Owner: Set `uri` as baseURI. * @param uri new baseURI */ function setBaseURI(string calldata uri) external onlyOwner { baseURI = uri; } /** * @notice Owner: Set `lp` as new LP address. * @param lp new LP contract address */ function setLp(address lp) external override onlyOwner { lpAddress = lp; emit LpChanged(lp); } /** * @notice Get token core address. * @param tokenId ID of token * @return core address of core token belongs to */ function getCoreByToken(uint256 tokenId) external view override returns (address core) { return tokenToCore[tokenId]; } }
/contracts/interface/IAzuroBet.sol
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721EnumerableUpgradeable.sol"; interface IAzuroBet is IERC721EnumerableUpgradeable { function ownerOf(uint256 tokenId) external view override returns (address); function burn(uint256 id) external; function mint(address account, address core) external; function setLp(address lp) external; function getCoreByToken(uint256 tokenId) external view returns (address core); event LpChanged(address lp); error OnlyLp(); }
/_openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @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); }
/_openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
/_openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { 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); } }
/_openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
/_openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 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); } } } }
/_openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @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); }
/_openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721EnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721EnumerableUpgradeable is IERC721Upgradeable { /** * @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); }
/_openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @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; }
/_openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @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); }
/_openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} uint256[44] private __gap; }
/_openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
/_openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; }
Contract ABI
[{"type":"error","name":"OnlyLp","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"approved","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"LpChanged","inputs":[{"type":"address","name":"lp","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approve","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseURI","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"core","internalType":"address"}],"name":"getCoreByToken","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"tokenIds","internalType":"uint256[]"}],"name":"getTokensByOwner","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"operator","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"lpAddress","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"address","name":"core","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseURI","inputs":[{"type":"string","name":"uri","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setLp","inputs":[{"type":"address","name":"lp","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenByIndex","inputs":[{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenOfOwnerByIndex","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
Contract Creation Code
0x608060405234801561001057600080fd5b50612559806100206000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636c0360eb116100f9578063a22cb46511610097578063e985e9c511610071578063e985e9c5146103b6578063ee1fe2ad146103f2578063f2fde38b14610405578063f4c2baa91461041857600080fd5b8063a22cb4651461037d578063b88d4fde14610390578063c87b56dd146103a357600080fd5b80638129fc1c116100d35780638129fc1c146103495780638da5cb5b1461035157806395d89b41146103625780639b4dc8cc1461036a57600080fd5b80636c0360eb1461032657806370a082311461032e578063715018a61461034157600080fd5b806340398d67116101665780634bcf7bd1116101405780634bcf7bd1146102c45780634f6ccce7146102ed57806355f804b3146103005780636352211e1461031357600080fd5b806340398d671461027e57806342842e0e1461029e57806342966c68146102b157600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806318160ddd1461024657806323b872dd146102585780632f745c591461026b57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004612247565b61042b565b60405190151581526020015b60405180910390f35b6101f961046f565b6040516101e891906123df565b6102196102143660046122ec565b610501565b6040516001600160a01b0390911681526020016101e8565b61024461023f36600461221e565b61059b565b005b60c9545b6040519081526020016101e8565b6102446102663660046120d4565b6106cd565b61024a61027936600461221e565b610754565b61029161028c366004612088565b6107fc565b6040516101e8919061239b565b6102446102ac3660046120d4565b6108d3565b6102446102bf3660046122ec565b6108ee565b6102196102d23660046122ec565b600090815260ce60205260409020546001600160a01b031690565b61024a6102fb3660046122ec565b610925565b61024461030e36600461227f565b6109a9565b6102196103213660046122ec565b610a0f565b6101f9610a1a565b61024a61033c366004612088565b610aa8565b610244610b42565b610244610ba8565b6033546001600160a01b0316610219565b6101f9610cd6565b60cd54610219906001600160a01b031681565b61024461038b3660046121e4565b610ce5565b61024461039e36600461210f565b610cf4565b6101f96103b13660046122ec565b610d82565b6101dc6103c43660046120a2565b6001600160a01b039182166000908152609c6020908152604080832093909416825291909152205460ff1690565b6102446104003660046120a2565b610e6b565b610244610413366004612088565b610ee2565b610244610426366004612088565b610fc1565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061046957506104698261106f565b92915050565b60606097805461047e90612461565b80601f01602080910402602001604051908101604052809291908181526020018280546104aa90612461565b80156104f75780601f106104cc576101008083540402835291602001916104f7565b820191906000526020600020905b8154815290600101906020018083116104da57829003601f168201915b5050505050905090565b6000818152609960205260408120546001600160a01b031661057f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152609b60205260409020546001600160a01b031690565b60006105a68261110a565b9050806001600160a01b0316836001600160a01b031614156106305760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610576565b336001600160a01b038216148061064c575061064c81336103c4565b6106be5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610576565b6106c88383611195565b505050565b6106d73382611203565b6107495760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610576565b6106c88383836112fa565b600061075f83610aa8565b82106107d35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a206f776e657220696e646578206f7574206f6620626f756e6460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610576565b506001600160a01b0391909116600090815260ca60209081526040808320938352929052205490565b6060600061080983610aa8565b90508067ffffffffffffffff81111561083257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561085b578160200160208202803683370190505b50915060005b818110156108cc576001600160a01b038416600090815260ca6020908152604080832084845290915290205483518490839081106108af57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806108c48161249c565b915050610861565b5050919050565b6106c883838360405180602001604052806000815250610cf4565b60cd546001600160a01b031633146109195760405163dad84f8f60e01b815260040160405180910390fd5b610922816114d2565b50565b600060c954821061099e5760405162461bcd60e51b815260206004820152602260248201527f4552433732313a20676c6f62616c20696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6104698260016123f2565b6033546001600160a01b03163314610a035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6106c860cc8383611f5f565b60006104698261110a565b60cc8054610a2790612461565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5390612461565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b505050505081565b60006001600160a01b038216610b265760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610576565b506001600160a01b03166000908152609a602052604090205490565b6033546001600160a01b03163314610b9c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b610ba66000611579565b565b600054610100900460ff1680610bc1575060005460ff16155b610c245760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610576565b600054610100900460ff16158015610c46576000805461ffff19166101011790555b610c4e6115cb565b610cc26040518060400160405280600c81526020017f417a75726f4265742d4e465400000000000000000000000000000000000000008152506040518060400160405280600381526020017f4245540000000000000000000000000000000000000000000000000000000000815250611672565b8015610922576000805461ff001916905550565b60606098805461047e90612461565b610cf0338383611740565b5050565b610cfe3383611203565b610d705760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610576565b610d7c8484848461180f565b50505050565b6000818152609960205260409020546060906001600160a01b0316610e0f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610576565b6000610e19611898565b90506000815111610e395760405180602001604052806000815250610e64565b80610e43846118a7565b604051602001610e54929190612330565b6040516020818303038152906040525b9392505050565b60cd546001600160a01b03163314610e965760405163dad84f8f60e01b815260040160405180910390fd5b60c98054906000610ea68361249c565b909155505060c98054600090815260ce6020526040902080546001600160a01b0319166001600160a01b03841617905554610cf09083906119f5565b6033546001600160a01b03163314610f3c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b038116610fb85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610576565b61092281611579565b6033546001600160a01b0316331461101b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b60cd80546001600160a01b0319166001600160a01b0383169081179091556040519081527f5f7748c284ee1ce72903c01c317ef43dd5a82d24aa3376bf246e98f8b3b74da19060200160405180910390a150565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806110d257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061046957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610469565b6000818152609960205260408120546001600160a01b0316806104695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610576565b6000818152609b6020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111ca8261110a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152609960205260408120546001600160a01b031661127c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610576565b60006112878361110a565b9050806001600160a01b0316846001600160a01b031614806112c25750836001600160a01b03166112b784610501565b6001600160a01b0316145b806112f257506001600160a01b038082166000908152609c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661130d8261110a565b6001600160a01b0316146113895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b0382166114045760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610576565b61140f838383611b43565b61141a600082611195565b6001600160a01b0383166000908152609a6020526040812080546001929061144390849061241e565b90915550506001600160a01b0382166000908152609a602052604081208054600192906114719084906123f2565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006114dd8261110a565b90506114eb81600084611b43565b6114f6600083611195565b6001600160a01b0381166000908152609a6020526040812080546001929061151f90849061241e565b909155505060008281526099602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16806115e4575060005460ff16155b6116475760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610576565b600054610100900460ff16158015611669576000805461ffff19166101011790555b610cc233611579565b600054610100900460ff168061168b575060005460ff16155b6116ee5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610576565b600054610100900460ff16158015611710576000805461ffff19166101011790555b611718611b8e565b611720611b8e565b61172a8383611c3f565b80156106c8576000805461ff0019169055505050565b816001600160a01b0316836001600160a01b031614156117a25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610576565b6001600160a01b038381166000818152609c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61181a8484846112fa565b61182684848484611d1b565b610d7c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610576565b606060cc805461047e90612461565b6060816118e757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561191157806118fb8161249c565b915061190a9050600a8361240a565b91506118eb565b60008167ffffffffffffffff81111561193a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611964576020820181803683370190505b5090505b84156112f25761197960018361241e565b9150611986600a866124b7565b6119919060306123f2565b60f81b8183815181106119b457634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506119ee600a8661240a565b9450611968565b6001600160a01b038216611a4b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610576565b6000818152609960205260409020546001600160a01b031615611ab05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610576565b611abc60008383611b43565b6001600160a01b0382166000908152609a60205260408120805460019290611ae59084906123f2565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316146106c8576001600160a01b03831615611b7557611b758382611e7e565b6001600160a01b038216156106c8576106c88282611f1b565b600054610100900460ff1680611ba7575060005460ff16155b611c0a5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610576565b600054610100900460ff16158015610cc2576000805461ffff19166101011790558015610922576000805461ff001916905550565b600054610100900460ff1680611c58575060005460ff16155b611cbb5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610576565b600054610100900460ff16158015611cdd576000805461ffff19166101011790555b8251611cf0906097906020860190611fe3565b508151611d04906098906020850190611fe3565b5080156106c8576000805461ff0019169055505050565b60006001600160a01b0384163b15611e7357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d5f90339089908890889060040161235f565b602060405180830381600087803b158015611d7957600080fd5b505af1925050508015611da9575060408051601f3d908101601f19168201909252611da691810190612263565b60015b611e59573d808015611dd7576040519150601f19603f3d011682016040523d82523d6000602084013e611ddc565b606091505b508051611e515760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610576565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112f2565b506001949350505050565b60006001611e8b84610aa8565b611e95919061241e565b600083815260cb6020526040902054909150808214611ee8576001600160a01b038416600090815260ca60209081526040808320858452825280832054848452818420819055835260cb90915290208190555b50600091825260cb602090815260408084208490556001600160a01b03909416835260ca81528383209183525290812055565b6000611f2683610aa8565b6001600160a01b03909316600090815260ca60209081526040808320868452825280832085905593825260cb9052919091209190915550565b828054611f6b90612461565b90600052602060002090601f016020900481019282611f8d5760008555611fd3565b82601f10611fa65782800160ff19823516178555611fd3565b82800160010185558215611fd3579182015b82811115611fd3578235825591602001919060010190611fb8565b50611fdf929150612057565b5090565b828054611fef90612461565b90600052602060002090601f0160209004810192826120115760008555611fd3565b82601f1061202a57805160ff1916838001178555611fd3565b82800160010185558215611fd3579182015b82811115611fd357825182559160200191906001019061203c565b5b80821115611fdf5760008155600101612058565b80356001600160a01b038116811461208357600080fd5b919050565b600060208284031215612099578081fd5b610e648261206c565b600080604083850312156120b4578081fd5b6120bd8361206c565b91506120cb6020840161206c565b90509250929050565b6000806000606084860312156120e8578081fd5b6120f18461206c565b92506120ff6020850161206c565b9150604084013590509250925092565b60008060008060808587031215612124578081fd5b61212d8561206c565b935061213b6020860161206c565b925060408501359150606085013567ffffffffffffffff8082111561215e578283fd5b818701915087601f830112612171578283fd5b813581811115612183576121836124f7565b604051601f8201601f19908116603f011681019083821181831017156121ab576121ab6124f7565b816040528281528a60208487010111156121c3578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156121f6578182fd5b6121ff8361206c565b915060208301358015158114612213578182fd5b809150509250929050565b60008060408385031215612230578182fd5b6122398361206c565b946020939093013593505050565b600060208284031215612258578081fd5b8135610e648161250d565b600060208284031215612274578081fd5b8151610e648161250d565b60008060208385031215612291578182fd5b823567ffffffffffffffff808211156122a8578384fd5b818501915085601f8301126122bb578384fd5b8135818111156122c9578485fd5b8660208285010111156122da578485fd5b60209290920196919550909350505050565b6000602082840312156122fd578081fd5b5035919050565b6000815180845261231c816020860160208601612435565b601f01601f19169290920160200192915050565b60008351612342818460208801612435565b835190830190612356818360208801612435565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123916080830184612304565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123d3578351835292840192918401916001016123b7565b50909695505050505050565b602081526000610e646020830184612304565b60008219821115612405576124056124cb565b500190565b600082612419576124196124e1565b500490565b600082821015612430576124306124cb565b500390565b60005b83811015612450578181015183820152602001612438565b83811115610d7c5750506000910152565b600181811c9082168061247557607f821691505b6020821081141561249657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124b0576124b06124cb565b5060010190565b6000826124c6576124c66124e1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092257600080fdfea26469706673582212206f80eeb86114e5175a7eb333d75dfb343de6726ae59a20cd803795f2fe34b61b64736f6c63430008040033
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636c0360eb116100f9578063a22cb46511610097578063e985e9c511610071578063e985e9c5146103b6578063ee1fe2ad146103f2578063f2fde38b14610405578063f4c2baa91461041857600080fd5b8063a22cb4651461037d578063b88d4fde14610390578063c87b56dd146103a357600080fd5b80638129fc1c116100d35780638129fc1c146103495780638da5cb5b1461035157806395d89b41146103625780639b4dc8cc1461036a57600080fd5b80636c0360eb1461032657806370a082311461032e578063715018a61461034157600080fd5b806340398d67116101665780634bcf7bd1116101405780634bcf7bd1146102c45780634f6ccce7146102ed57806355f804b3146103005780636352211e1461031357600080fd5b806340398d671461027e57806342842e0e1461029e57806342966c68146102b157600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806318160ddd1461024657806323b872dd146102585780632f745c591461026b57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004612247565b61042b565b60405190151581526020015b60405180910390f35b6101f961046f565b6040516101e891906123df565b6102196102143660046122ec565b610501565b6040516001600160a01b0390911681526020016101e8565b61024461023f36600461221e565b61059b565b005b60c9545b6040519081526020016101e8565b6102446102663660046120d4565b6106cd565b61024a61027936600461221e565b610754565b61029161028c366004612088565b6107fc565b6040516101e8919061239b565b6102446102ac3660046120d4565b6108d3565b6102446102bf3660046122ec565b6108ee565b6102196102d23660046122ec565b600090815260ce60205260409020546001600160a01b031690565b61024a6102fb3660046122ec565b610925565b61024461030e36600461227f565b6109a9565b6102196103213660046122ec565b610a0f565b6101f9610a1a565b61024a61033c366004612088565b610aa8565b610244610b42565b610244610ba8565b6033546001600160a01b0316610219565b6101f9610cd6565b60cd54610219906001600160a01b031681565b61024461038b3660046121e4565b610ce5565b61024461039e36600461210f565b610cf4565b6101f96103b13660046122ec565b610d82565b6101dc6103c43660046120a2565b6001600160a01b039182166000908152609c6020908152604080832093909416825291909152205460ff1690565b6102446104003660046120a2565b610e6b565b610244610413366004612088565b610ee2565b610244610426366004612088565b610fc1565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061046957506104698261106f565b92915050565b60606097805461047e90612461565b80601f01602080910402602001604051908101604052809291908181526020018280546104aa90612461565b80156104f75780601f106104cc576101008083540402835291602001916104f7565b820191906000526020600020905b8154815290600101906020018083116104da57829003601f168201915b5050505050905090565b6000818152609960205260408120546001600160a01b031661057f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152609b60205260409020546001600160a01b031690565b60006105a68261110a565b9050806001600160a01b0316836001600160a01b031614156106305760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610576565b336001600160a01b038216148061064c575061064c81336103c4565b6106be5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610576565b6106c88383611195565b505050565b6106d73382611203565b6107495760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610576565b6106c88383836112fa565b600061075f83610aa8565b82106107d35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a206f776e657220696e646578206f7574206f6620626f756e6460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610576565b506001600160a01b0391909116600090815260ca60209081526040808320938352929052205490565b6060600061080983610aa8565b90508067ffffffffffffffff81111561083257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561085b578160200160208202803683370190505b50915060005b818110156108cc576001600160a01b038416600090815260ca6020908152604080832084845290915290205483518490839081106108af57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806108c48161249c565b915050610861565b5050919050565b6106c883838360405180602001604052806000815250610cf4565b60cd546001600160a01b031633146109195760405163dad84f8f60e01b815260040160405180910390fd5b610922816114d2565b50565b600060c954821061099e5760405162461bcd60e51b815260206004820152602260248201527f4552433732313a20676c6f62616c20696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6104698260016123f2565b6033546001600160a01b03163314610a035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6106c860cc8383611f5f565b60006104698261110a565b60cc8054610a2790612461565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5390612461565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b505050505081565b60006001600160a01b038216610b265760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610576565b506001600160a01b03166000908152609a602052604090205490565b6033546001600160a01b03163314610b9c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b610ba66000611579565b565b600054610100900460ff1680610bc1575060005460ff16155b610c245760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610576565b600054610100900460ff16158015610c46576000805461ffff19166101011790555b610c4e6115cb565b610cc26040518060400160405280600c81526020017f417a75726f4265742d4e465400000000000000000000000000000000000000008152506040518060400160405280600381526020017f4245540000000000000000000000000000000000000000000000000000000000815250611672565b8015610922576000805461ff001916905550565b60606098805461047e90612461565b610cf0338383611740565b5050565b610cfe3383611203565b610d705760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610576565b610d7c8484848461180f565b50505050565b6000818152609960205260409020546060906001600160a01b0316610e0f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610576565b6000610e19611898565b90506000815111610e395760405180602001604052806000815250610e64565b80610e43846118a7565b604051602001610e54929190612330565b6040516020818303038152906040525b9392505050565b60cd546001600160a01b03163314610e965760405163dad84f8f60e01b815260040160405180910390fd5b60c98054906000610ea68361249c565b909155505060c98054600090815260ce6020526040902080546001600160a01b0319166001600160a01b03841617905554610cf09083906119f5565b6033546001600160a01b03163314610f3c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b038116610fb85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610576565b61092281611579565b6033546001600160a01b0316331461101b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b60cd80546001600160a01b0319166001600160a01b0383169081179091556040519081527f5f7748c284ee1ce72903c01c317ef43dd5a82d24aa3376bf246e98f8b3b74da19060200160405180910390a150565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806110d257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061046957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610469565b6000818152609960205260408120546001600160a01b0316806104695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610576565b6000818152609b6020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111ca8261110a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152609960205260408120546001600160a01b031661127c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610576565b60006112878361110a565b9050806001600160a01b0316846001600160a01b031614806112c25750836001600160a01b03166112b784610501565b6001600160a01b0316145b806112f257506001600160a01b038082166000908152609c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661130d8261110a565b6001600160a01b0316146113895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b0382166114045760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610576565b61140f838383611b43565b61141a600082611195565b6001600160a01b0383166000908152609a6020526040812080546001929061144390849061241e565b90915550506001600160a01b0382166000908152609a602052604081208054600192906114719084906123f2565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006114dd8261110a565b90506114eb81600084611b43565b6114f6600083611195565b6001600160a01b0381166000908152609a6020526040812080546001929061151f90849061241e565b909155505060008281526099602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16806115e4575060005460ff16155b6116475760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610576565b600054610100900460ff16158015611669576000805461ffff19166101011790555b610cc233611579565b600054610100900460ff168061168b575060005460ff16155b6116ee5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610576565b600054610100900460ff16158015611710576000805461ffff19166101011790555b611718611b8e565b611720611b8e565b61172a8383611c3f565b80156106c8576000805461ff0019169055505050565b816001600160a01b0316836001600160a01b031614156117a25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610576565b6001600160a01b038381166000818152609c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61181a8484846112fa565b61182684848484611d1b565b610d7c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610576565b606060cc805461047e90612461565b6060816118e757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561191157806118fb8161249c565b915061190a9050600a8361240a565b91506118eb565b60008167ffffffffffffffff81111561193a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611964576020820181803683370190505b5090505b84156112f25761197960018361241e565b9150611986600a866124b7565b6119919060306123f2565b60f81b8183815181106119b457634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506119ee600a8661240a565b9450611968565b6001600160a01b038216611a4b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610576565b6000818152609960205260409020546001600160a01b031615611ab05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610576565b611abc60008383611b43565b6001600160a01b0382166000908152609a60205260408120805460019290611ae59084906123f2565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316146106c8576001600160a01b03831615611b7557611b758382611e7e565b6001600160a01b038216156106c8576106c88282611f1b565b600054610100900460ff1680611ba7575060005460ff16155b611c0a5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610576565b600054610100900460ff16158015610cc2576000805461ffff19166101011790558015610922576000805461ff001916905550565b600054610100900460ff1680611c58575060005460ff16155b611cbb5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610576565b600054610100900460ff16158015611cdd576000805461ffff19166101011790555b8251611cf0906097906020860190611fe3565b508151611d04906098906020850190611fe3565b5080156106c8576000805461ff0019169055505050565b60006001600160a01b0384163b15611e7357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d5f90339089908890889060040161235f565b602060405180830381600087803b158015611d7957600080fd5b505af1925050508015611da9575060408051601f3d908101601f19168201909252611da691810190612263565b60015b611e59573d808015611dd7576040519150601f19603f3d011682016040523d82523d6000602084013e611ddc565b606091505b508051611e515760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610576565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112f2565b506001949350505050565b60006001611e8b84610aa8565b611e95919061241e565b600083815260cb6020526040902054909150808214611ee8576001600160a01b038416600090815260ca60209081526040808320858452825280832054848452818420819055835260cb90915290208190555b50600091825260cb602090815260408084208490556001600160a01b03909416835260ca81528383209183525290812055565b6000611f2683610aa8565b6001600160a01b03909316600090815260ca60209081526040808320868452825280832085905593825260cb9052919091209190915550565b828054611f6b90612461565b90600052602060002090601f016020900481019282611f8d5760008555611fd3565b82601f10611fa65782800160ff19823516178555611fd3565b82800160010185558215611fd3579182015b82811115611fd3578235825591602001919060010190611fb8565b50611fdf929150612057565b5090565b828054611fef90612461565b90600052602060002090601f0160209004810192826120115760008555611fd3565b82601f1061202a57805160ff1916838001178555611fd3565b82800160010185558215611fd3579182015b82811115611fd357825182559160200191906001019061203c565b5b80821115611fdf5760008155600101612058565b80356001600160a01b038116811461208357600080fd5b919050565b600060208284031215612099578081fd5b610e648261206c565b600080604083850312156120b4578081fd5b6120bd8361206c565b91506120cb6020840161206c565b90509250929050565b6000806000606084860312156120e8578081fd5b6120f18461206c565b92506120ff6020850161206c565b9150604084013590509250925092565b60008060008060808587031215612124578081fd5b61212d8561206c565b935061213b6020860161206c565b925060408501359150606085013567ffffffffffffffff8082111561215e578283fd5b818701915087601f830112612171578283fd5b813581811115612183576121836124f7565b604051601f8201601f19908116603f011681019083821181831017156121ab576121ab6124f7565b816040528281528a60208487010111156121c3578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156121f6578182fd5b6121ff8361206c565b915060208301358015158114612213578182fd5b809150509250929050565b60008060408385031215612230578182fd5b6122398361206c565b946020939093013593505050565b600060208284031215612258578081fd5b8135610e648161250d565b600060208284031215612274578081fd5b8151610e648161250d565b60008060208385031215612291578182fd5b823567ffffffffffffffff808211156122a8578384fd5b818501915085601f8301126122bb578384fd5b8135818111156122c9578485fd5b8660208285010111156122da578485fd5b60209290920196919550909350505050565b6000602082840312156122fd578081fd5b5035919050565b6000815180845261231c816020860160208601612435565b601f01601f19169290920160200192915050565b60008351612342818460208801612435565b835190830190612356818360208801612435565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123916080830184612304565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123d3578351835292840192918401916001016123b7565b50909695505050505050565b602081526000610e646020830184612304565b60008219821115612405576124056124cb565b500190565b600082612419576124196124e1565b500490565b600082821015612430576124306124cb565b500390565b60005b83811015612450578181015183820152602001612438565b83811115610d7c5750506000910152565b600181811c9082168061247557607f821691505b6020821081141561249657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124b0576124b06124cb565b5060010190565b6000826124c6576124c66124e1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092257600080fdfea26469706673582212206f80eeb86114e5175a7eb333d75dfb343de6726ae59a20cd803795f2fe34b61b64736f6c63430008040033