Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,168 ODYC
Holders
604
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 ODYCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OkayDoodlesYachtClub
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-28 */ // SPDX-License-Identifier: MIT // Okay Doodles Yacht Club contract: /* uint256 public price = 0 ether; uint256 public priceAfterFreeMint = 0.002 ether; uint256 public maxPerTx = 5; uint256 public maxPerWallet = 10; uint256 public totalFree = 5000; uint256 public maxSupply = 10000; */ pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/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 making 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; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/okaydoodlesyachtclub.sol pragma solidity >=0.8.9 <0.9.0; contract OkayDoodlesYachtClub is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public uriPrefix; string public hiddenMetadataUri = "ipfs://QmYUWqud87f1E3mDr58fj7ES6sozkuSsWoz29dZ7hbEM1s"; uint256 public price = 0.002 ether; uint256 public maxPerTx = 5; uint256 public totalFree = 5000; //first 5000 free uint256 public maxSupply = 10000; uint256 public maxPerWallet = 10; bool public paused = true; bool public revealed = false; constructor() ERC721A("Okay Doodle Yacht Club", "ODYC") { } function mint(uint256 _mintAmount) external payable { uint256 cost = price; if (totalSupply() + _mintAmount < totalFree + 1) { cost = 0; } require(msg.value >= _mintAmount * cost, "Not enough ETH."); require(totalSupply() + _mintAmount < maxSupply + 1, "No more supply"); require(!paused, "Minting is not live yet, hold on."); require(_mintAmount < maxPerTx + 1, "Max per TX reached."); require( _numberMinted(msg.sender) + _mintAmount <= maxPerWallet, "Too many per wallet!" ); _safeMint(msg.sender, _mintAmount); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ''; } function setFreeAmount(uint256 amount) external onlyOwner { totalFree = amount; } function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner { maxPerWallet = _maxPerWallet; } function setMaxPerTx(uint256 _maxPerTx) public onlyOwner { maxPerTx = _maxPerTx; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function ownerAirdrop(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function withdraw() public onlyOwner nonReentrant { (bool hs, ) = payable(0x68934c69245CBE6E157859D23Fc6766c59ED28F9).call{value: address(this).balance * 5 / 100}(''); require(hs); (bool ts, ) = payable(0x49Ba7bdDb1d1037532c5f9499c687DacD45f1Fe5).call{value: address(this).balance * 15 / 100}(''); require(ts); (bool bs, ) = payable(0x63857e02BabAE9f323F19C9eE60b11204B87646A).call{value: address(this).balance * 25 / 100}(''); require(bs); (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"ownerAirdrop","outputs":[],"stateMutability":"nonpayable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526035608081815290620021b460a03980516200002991600b916020909101906200014e565b5066071afd498d0000600c556005600d55611388600e55612710600f55600a6010556011805461ffff191660011790553480156200006657600080fd5b50604080518082018252601681527f4f6b617920446f6f646c6520596163687420436c7562000000000000000000006020808301918252835180850190945260048452634f44594360e01b908401528151919291620000c8916002916200014e565b508051620000de9060039060208401906200014e565b5050600160005550620000f133620000fc565b600160095562000230565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015c90620001f4565b90600052602060002090601f016020900481019282620001805760008555620001cb565b82601f106200019b57805160ff1916838001178555620001cb565b82800160010185558215620001cb579182015b82811115620001cb578251825591602001919060010190620001ae565b50620001d9929150620001dd565b5090565b5b80821115620001d95760008155600101620001de565b600181811c908216806200020957607f821691505b6020821081036200022a57634e487b7160e01b600052602260045260246000fd5b50919050565b611f7480620002406000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063a45ba8e7116100ab578063e0a808531161006f578063e0a80853146105e2578063e268e4d314610602578063e985e9c514610622578063f2fde38b1461066b578063f968adbe1461068b57600080fd5b8063a45ba8e714610557578063b88d4fde1461056c578063c6f6f2161461058c578063c87b56dd146105ac578063d5abeb01146105cc57600080fd5b806392910eec116100f257806392910eec146104d957806395d89b41146104f9578063a035b1fe1461050e578063a0712d6814610524578063a22cb4651461053757600080fd5b8063715018a6146104665780637ec4a6591461047b5780638da5cb5b1461049b57806391b7f5ed146104b957600080fd5b80633ccfd60b116101a65780635c975abb116101755780635c975abb146103d757806362b99ad4146103f15780636352211e146104065780636f8b44b01461042657806370a082311461044657600080fd5b80633ccfd60b1461036d57806342842e0e14610382578063453c2310146103a257806351830227146103b857600080fd5b806316c38b3c116101ed57806316c38b3c146102d057806318160ddd146102f057806323b872dd146103175780632cfee99014610337578063333e44e61461035757600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611a2b565b6106a1565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106f3565b60405161024b9190611aa0565b34801561028257600080fd5b50610296610291366004611ab3565b610785565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611ae8565b6107c9565b005b3480156102dc57600080fd5b506102ce6102eb366004611b22565b61089b565b3480156102fc57600080fd5b5060015460005403600019015b60405190815260200161024b565b34801561032357600080fd5b506102ce610332366004611b3d565b6108e1565b34801561034357600080fd5b506102ce610352366004611b79565b6108f1565b34801561036357600080fd5b50610309600e5481565b34801561037957600080fd5b506102ce610929565b34801561038e57600080fd5b506102ce61039d366004611b3d565b610b9d565b3480156103ae57600080fd5b5061030960105481565b3480156103c457600080fd5b5060115461023f90610100900460ff1681565b3480156103e357600080fd5b5060115461023f9060ff1681565b3480156103fd57600080fd5b50610269610bb8565b34801561041257600080fd5b50610296610421366004611ab3565b610c46565b34801561043257600080fd5b506102ce610441366004611ab3565b610c51565b34801561045257600080fd5b50610309610461366004611ba5565b610c80565b34801561047257600080fd5b506102ce610ccf565b34801561048757600080fd5b506102ce610496366004611c4c565b610d05565b3480156104a757600080fd5b506008546001600160a01b0316610296565b3480156104c557600080fd5b506102ce6104d4366004611ab3565b610d42565b3480156104e557600080fd5b506102ce6104f4366004611ab3565b610d71565b34801561050557600080fd5b50610269610da0565b34801561051a57600080fd5b50610309600c5481565b6102ce610532366004611ab3565b610daf565b34801561054357600080fd5b506102ce610552366004611c95565b610fbb565b34801561056357600080fd5b50610269611050565b34801561057857600080fd5b506102ce610587366004611cbf565b61105d565b34801561059857600080fd5b506102ce6105a7366004611ab3565b6110a7565b3480156105b857600080fd5b506102696105c7366004611ab3565b6110d6565b3480156105d857600080fd5b50610309600f5481565b3480156105ee57600080fd5b506102ce6105fd366004611b22565b611247565b34801561060e57600080fd5b506102ce61061d366004611ab3565b61128b565b34801561062e57600080fd5b5061023f61063d366004611d3b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561067757600080fd5b506102ce610686366004611ba5565b6112ba565b34801561069757600080fd5b50610309600d5481565b60006301ffc9a760e01b6001600160e01b0319831614806106d257506380ac58cd60e01b6001600160e01b03198316145b806106ed5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461070290611d65565b80601f016020809104026020016040519081016040528092919081815260200182805461072e90611d65565b801561077b5780601f106107505761010080835404028352916020019161077b565b820191906000526020600020905b81548152906001019060200180831161075e57829003601f168201915b5050505050905090565b600061079082611355565b6107ad576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107d48261138a565b9050806001600160a01b0316836001600160a01b0316036108085760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461083f57610822813361063d565b61083f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146108ce5760405162461bcd60e51b81526004016108c590611d9f565b60405180910390fd5b6011805460ff1916911515919091179055565b6108ec8383836113f9565b505050565b6008546001600160a01b0316331461091b5760405162461bcd60e51b81526004016108c590611d9f565b61092581836115a0565b5050565b6008546001600160a01b031633146109535760405162461bcd60e51b81526004016108c590611d9f565b6002600954036109a55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c5565b600260095560007368934c69245cbe6e157859d23fc6766c59ed28f960646109ce476005611dea565b6109d89190611e1f565b604051600081818185875af1925050503d8060008114610a14576040519150601f19603f3d011682016040523d82523d6000602084013e610a19565b606091505b5050905080610a2757600080fd5b60007349ba7bddb1d1037532c5f9499c687dacd45f1fe56064610a4b47600f611dea565b610a559190611e1f565b604051600081818185875af1925050503d8060008114610a91576040519150601f19603f3d011682016040523d82523d6000602084013e610a96565b606091505b5050905080610aa457600080fd5b60007363857e02babae9f323f19c9ee60b11204b87646a6064610ac8476019611dea565b610ad29190611e1f565b604051600081818185875af1925050503d8060008114610b0e576040519150601f19603f3d011682016040523d82523d6000602084013e610b13565b606091505b5050905080610b2157600080fd5b6000610b356008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b7f576040519150601f19603f3d011682016040523d82523d6000602084013e610b84565b606091505b5050905080610b9257600080fd5b505060016009555050565b6108ec8383836040518060200160405280600081525061105d565b600a8054610bc590611d65565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf190611d65565b8015610c3e5780601f10610c1357610100808354040283529160200191610c3e565b820191906000526020600020905b815481529060010190602001808311610c2157829003601f168201915b505050505081565b60006106ed8261138a565b6008546001600160a01b03163314610c7b5760405162461bcd60e51b81526004016108c590611d9f565b600f55565b60006001600160a01b038216610ca9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cf95760405162461bcd60e51b81526004016108c590611d9f565b610d0360006115ba565b565b6008546001600160a01b03163314610d2f5760405162461bcd60e51b81526004016108c590611d9f565b805161092590600a90602084019061197c565b6008546001600160a01b03163314610d6c5760405162461bcd60e51b81526004016108c590611d9f565b600c55565b6008546001600160a01b03163314610d9b5760405162461bcd60e51b81526004016108c590611d9f565b600e55565b60606003805461070290611d65565b600c54600e54610dc0906001611e33565b6001546000548491900360001901610dd89190611e33565b1015610de2575060005b610dec8183611dea565b341015610e2d5760405162461bcd60e51b815260206004820152600f60248201526e2737ba1032b737bab3b41022aa241760891b60448201526064016108c5565b600f54610e3b906001611e33565b6001546000548491900360001901610e539190611e33565b10610e915760405162461bcd60e51b815260206004820152600e60248201526d4e6f206d6f726520737570706c7960901b60448201526064016108c5565b60115460ff1615610eee5760405162461bcd60e51b815260206004820152602160248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e6044820152601760f91b60648201526084016108c5565b600d54610efc906001611e33565b8210610f405760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108c5565b60105433600090815260056020526040908190205484911c67ffffffffffffffff16610f6c9190611e33565b1115610fb15760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b60448201526064016108c5565b61092533836115a0565b336001600160a01b03831603610fe45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610bc590611d65565b6110688484846113f9565b6001600160a01b0383163b156110a1576110848484848461160c565b6110a1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110d15760405162461bcd60e51b81526004016108c590611d9f565b600d55565b60606110e182611355565b6111455760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c5565b601154610100900460ff1615156000036111eb57600b805461116690611d65565b80601f016020809104026020016040519081016040528092919081815260200182805461119290611d65565b80156111df5780601f106111b4576101008083540402835291602001916111df565b820191906000526020600020905b8154815290600101906020018083116111c257829003601f168201915b50505050509050919050565b60006111f56116f8565b905060008151116112155760405180602001604052806000815250611240565b8061121f84611707565b604051602001611230929190611e4b565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112715760405162461bcd60e51b81526004016108c590611d9f565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146112b55760405162461bcd60e51b81526004016108c590611d9f565b601055565b6008546001600160a01b031633146112e45760405162461bcd60e51b81526004016108c590611d9f565b6001600160a01b0381166113495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c5565b611352816115ba565b50565b600081600111158015611369575060005482105b80156106ed575050600090815260046020526040902054600160e01b161590565b600081806001116113e0576000548110156113e05760008181526004602052604081205490600160e01b821690036113de575b806000036112405750600019016000818152600460205260409020546113bd565b505b604051636f96cda160e11b815260040160405180910390fd5b60006114048261138a565b9050836001600160a01b0316816001600160a01b0316146114375760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114555750611455853361063d565b8061147057503361146584610785565b6001600160a01b0316145b90508061149057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114b757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611558576001830160008181526004602052604081205490036115565760005481146115565760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610925828260405180602001604052806000815250611808565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611641903390899088908890600401611e8a565b6020604051808303816000875af192505050801561167c575060408051601f3d908101601f1916820190925261167991810190611ec7565b60015b6116da573d8080156116aa576040519150601f19603f3d011682016040523d82523d6000602084013e6116af565b606091505b5080516000036116d2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461070290611d65565b60608160000361172e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611758578061174281611ee4565b91506117519050600a83611e1f565b9150611732565b60008167ffffffffffffffff81111561177357611773611bc0565b6040519080825280601f01601f19166020018201604052801561179d576020820181803683370190505b5090505b84156116f0576117b2600183611efd565b91506117bf600a86611f14565b6117ca906030611e33565b60f81b8183815181106117df576117df611f28565b60200101906001600160f81b031916908160001a905350611801600a86611e1f565b94506117a1565b6000546001600160a01b03841661183157604051622e076360e81b815260040160405180910390fd5b826000036118525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611927575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118f0600087848060010195508761160c565b61190d576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118a557826000541461192257600080fd5b61196c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611928575b5060009081556110a19085838684565b82805461198890611d65565b90600052602060002090601f0160209004810192826119aa57600085556119f0565b82601f106119c357805160ff19168380011785556119f0565b828001600101855582156119f0579182015b828111156119f05782518255916020019190600101906119d5565b506119fc929150611a00565b5090565b5b808211156119fc5760008155600101611a01565b6001600160e01b03198116811461135257600080fd5b600060208284031215611a3d57600080fd5b813561124081611a15565b60005b83811015611a63578181015183820152602001611a4b565b838111156110a15750506000910152565b60008151808452611a8c816020860160208601611a48565b601f01601f19169290920160200192915050565b6020815260006112406020830184611a74565b600060208284031215611ac557600080fd5b5035919050565b80356001600160a01b0381168114611ae357600080fd5b919050565b60008060408385031215611afb57600080fd5b611b0483611acc565b946020939093013593505050565b80358015158114611ae357600080fd5b600060208284031215611b3457600080fd5b61124082611b12565b600080600060608486031215611b5257600080fd5b611b5b84611acc565b9250611b6960208501611acc565b9150604084013590509250925092565b60008060408385031215611b8c57600080fd5b82359150611b9c60208401611acc565b90509250929050565b600060208284031215611bb757600080fd5b61124082611acc565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bf157611bf1611bc0565b604051601f8501601f19908116603f01168101908282118183101715611c1957611c19611bc0565b81604052809350858152868686011115611c3257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c5e57600080fd5b813567ffffffffffffffff811115611c7557600080fd5b8201601f81018413611c8657600080fd5b6116f084823560208401611bd6565b60008060408385031215611ca857600080fd5b611cb183611acc565b9150611b9c60208401611b12565b60008060008060808587031215611cd557600080fd5b611cde85611acc565b9350611cec60208601611acc565b925060408501359150606085013567ffffffffffffffff811115611d0f57600080fd5b8501601f81018713611d2057600080fd5b611d2f87823560208401611bd6565b91505092959194509250565b60008060408385031215611d4e57600080fd5b611d5783611acc565b9150611b9c60208401611acc565b600181811c90821680611d7957607f821691505b602082108103611d9957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611e0457611e04611dd4565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e2e57611e2e611e09565b500490565b60008219821115611e4657611e46611dd4565b500190565b60008351611e5d818460208801611a48565b835190830190611e71818360208801611a48565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ebd90830184611a74565b9695505050505050565b600060208284031215611ed957600080fd5b815161124081611a15565b600060018201611ef657611ef6611dd4565b5060010190565b600082821015611f0f57611f0f611dd4565b500390565b600082611f2357611f23611e09565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b32fdbe5f3330feb49c2f2bd61ac388ebfcc5194986032e9bd69b900499871df64736f6c634300080e0033697066733a2f2f516d5955577175643837663145336d44723538666a37455336736f7a6b755373576f7a3239645a376862454d3173
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063715018a611610123578063a45ba8e7116100ab578063e0a808531161006f578063e0a80853146105e2578063e268e4d314610602578063e985e9c514610622578063f2fde38b1461066b578063f968adbe1461068b57600080fd5b8063a45ba8e714610557578063b88d4fde1461056c578063c6f6f2161461058c578063c87b56dd146105ac578063d5abeb01146105cc57600080fd5b806392910eec116100f257806392910eec146104d957806395d89b41146104f9578063a035b1fe1461050e578063a0712d6814610524578063a22cb4651461053757600080fd5b8063715018a6146104665780637ec4a6591461047b5780638da5cb5b1461049b57806391b7f5ed146104b957600080fd5b80633ccfd60b116101a65780635c975abb116101755780635c975abb146103d757806362b99ad4146103f15780636352211e146104065780636f8b44b01461042657806370a082311461044657600080fd5b80633ccfd60b1461036d57806342842e0e14610382578063453c2310146103a257806351830227146103b857600080fd5b806316c38b3c116101ed57806316c38b3c146102d057806318160ddd146102f057806323b872dd146103175780632cfee99014610337578063333e44e61461035757600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611a2b565b6106a1565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106f3565b60405161024b9190611aa0565b34801561028257600080fd5b50610296610291366004611ab3565b610785565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611ae8565b6107c9565b005b3480156102dc57600080fd5b506102ce6102eb366004611b22565b61089b565b3480156102fc57600080fd5b5060015460005403600019015b60405190815260200161024b565b34801561032357600080fd5b506102ce610332366004611b3d565b6108e1565b34801561034357600080fd5b506102ce610352366004611b79565b6108f1565b34801561036357600080fd5b50610309600e5481565b34801561037957600080fd5b506102ce610929565b34801561038e57600080fd5b506102ce61039d366004611b3d565b610b9d565b3480156103ae57600080fd5b5061030960105481565b3480156103c457600080fd5b5060115461023f90610100900460ff1681565b3480156103e357600080fd5b5060115461023f9060ff1681565b3480156103fd57600080fd5b50610269610bb8565b34801561041257600080fd5b50610296610421366004611ab3565b610c46565b34801561043257600080fd5b506102ce610441366004611ab3565b610c51565b34801561045257600080fd5b50610309610461366004611ba5565b610c80565b34801561047257600080fd5b506102ce610ccf565b34801561048757600080fd5b506102ce610496366004611c4c565b610d05565b3480156104a757600080fd5b506008546001600160a01b0316610296565b3480156104c557600080fd5b506102ce6104d4366004611ab3565b610d42565b3480156104e557600080fd5b506102ce6104f4366004611ab3565b610d71565b34801561050557600080fd5b50610269610da0565b34801561051a57600080fd5b50610309600c5481565b6102ce610532366004611ab3565b610daf565b34801561054357600080fd5b506102ce610552366004611c95565b610fbb565b34801561056357600080fd5b50610269611050565b34801561057857600080fd5b506102ce610587366004611cbf565b61105d565b34801561059857600080fd5b506102ce6105a7366004611ab3565b6110a7565b3480156105b857600080fd5b506102696105c7366004611ab3565b6110d6565b3480156105d857600080fd5b50610309600f5481565b3480156105ee57600080fd5b506102ce6105fd366004611b22565b611247565b34801561060e57600080fd5b506102ce61061d366004611ab3565b61128b565b34801561062e57600080fd5b5061023f61063d366004611d3b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561067757600080fd5b506102ce610686366004611ba5565b6112ba565b34801561069757600080fd5b50610309600d5481565b60006301ffc9a760e01b6001600160e01b0319831614806106d257506380ac58cd60e01b6001600160e01b03198316145b806106ed5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461070290611d65565b80601f016020809104026020016040519081016040528092919081815260200182805461072e90611d65565b801561077b5780601f106107505761010080835404028352916020019161077b565b820191906000526020600020905b81548152906001019060200180831161075e57829003601f168201915b5050505050905090565b600061079082611355565b6107ad576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107d48261138a565b9050806001600160a01b0316836001600160a01b0316036108085760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461083f57610822813361063d565b61083f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146108ce5760405162461bcd60e51b81526004016108c590611d9f565b60405180910390fd5b6011805460ff1916911515919091179055565b6108ec8383836113f9565b505050565b6008546001600160a01b0316331461091b5760405162461bcd60e51b81526004016108c590611d9f565b61092581836115a0565b5050565b6008546001600160a01b031633146109535760405162461bcd60e51b81526004016108c590611d9f565b6002600954036109a55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c5565b600260095560007368934c69245cbe6e157859d23fc6766c59ed28f960646109ce476005611dea565b6109d89190611e1f565b604051600081818185875af1925050503d8060008114610a14576040519150601f19603f3d011682016040523d82523d6000602084013e610a19565b606091505b5050905080610a2757600080fd5b60007349ba7bddb1d1037532c5f9499c687dacd45f1fe56064610a4b47600f611dea565b610a559190611e1f565b604051600081818185875af1925050503d8060008114610a91576040519150601f19603f3d011682016040523d82523d6000602084013e610a96565b606091505b5050905080610aa457600080fd5b60007363857e02babae9f323f19c9ee60b11204b87646a6064610ac8476019611dea565b610ad29190611e1f565b604051600081818185875af1925050503d8060008114610b0e576040519150601f19603f3d011682016040523d82523d6000602084013e610b13565b606091505b5050905080610b2157600080fd5b6000610b356008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b7f576040519150601f19603f3d011682016040523d82523d6000602084013e610b84565b606091505b5050905080610b9257600080fd5b505060016009555050565b6108ec8383836040518060200160405280600081525061105d565b600a8054610bc590611d65565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf190611d65565b8015610c3e5780601f10610c1357610100808354040283529160200191610c3e565b820191906000526020600020905b815481529060010190602001808311610c2157829003601f168201915b505050505081565b60006106ed8261138a565b6008546001600160a01b03163314610c7b5760405162461bcd60e51b81526004016108c590611d9f565b600f55565b60006001600160a01b038216610ca9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cf95760405162461bcd60e51b81526004016108c590611d9f565b610d0360006115ba565b565b6008546001600160a01b03163314610d2f5760405162461bcd60e51b81526004016108c590611d9f565b805161092590600a90602084019061197c565b6008546001600160a01b03163314610d6c5760405162461bcd60e51b81526004016108c590611d9f565b600c55565b6008546001600160a01b03163314610d9b5760405162461bcd60e51b81526004016108c590611d9f565b600e55565b60606003805461070290611d65565b600c54600e54610dc0906001611e33565b6001546000548491900360001901610dd89190611e33565b1015610de2575060005b610dec8183611dea565b341015610e2d5760405162461bcd60e51b815260206004820152600f60248201526e2737ba1032b737bab3b41022aa241760891b60448201526064016108c5565b600f54610e3b906001611e33565b6001546000548491900360001901610e539190611e33565b10610e915760405162461bcd60e51b815260206004820152600e60248201526d4e6f206d6f726520737570706c7960901b60448201526064016108c5565b60115460ff1615610eee5760405162461bcd60e51b815260206004820152602160248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e6044820152601760f91b60648201526084016108c5565b600d54610efc906001611e33565b8210610f405760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108c5565b60105433600090815260056020526040908190205484911c67ffffffffffffffff16610f6c9190611e33565b1115610fb15760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b60448201526064016108c5565b61092533836115a0565b336001600160a01b03831603610fe45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610bc590611d65565b6110688484846113f9565b6001600160a01b0383163b156110a1576110848484848461160c565b6110a1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110d15760405162461bcd60e51b81526004016108c590611d9f565b600d55565b60606110e182611355565b6111455760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c5565b601154610100900460ff1615156000036111eb57600b805461116690611d65565b80601f016020809104026020016040519081016040528092919081815260200182805461119290611d65565b80156111df5780601f106111b4576101008083540402835291602001916111df565b820191906000526020600020905b8154815290600101906020018083116111c257829003601f168201915b50505050509050919050565b60006111f56116f8565b905060008151116112155760405180602001604052806000815250611240565b8061121f84611707565b604051602001611230929190611e4b565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112715760405162461bcd60e51b81526004016108c590611d9f565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146112b55760405162461bcd60e51b81526004016108c590611d9f565b601055565b6008546001600160a01b031633146112e45760405162461bcd60e51b81526004016108c590611d9f565b6001600160a01b0381166113495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c5565b611352816115ba565b50565b600081600111158015611369575060005482105b80156106ed575050600090815260046020526040902054600160e01b161590565b600081806001116113e0576000548110156113e05760008181526004602052604081205490600160e01b821690036113de575b806000036112405750600019016000818152600460205260409020546113bd565b505b604051636f96cda160e11b815260040160405180910390fd5b60006114048261138a565b9050836001600160a01b0316816001600160a01b0316146114375760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114555750611455853361063d565b8061147057503361146584610785565b6001600160a01b0316145b90508061149057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114b757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611558576001830160008181526004602052604081205490036115565760005481146115565760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610925828260405180602001604052806000815250611808565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611641903390899088908890600401611e8a565b6020604051808303816000875af192505050801561167c575060408051601f3d908101601f1916820190925261167991810190611ec7565b60015b6116da573d8080156116aa576040519150601f19603f3d011682016040523d82523d6000602084013e6116af565b606091505b5080516000036116d2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461070290611d65565b60608160000361172e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611758578061174281611ee4565b91506117519050600a83611e1f565b9150611732565b60008167ffffffffffffffff81111561177357611773611bc0565b6040519080825280601f01601f19166020018201604052801561179d576020820181803683370190505b5090505b84156116f0576117b2600183611efd565b91506117bf600a86611f14565b6117ca906030611e33565b60f81b8183815181106117df576117df611f28565b60200101906001600160f81b031916908160001a905350611801600a86611e1f565b94506117a1565b6000546001600160a01b03841661183157604051622e076360e81b815260040160405180910390fd5b826000036118525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611927575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118f0600087848060010195508761160c565b61190d576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118a557826000541461192257600080fd5b61196c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611928575b5060009081556110a19085838684565b82805461198890611d65565b90600052602060002090601f0160209004810192826119aa57600085556119f0565b82601f106119c357805160ff19168380011785556119f0565b828001600101855582156119f0579182015b828111156119f05782518255916020019190600101906119d5565b506119fc929150611a00565b5090565b5b808211156119fc5760008155600101611a01565b6001600160e01b03198116811461135257600080fd5b600060208284031215611a3d57600080fd5b813561124081611a15565b60005b83811015611a63578181015183820152602001611a4b565b838111156110a15750506000910152565b60008151808452611a8c816020860160208601611a48565b601f01601f19169290920160200192915050565b6020815260006112406020830184611a74565b600060208284031215611ac557600080fd5b5035919050565b80356001600160a01b0381168114611ae357600080fd5b919050565b60008060408385031215611afb57600080fd5b611b0483611acc565b946020939093013593505050565b80358015158114611ae357600080fd5b600060208284031215611b3457600080fd5b61124082611b12565b600080600060608486031215611b5257600080fd5b611b5b84611acc565b9250611b6960208501611acc565b9150604084013590509250925092565b60008060408385031215611b8c57600080fd5b82359150611b9c60208401611acc565b90509250929050565b600060208284031215611bb757600080fd5b61124082611acc565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bf157611bf1611bc0565b604051601f8501601f19908116603f01168101908282118183101715611c1957611c19611bc0565b81604052809350858152868686011115611c3257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c5e57600080fd5b813567ffffffffffffffff811115611c7557600080fd5b8201601f81018413611c8657600080fd5b6116f084823560208401611bd6565b60008060408385031215611ca857600080fd5b611cb183611acc565b9150611b9c60208401611b12565b60008060008060808587031215611cd557600080fd5b611cde85611acc565b9350611cec60208601611acc565b925060408501359150606085013567ffffffffffffffff811115611d0f57600080fd5b8501601f81018713611d2057600080fd5b611d2f87823560208401611bd6565b91505092959194509250565b60008060408385031215611d4e57600080fd5b611d5783611acc565b9150611b9c60208401611acc565b600181811c90821680611d7957607f821691505b602082108103611d9957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611e0457611e04611dd4565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e2e57611e2e611e09565b500490565b60008219821115611e4657611e46611dd4565b500190565b60008351611e5d818460208801611a48565b835190830190611e71818360208801611a48565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ebd90830184611a74565b9695505050505050565b600060208284031215611ed957600080fd5b815161124081611a15565b600060018201611ef657611ef6611dd4565b5060010190565b600082821015611f0f57611f0f611dd4565b500390565b600082611f2357611f23611e09565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b32fdbe5f3330feb49c2f2bd61ac388ebfcc5194986032e9bd69b900499871df64736f6c634300080e0033
Deployed Bytecode Sourcemap
46966:3500:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21598:615;;;;;;;;;;-1:-1:-1;21598:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21598:615:0;;;;;;;;26611:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28679:204::-;;;;;;;;;;-1:-1:-1;28679:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28679:204:0;1528:203:1;28139:474:0;;;;;;;;;;-1:-1:-1;28139:474:0;;;;;:::i;:::-;;:::i;:::-;;49463:83;;;;;;;;;;-1:-1:-1;49463:83:0;;;;;:::i;:::-;;:::i;20652:315::-;;;;;;;;;;-1:-1:-1;49764:1:0;20918:12;20705:7;20902:13;:28;-1:-1:-1;;20902:46:0;20652:315;;;2669:25:1;;;2657:2;2642:18;20652:315:0;2523:177:1;29565:170:0;;;;;;;;;;-1:-1:-1;29565:170:0;;;;;:::i;:::-;;:::i;49222:131::-;;;;;;;;;;-1:-1:-1;49222:131:0;;;;;:::i;:::-;;:::i;47277:31::-;;;;;;;;;;;;;;;;49870:593;;;;;;;;;;;;;:::i;29806:185::-;;;;;;;;;;-1:-1:-1;29806:185:0;;;;;:::i;:::-;;:::i;47372:32::-;;;;;;;;;;;;;;;;47443:28;;;;;;;;;;-1:-1:-1;47443:28:0;;;;;;;;;;;47411:25;;;;;;;;;;-1:-1:-1;47411:25:0;;;;;;;;47076:23;;;;;;;;;;;;;:::i;26400:144::-;;;;;;;;;;-1:-1:-1;26400:144:0;;;;;:::i;:::-;;:::i;49114:100::-;;;;;;;;;;-1:-1:-1;49114:100:0;;;;;:::i;:::-;;:::i;22277:224::-;;;;;;;;;;-1:-1:-1;22277:224:0;;;;;:::i;:::-;;:::i;7708:103::-;;;;;;;;;;;;;:::i;49558:106::-;;;;;;;;;;-1:-1:-1;49558:106:0;;;;;:::i;:::-;;:::i;7057:87::-;;;;;;;;;;-1:-1:-1;7130:6:0;;-1:-1:-1;;;;;7130:6:0;7057:87;;49363:92;;;;;;;;;;-1:-1:-1;49363:92:0;;;;;:::i;:::-;;:::i;48781:95::-;;;;;;;;;;-1:-1:-1;48781:95:0;;;;;:::i;:::-;;:::i;26780:104::-;;;;;;;;;;;;;:::i;47202:34::-;;;;;;;;;;;;;;;;47552:654;;;;;;:::i;:::-;;:::i;28955:308::-;;;;;;;;;;-1:-1:-1;28955:308:0;;;;;:::i;:::-;;:::i;47106:89::-;;;;;;;;;;;;;:::i;30062:396::-;;;;;;;;;;-1:-1:-1;30062:396:0;;;;;:::i;:::-;;:::i;49010:96::-;;;;;;;;;;-1:-1:-1;49010:96:0;;;;;:::i;:::-;;:::i;48330:443::-;;;;;;;;;;-1:-1:-1;48330:443:0;;;;;:::i;:::-;;:::i;47333:32::-;;;;;;;;;;;;;;;;49781:81;;;;;;;;;;-1:-1:-1;49781:81:0;;;;;:::i;:::-;;:::i;48884:114::-;;;;;;;;;;-1:-1:-1;48884:114:0;;;;;:::i;:::-;;:::i;29334:164::-;;;;;;;;;;-1:-1:-1;29334:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29455:25:0;;;29431:4;29455:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29334:164;7966:201;;;;;;;;;;-1:-1:-1;7966:201:0;;;;;:::i;:::-;;:::i;47243:27::-;;;;;;;;;;;;;;;;21598:615;21683:4;-1:-1:-1;;;;;;;;;21983:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22060:25:0;;;21983:102;:179;;;-1:-1:-1;;;;;;;;;;22137:25:0;;;21983:179;21963:199;21598:615;-1:-1:-1;;21598:615:0:o;26611:100::-;26665:13;26698:5;26691:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26611:100;:::o;28679:204::-;28747:7;28772:16;28780:7;28772;:16::i;:::-;28767:64;;28797:34;;-1:-1:-1;;;28797:34:0;;;;;;;;;;;28767:64;-1:-1:-1;28851:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28851:24:0;;28679:204::o;28139:474::-;28212:13;28244:27;28263:7;28244:18;:27::i;:::-;28212:61;;28294:5;-1:-1:-1;;;;;28288:11:0;:2;-1:-1:-1;;;;;28288:11:0;;28284:48;;28308:24;;-1:-1:-1;;;28308:24:0;;;;;;;;;;;28284:48;44782:10;-1:-1:-1;;;;;28349:28:0;;;28345:175;;28397:44;28414:5;44782:10;29334:164;:::i;28397:44::-;28392:128;;28469:35;;-1:-1:-1;;;28469:35:0;;;;;;;;;;;28392:128;28532:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28532:29:0;-1:-1:-1;;;;;28532:29:0;;;;;;;;;28577:28;;28532:24;;28577:28;;;;;;;28201:412;28139:474;;:::o;49463:83::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;;;;;;;;;49523:6:::1;:15:::0;;-1:-1:-1;;49523:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49463:83::o;29565:170::-;29699:28;29709:4;29715:2;29719:7;29699:9;:28::i;:::-;29565:170;;;:::o;49222:131::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;49312:33:::1;49322:9;49333:11;49312:9;:33::i;:::-;49222:131:::0;;:::o;49870:593::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;4155:1:::1;4753:7;;:19:::0;4745:63:::1;;;::::0;-1:-1:-1;;;4745:63:0;;6857:2:1;4745:63:0::1;::::0;::::1;6839:21:1::0;6896:2;6876:18;;;6869:30;6935:33;6915:18;;;6908:61;6986:18;;4745:63:0::1;6655:355:1::0;4745:63:0::1;4155:1;4886:7;:18:::0;49930:7:::2;49951:42;50035:3;50007:25;:21;50031:1;50007:25;:::i;:::-;:31;;;;:::i;:::-;49943:100;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49929:114;;;50060:2;50052:11;;;::::0;::::2;;50073:7;50094:42;50179:3;50150:26;:21;50174:2;50150:26;:::i;:::-;:32;;;;:::i;:::-;50086:101;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50072:115;;;50204:2;50196:11;;;::::0;::::2;;50217:7;50238:42;50323:3;50294:26;:21;50318:2;50294:26;:::i;:::-;:32;;;;:::i;:::-;50230:101;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50216:115;;;50348:2;50340:11;;;::::0;::::2;;50361:7;50382;7130:6:::0;;-1:-1:-1;;;;;7130:6:0;;7057:87;50382:7:::2;-1:-1:-1::0;;;;;50374:21:0::2;50403;50374:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50360:69;;;50446:2;50438:11;;;::::0;::::2;;-1:-1:-1::0;;4111:1:0::1;5065:7;:22:::0;-1:-1:-1;;49870:593:0:o;29806:185::-;29944:39;29961:4;29967:2;29971:7;29944:39;;;;;;;;;;;;:16;:39::i;47076:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26400:144::-;26464:7;26507:27;26526:7;26507:18;:27::i;49114:100::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;49184:9:::1;:22:::0;49114:100::o;22277:224::-;22341:7;-1:-1:-1;;;;;22365:19:0;;22361:60;;22393:28;;-1:-1:-1;;;22393:28:0;;;;;;;;;;;22361:60;-1:-1:-1;;;;;;22439:25:0;;;;;:18;:25;;;;;;17616:13;22439:54;;22277:224::o;7708:103::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;7773:30:::1;7800:1;7773:18;:30::i;:::-;7708:103::o:0;49558:106::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;49634:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;49363:92::-:0;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;49430:5:::1;:17:::0;49363:92::o;48781:95::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;48850:9:::1;:18:::0;48781:95::o;26780:104::-;26836:13;26869:7;26862:14;;;;;:::i;47552:654::-;47630:5;;47680:9;;:13;;47692:1;47680:13;:::i;:::-;49764:1;20918:12;20705:7;20902:13;47666:11;;20902:28;;-1:-1:-1;;20902:46:0;47650:27;;;;:::i;:::-;:43;47646:84;;;-1:-1:-1;47717:1:0;47646:84;47763:18;47777:4;47763:11;:18;:::i;:::-;47750:9;:31;;47742:59;;;;-1:-1:-1;;;47742:59:0;;8122:2:1;47742:59:0;;;8104:21:1;8161:2;8141:18;;;8134:30;-1:-1:-1;;;8180:18:1;;;8173:45;8235:18;;47742:59:0;7920:339:1;47742:59:0;47850:9;;:13;;47862:1;47850:13;:::i;:::-;49764:1;20918:12;20705:7;20902:13;47836:11;;20902:28;;-1:-1:-1;;20902:46:0;47820:27;;;;:::i;:::-;:43;47812:70;;;;-1:-1:-1;;;47812:70:0;;8466:2:1;47812:70:0;;;8448:21:1;8505:2;8485:18;;;8478:30;-1:-1:-1;;;8524:18:1;;;8517:44;8578:18;;47812:70:0;8264:338:1;47812:70:0;47902:6;;;;47901:7;47893:53;;;;-1:-1:-1;;;47893:53:0;;8809:2:1;47893:53:0;;;8791:21:1;8848:2;8828:18;;;8821:30;8887:34;8867:18;;;8860:62;-1:-1:-1;;;8938:18:1;;;8931:31;8979:19;;47893:53:0;8607:397:1;47893:53:0;47979:8;;:12;;47990:1;47979:12;:::i;:::-;47965:11;:26;47957:58;;;;-1:-1:-1;;;47957:58:0;;9211:2:1;47957:58:0;;;9193:21:1;9250:2;9230:18;;;9223:30;-1:-1:-1;;;9269:18:1;;;9262:49;9328:18;;47957:58:0;9009:343:1;47957:58:0;48091:12;;48062:10;22644:7;22672:25;;;:18;:25;;17753:2;22672:25;;;;;48076:11;;22672:49;17616:13;22671:80;48048:39;;;;:::i;:::-;:55;;48026:125;;;;-1:-1:-1;;;48026:125:0;;9559:2:1;48026:125:0;;;9541:21:1;9598:2;9578:18;;;9571:30;-1:-1:-1;;;9617:18:1;;;9610:50;9677:18;;48026:125:0;9357:344:1;48026:125:0;48164:34;48174:10;48186:11;48164:9;:34::i;28955:308::-;44782:10;-1:-1:-1;;;;;29054:31:0;;;29050:61;;29094:17;;-1:-1:-1;;;29094:17:0;;;;;;;;;;;29050:61;44782:10;29124:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29124:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29124:60:0;;;;;;;;;;29200:55;;540:41:1;;;29124:49:0;;44782:10;29200:55;;513:18:1;29200:55:0;;;;;;;28955:308;;:::o;47106:89::-;;;;;;;:::i;30062:396::-;30229:28;30239:4;30245:2;30249:7;30229:9;:28::i;:::-;-1:-1:-1;;;;;30272:14:0;;;:19;30268:183;;30311:56;30342:4;30348:2;30352:7;30361:5;30311:30;:56::i;:::-;30306:145;;30395:40;;-1:-1:-1;;;30395:40:0;;;;;;;;;;;30306:145;30062:396;;;;:::o;49010:96::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;49078:8:::1;:20:::0;49010:96::o;48330:443::-;48404:13;48434:17;48442:8;48434:7;:17::i;:::-;48426:77;;;;-1:-1:-1;;;48426:77:0;;9908:2:1;48426:77:0;;;9890:21:1;9947:2;9927:18;;;9920:30;9986:34;9966:18;;;9959:62;-1:-1:-1;;;10037:18:1;;;10030:45;10092:19;;48426:77:0;9706:411:1;48426:77:0;48516:8;;;;;;;:17;;48528:5;48516:17;48512:64;;48551:17;48544:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48330:443;;;:::o;48512:64::-;48584:28;48615:10;:8;:10::i;:::-;48584:41;;48670:1;48645:14;48639:28;:32;:128;;;;;;;;;;;;;;;;;48707:14;48723:19;:8;:17;:19::i;:::-;48690:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48639:128;48632:135;48330:443;-1:-1:-1;;;48330:443:0:o;49781:81::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;49839:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;49839:17:0;;::::1;::::0;;;::::1;::::0;;49781:81::o;48884:114::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;48962:12:::1;:28:::0;48884:114::o;7966:201::-;7130:6;;-1:-1:-1;;;;;7130:6:0;44782:10;7277:23;7269:68;;;;-1:-1:-1;;;7269:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8055:22:0;::::1;8047:73;;;::::0;-1:-1:-1;;;8047:73:0;;10966:2:1;8047:73:0::1;::::0;::::1;10948:21:1::0;11005:2;10985:18;;;10978:30;11044:34;11024:18;;;11017:62;-1:-1:-1;;;11095:18:1;;;11088:36;11141:19;;8047:73:0::1;10764:402:1::0;8047:73:0::1;8131:28;8150:8;8131:18;:28::i;:::-;7966:201:::0;:::o;30713:273::-;30770:4;30826:7;49764:1;30807:26;;:66;;;;;30860:13;;30850:7;:23;30807:66;:152;;;;-1:-1:-1;;30911:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30911:43:0;:48;;30713:273::o;23915:1129::-;23982:7;24017;;49764:1;24066:23;24062:915;;24119:13;;24112:4;:20;24108:869;;;24157:14;24174:23;;;:17;:23;;;;;;;-1:-1:-1;;;24263:23:0;;:28;;24259:699;;24782:113;24789:6;24799:1;24789:11;24782:113;;-1:-1:-1;;;24860:6:0;24842:25;;;;:17;:25;;;;;;24782:113;;24259:699;24134:843;24108:869;25005:31;;-1:-1:-1;;;25005:31:0;;;;;;;;;;;35952:2515;36067:27;36097;36116:7;36097:18;:27::i;:::-;36067:57;;36182:4;-1:-1:-1;;;;;36141:45:0;36157:19;-1:-1:-1;;;;;36141:45:0;;36137:86;;36195:28;;-1:-1:-1;;;36195:28:0;;;;;;;;;;;36137:86;36236:22;44782:10;-1:-1:-1;;;;;36262:27:0;;;;:87;;-1:-1:-1;36306:43:0;36323:4;44782:10;29334:164;:::i;36306:43::-;36262:147;;;-1:-1:-1;44782:10:0;36366:20;36378:7;36366:11;:20::i;:::-;-1:-1:-1;;;;;36366:43:0;;36262:147;36236:174;;36428:17;36423:66;;36454:35;;-1:-1:-1;;;36454:35:0;;;;;;;;;;;36423:66;-1:-1:-1;;;;;36504:16:0;;36500:52;;36529:23;;-1:-1:-1;;;36529:23:0;;;;;;;;;;;36500:52;36681:24;;;;:15;:24;;;;;;;;36674:31;;-1:-1:-1;;;;;;36674:31:0;;;-1:-1:-1;;;;;37073:24:0;;;;;:18;:24;;;;;37071:26;;-1:-1:-1;;37071:26:0;;;37142:22;;;;;;;37140:24;;-1:-1:-1;37140:24:0;;;37435:26;;;:17;:26;;;;;-1:-1:-1;;;37523:15:0;18270:3;37523:41;37481:84;;:128;;37435:174;;;37729:46;;:51;;37725:626;;37833:1;37823:11;;37801:19;37956:30;;;:17;:30;;;;;;:35;;37952:384;;38094:13;;38079:11;:28;38075:242;;38241:30;;;;:17;:30;;;;;:52;;;38075:242;37782:569;37725:626;38398:7;38394:2;-1:-1:-1;;;;;38379:27:0;38388:4;-1:-1:-1;;;;;38379:27:0;;;;;;;;;;;36056:2411;;35952:2515;;;:::o;31070:104::-;31139:27;31149:2;31153:8;31139:27;;;;;;;;;;;;:9;:27::i;8327:191::-;8420:6;;;-1:-1:-1;;;;;8437:17:0;;;-1:-1:-1;;;;;;8437:17:0;;;;;;;8470:40;;8420:6;;;8437:17;8420:6;;8470:40;;8401:16;;8470:40;8390:128;8327:191;:::o;42164:716::-;42348:88;;-1:-1:-1;;;42348:88:0;;42327:4;;-1:-1:-1;;;;;42348:45:0;;;;;:88;;44782:10;;42415:4;;42421:7;;42430:5;;42348:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42348:88:0;;;;;;;;-1:-1:-1;;42348:88:0;;;;;;;;;;;;:::i;:::-;;;42344:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42631:6;:13;42648:1;42631:18;42627:235;;42677:40;;-1:-1:-1;;;42677:40:0;;;;;;;;;;;42627:235;42820:6;42814:13;42805:6;42801:2;42797:15;42790:38;42344:529;-1:-1:-1;;;;;;42507:64:0;-1:-1:-1;;;42507:64:0;;-1:-1:-1;42344:529:0;42164:716;;;;;;:::o;48214:110::-;48274:13;48307:9;48300:16;;;;;:::i;584:723::-;640:13;861:5;870:1;861:10;857:53;;-1:-1:-1;;888:10:0;;;;;;;;;;;;-1:-1:-1;;;888:10:0;;;;;584:723::o;857:53::-;935:5;920:12;976:78;983:9;;976:78;;1009:8;;;;:::i;:::-;;-1:-1:-1;1032:10:0;;-1:-1:-1;1040:2:0;1032:10;;:::i;:::-;;;976:78;;;1064:19;1096:6;1086:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1086:17:0;;1064:39;;1114:154;1121:10;;1114:154;;1148:11;1158:1;1148:11;;:::i;:::-;;-1:-1:-1;1217:10:0;1225:2;1217:5;:10;:::i;:::-;1204:24;;:2;:24;:::i;:::-;1191:39;;1174:6;1181;1174:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1174:56:0;;;;;;;;-1:-1:-1;1245:11:0;1254:2;1245:11;;:::i;:::-;;;1114:154;;31547:2236;31670:20;31693:13;-1:-1:-1;;;;;31721:16:0;;31717:48;;31746:19;;-1:-1:-1;;;31746:19:0;;;;;;;;;;;31717:48;31780:8;31792:1;31780:13;31776:44;;31802:18;;-1:-1:-1;;;31802:18:0;;;;;;;;;;;31776:44;-1:-1:-1;;;;;32369:22:0;;;;;;:18;:22;;;;17753:2;32369:22;;;:70;;32407:31;32395:44;;32369:70;;;32682:31;;;:17;:31;;;;;32775:15;18270:3;32775:41;32733:84;;-1:-1:-1;32853:13:0;;18533:3;32838:56;32733:162;32682:213;;:31;;32976:23;;;;33020:14;:19;33016:635;;33060:313;33091:38;;33116:12;;-1:-1:-1;;;;;33091:38:0;;;33108:1;;33091:38;;33108:1;;33091:38;33157:69;33196:1;33200:2;33204:14;;;;;;33220:5;33157:30;:69::i;:::-;33152:174;;33262:40;;-1:-1:-1;;;33262:40:0;;;;;;;;;;;33152:174;33368:3;33353:12;:18;33060:313;;33454:12;33437:13;;:29;33433:43;;33468:8;;;33433:43;33016:635;;;33517:119;33548:40;;33573:14;;;;;-1:-1:-1;;;;;33548:40:0;;;33565:1;;33548:40;;33565:1;;33548:40;33631:3;33616:12;:18;33517:119;;33016:635;-1:-1:-1;33665:13:0;:28;;;33715:60;;33748:2;33752:12;33766:8;33715:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:160::-;2238:20;;2294:13;;2287:21;2277:32;;2267:60;;2323:1;2320;2313:12;2338:180;2394:6;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:26;2502:9;2486:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:254::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;3219:9;3206:23;3196:33;;3248:38;3282:2;3271:9;3267:18;3248:38;:::i;:::-;3238:48;;3038:254;;;;;:::o;3297:186::-;3356:6;3409:2;3397:9;3388:7;3384:23;3380:32;3377:52;;;3425:1;3422;3415:12;3377:52;3448:29;3467:9;3448:29;:::i;3488:127::-;3549:10;3544:3;3540:20;3537:1;3530:31;3580:4;3577:1;3570:15;3604:4;3601:1;3594:15;3620:632;3685:5;3715:18;3756:2;3748:6;3745:14;3742:40;;;3762:18;;:::i;:::-;3837:2;3831:9;3805:2;3891:15;;-1:-1:-1;;3887:24:1;;;3913:2;3883:33;3879:42;3867:55;;;3937:18;;;3957:22;;;3934:46;3931:72;;;3983:18;;:::i;:::-;4023:10;4019:2;4012:22;4052:6;4043:15;;4082:6;4074;4067:22;4122:3;4113:6;4108:3;4104:16;4101:25;4098:45;;;4139:1;4136;4129:12;4098:45;4189:6;4184:3;4177:4;4169:6;4165:17;4152:44;4244:1;4237:4;4228:6;4220;4216:19;4212:30;4205:41;;;;3620:632;;;;;:::o;4257:451::-;4326:6;4379:2;4367:9;4358:7;4354:23;4350:32;4347:52;;;4395:1;4392;4385:12;4347:52;4435:9;4422:23;4468:18;4460:6;4457:30;4454:50;;;4500:1;4497;4490:12;4454:50;4523:22;;4576:4;4568:13;;4564:27;-1:-1:-1;4554:55:1;;4605:1;4602;4595:12;4554:55;4628:74;4694:7;4689:2;4676:16;4671:2;4667;4663:11;4628:74;:::i;4713:254::-;4778:6;4786;4839:2;4827:9;4818:7;4814:23;4810:32;4807:52;;;4855:1;4852;4845:12;4807:52;4878:29;4897:9;4878:29;:::i;:::-;4868:39;;4926:35;4957:2;4946:9;4942:18;4926:35;:::i;4972:667::-;5067:6;5075;5083;5091;5144:3;5132:9;5123:7;5119:23;5115:33;5112:53;;;5161:1;5158;5151:12;5112:53;5184:29;5203:9;5184:29;:::i;:::-;5174:39;;5232:38;5266:2;5255:9;5251:18;5232:38;:::i;:::-;5222:48;;5317:2;5306:9;5302:18;5289:32;5279:42;;5372:2;5361:9;5357:18;5344:32;5399:18;5391:6;5388:30;5385:50;;;5431:1;5428;5421:12;5385:50;5454:22;;5507:4;5499:13;;5495:27;-1:-1:-1;5485:55:1;;5536:1;5533;5526:12;5485:55;5559:74;5625:7;5620:2;5607:16;5602:2;5598;5594:11;5559:74;:::i;:::-;5549:84;;;4972:667;;;;;;;:::o;5644:260::-;5712:6;5720;5773:2;5761:9;5752:7;5748:23;5744:32;5741:52;;;5789:1;5786;5779:12;5741:52;5812:29;5831:9;5812:29;:::i;:::-;5802:39;;5860:38;5894:2;5883:9;5879:18;5860:38;:::i;5909:380::-;5988:1;5984:12;;;;6031;;;6052:61;;6106:4;6098:6;6094:17;6084:27;;6052:61;6159:2;6151:6;6148:14;6128:18;6125:38;6122:161;;6205:10;6200:3;6196:20;6193:1;6186:31;6240:4;6237:1;6230:15;6268:4;6265:1;6258:15;6122:161;;5909:380;;;:::o;6294:356::-;6496:2;6478:21;;;6515:18;;;6508:30;6574:34;6569:2;6554:18;;6547:62;6641:2;6626:18;;6294:356::o;7015:127::-;7076:10;7071:3;7067:20;7064:1;7057:31;7107:4;7104:1;7097:15;7131:4;7128:1;7121:15;7147:168;7187:7;7253:1;7249;7245:6;7241:14;7238:1;7235:21;7230:1;7223:9;7216:17;7212:45;7209:71;;;7260:18;;:::i;:::-;-1:-1:-1;7300:9:1;;7147:168::o;7320:127::-;7381:10;7376:3;7372:20;7369:1;7362:31;7412:4;7409:1;7402:15;7436:4;7433:1;7426:15;7452:120;7492:1;7518;7508:35;;7523:18;;:::i;:::-;-1:-1:-1;7557:9:1;;7452:120::o;7787:128::-;7827:3;7858:1;7854:6;7851:1;7848:13;7845:39;;;7864:18;;:::i;:::-;-1:-1:-1;7900:9:1;;7787:128::o;10122:637::-;10402:3;10440:6;10434:13;10456:53;10502:6;10497:3;10490:4;10482:6;10478:17;10456:53;:::i;:::-;10572:13;;10531:16;;;;10594:57;10572:13;10531:16;10628:4;10616:17;;10594:57;:::i;:::-;-1:-1:-1;;;10673:20:1;;10702:22;;;10751:1;10740:13;;10122:637;-1:-1:-1;;;;10122:637:1:o;11171:489::-;-1:-1:-1;;;;;11440:15:1;;;11422:34;;11492:15;;11487:2;11472:18;;11465:43;11539:2;11524:18;;11517:34;;;11587:3;11582:2;11567:18;;11560:31;;;11365:4;;11608:46;;11634:19;;11626:6;11608:46;:::i;:::-;11600:54;11171:489;-1:-1:-1;;;;;;11171:489:1:o;11665:249::-;11734:6;11787:2;11775:9;11766:7;11762:23;11758:32;11755:52;;;11803:1;11800;11793:12;11755:52;11835:9;11829:16;11854:30;11878:5;11854:30;:::i;11919:135::-;11958:3;11979:17;;;11976:43;;11999:18;;:::i;:::-;-1:-1:-1;12046:1:1;12035:13;;11919:135::o;12059:125::-;12099:4;12127:1;12124;12121:8;12118:34;;;12132:18;;:::i;:::-;-1:-1:-1;12169:9:1;;12059:125::o;12189:112::-;12221:1;12247;12237:35;;12252:18;;:::i;:::-;-1:-1:-1;12286:9:1;;12189:112::o;12306:127::-;12367:10;12362:3;12358:20;12355:1;12348:31;12398:4;12395:1;12388:15;12422:4;12419:1;12412:15
Swarm Source
ipfs://b32fdbe5f3330feb49c2f2bd61ac388ebfcc5194986032e9bd69b900499871df
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.