ERC-721
Overview
Max Total Supply
1,346 0XBYC
Holders
113
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 0XBYCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BearsYachtClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-23 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // 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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * 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(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ 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(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) 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 && !_ownerships[tokenId].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 { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/BearsYachtClub.sol pragma solidity ^0.8.4; contract BearsYachtClub is ERC721A, Ownable{ string public baseURI; uint256 constant public MAX_SUPPLY = 7777; uint256 constant public MAX_BUY_PER_ADDRESS = 15; uint256 constant public MAX_PER_TX = 15; uint256 constant public PRICE = 0.01 ether; bool public isPublicSaleActive = false; bool public isFreeMintActive = true; uint256 public freeMax = 1000; string public contractURIString = "https://0xbearsyachtclub.com/contract"; uint256 public totalSupplyFree; uint256 public totalSupplyPublic; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); } //////// Internal functions // Override start token id to set to 1 function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _baseURI() internal view override returns (string memory) { return baseURI; } //////// External functions function mint(uint256 _amount) external payable publicSaleActive { require(tx.origin == msg.sender, "No contract minting"); require(_amount <= MAX_PER_TX, "Too many mints per tx"); require(totalSupplyPublic + _amount <= MAX_SUPPLY, "Not enough mints left"); uint256 userMintsTotal = _numberMinted(msg.sender); if (msg.sender != owner()) { if (!isFreeMintActive) { uint256 price = PRICE; checkValue(price * _amount); totalSupplyPublic += _amount; } else { require(totalSupplyFree + _amount <= freeMax, "Not enough free mints left"); require(userMintsTotal + _amount <= MAX_BUY_PER_ADDRESS, "Max mint limit"); totalSupplyFree += _amount; } } else if (isFreeMintActive) { totalSupplyFree += _amount; } _safeMint(msg.sender, _amount); } //////// Public View functions function contractURI() public view returns (string memory) { return contractURIString; } function numberMinted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } //////// Private functions function checkValue(uint256 price) private { if (msg.value > price) { (bool succ, ) = payable(msg.sender).call{ value: (msg.value - price) }(""); require(succ, "Transfer failed"); } else if (msg.value < price) { revert("Not enough ETH sent"); } } //////// Owner functions function setFreeMintActive(bool _state) public onlyOwner { isFreeMintActive = _state; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setContractURI(string memory _contractURI) public onlyOwner { contractURIString = _contractURI; } function setFreeMintMax(uint256 _freeMintMax) external onlyOwner { freeMax = _freeMintMax; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool succ,) = payable(msg.sender).call{ value: balance }(""); require(succ, "transfer failed"); } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner{ isPublicSaleActive = _isPublicSaleActive; } //////// Modifiers modifier publicSaleActive() { require(isPublicSaleActive, "Public sale is not open"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":[],"name":"MAX_BUY_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURIString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintMax","type":"uint256"}],"name":"setFreeMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPublic","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600a805461ffff19166101001790556103e8600b5560e060405260256080818152906200242560a03980516200003e91600c916020909101906200018f565b503480156200004c57600080fd5b506040516200244a3803806200244a8339810160408190526200006f91620002ec565b825183908390620000889060029060208501906200018f565b5080516200009e9060039060208401906200018f565b5050600160005550620000b133620000c5565b620000bc8162000117565b505050620003d0565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200018b9060099060208401906200018f565b5050565b8280546200019d906200037d565b90600052602060002090601f016020900481019282620001c157600085556200020c565b82601f10620001dc57805160ff19168380011785556200020c565b828001600101855582156200020c579182015b828111156200020c578251825591602001919060010190620001ef565b506200021a9291506200021e565b5090565b5b808211156200021a57600081556001016200021f565b600082601f8301126200024757600080fd5b81516001600160401b0380821115620002645762000264620003ba565b604051601f8301601f19908116603f011681019082821181831017156200028f576200028f620003ba565b81604052838152602092508683858801011115620002ac57600080fd5b600091505b83821015620002d05785820183015181830184015290820190620002b1565b83821115620002e25760008385830101525b9695505050505050565b6000806000606084860312156200030257600080fd5b83516001600160401b03808211156200031a57600080fd5b620003288783880162000235565b945060208601519150808211156200033f57600080fd5b6200034d8783880162000235565b935060408601519150808211156200036457600080fd5b50620003738682870162000235565b9150509250925092565b600181811c908216806200039257607f821691505b60208210811415620003b457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61204580620003e06000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063a0712d68116100ab578063dc33e6811161006f578063dc33e6811461060a578063e8a3d4851461062a578063e985e9c51461063f578063f2fde38b14610688578063f43a22dc146104e957600080fd5b8063a0712d6814610581578063a22cb46514610594578063b8586187146105b4578063b88d4fde146105ca578063c87b56dd146105ea57600080fd5b80637e41d835116100f25780637e41d835146104fe5780638d859f3e146105135780638da5cb5b1461052e578063938e3d7b1461054c57806395d89b411461056c57600080fd5b8063715018a61461049557806378930f91146104aa5780637a5b85c1146104ca5780637d06c7c6146104e957600080fd5b806332cb6b0c116101b157806355f804b31161017557806355f804b31461040a5780635ae2f02b1461042a5780636352211e146104405780636c0360eb1461046057806370a082311461047557600080fd5b806332cb6b0c146103725780633ccfd60b1461038857806342842e0e1461039d578063438b6300146103bd5780634f9b563c146103ea57600080fd5b806318160ddd116101f857806318160ddd146102db5780631e23696f146103025780631e84c4131461031857806323b872dd1461033257806328cad13d1461035257600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611cea565b6106a8565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106fa565b6040516102569190611e61565b34801561028d57600080fd5b506102a161029c366004611d6c565b61078c565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611ca5565b6107d0565b005b3480156102e757600080fd5b5060015460005403600019015b604051908152602001610256565b34801561030e57600080fd5b506102f4600e5481565b34801561032457600080fd5b50600a5461024a9060ff1681565b34801561033e57600080fd5b506102d961034d366004611bc4565b610857565b34801561035e57600080fd5b506102d961036d366004611ccf565b610862565b34801561037e57600080fd5b506102f4611e6181565b34801561039457600080fd5b506102d96108a8565b3480156103a957600080fd5b506102d96103b8366004611bc4565b610962565b3480156103c957600080fd5b506103dd6103d8366004611b76565b61097d565b6040516102569190611e1d565b3480156103f657600080fd5b506102d9610405366004611ccf565b610a5d565b34801561041657600080fd5b506102d9610425366004611d24565b610aa1565b34801561043657600080fd5b506102f4600d5481565b34801561044c57600080fd5b506102a161045b366004611d6c565b610ade565b34801561046c57600080fd5b50610274610af0565b34801561048157600080fd5b506102f4610490366004611b76565b610b7e565b3480156104a157600080fd5b506102d9610bcc565b3480156104b657600080fd5b506102d96104c5366004611d6c565b610c02565b3480156104d657600080fd5b50600a5461024a90610100900460ff1681565b3480156104f557600080fd5b506102f4600f81565b34801561050a57600080fd5b50610274610c31565b34801561051f57600080fd5b506102f4662386f26fc1000081565b34801561053a57600080fd5b506008546001600160a01b03166102a1565b34801561055857600080fd5b506102d9610567366004611d24565b610c3e565b34801561057857600080fd5b50610274610c7b565b6102d961058f366004611d6c565b610c8a565b3480156105a057600080fd5b506102d96105af366004611c7b565b610f4d565b3480156105c057600080fd5b506102f4600b5481565b3480156105d657600080fd5b506102d96105e5366004611c00565b610fe3565b3480156105f657600080fd5b50610274610605366004611d6c565b61102d565b34801561061657600080fd5b506102f4610625366004611b76565b6110b2565b34801561063657600080fd5b506102746110e0565b34801561064b57600080fd5b5061024a61065a366004611b91565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069457600080fd5b506102d96106a3366004611b76565b6110ef565b60006001600160e01b031982166380ac58cd60e01b14806106d957506001600160e01b03198216635b5e139f60e01b145b806106f457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461070990611f37565b80601f016020809104026020016040519081016040528092919081815260200182805461073590611f37565b80156107825780601f1061075757610100808354040283529160200191610782565b820191906000526020600020905b81548152906001019060200180831161076557829003601f168201915b5050505050905090565b60006107978261118a565b6107b4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107db82610ade565b9050806001600160a01b0316836001600160a01b031614156108105760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108475761082a813361065a565b610847576040516367d9dca160e11b815260040160405180910390fd5b6108528383836111c3565b505050565b61085283838361121f565b6008546001600160a01b031633146108955760405162461bcd60e51b815260040161088c90611e74565b60405180910390fd5b600a805460ff1916911515919091179055565b6008546001600160a01b031633146108d25760405162461bcd60e51b815260040161088c90611e74565b6040514790600090339083908381818185875af1925050503d8060008114610916576040519150601f19603f3d011682016040523d82523d6000602084013e61091b565b606091505b505090508061095e5760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015260640161088c565b5050565b61085283838360405180602001604052806000815250610fe3565b6060600061098a83610b7e565b90506000816001600160401b038111156109a6576109a6611fe3565b6040519080825280602002602001820160405280156109cf578160200160208202803683370190505b509050600160005b83811080156109e85750611e618211155b15610a535760006109f883610ade565b9050866001600160a01b0316816001600160a01b03161415610a405782848381518110610a2757610a27611fcd565b602090810291909101015281610a3c81611f72565b9250505b82610a4a81611f72565b935050506109d7565b5090949350505050565b6008546001600160a01b03163314610a875760405162461bcd60e51b815260040161088c90611e74565b600a80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610acb5760405162461bcd60e51b815260040161088c90611e74565b805161095e906009906020840190611a3c565b6000610ae98261140c565b5192915050565b60098054610afd90611f37565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2990611f37565b8015610b765780601f10610b4b57610100808354040283529160200191610b76565b820191906000526020600020905b815481529060010190602001808311610b5957829003601f168201915b505050505081565b60006001600160a01b038216610ba7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610bf65760405162461bcd60e51b815260040161088c90611e74565b610c00600061152e565b565b6008546001600160a01b03163314610c2c5760405162461bcd60e51b815260040161088c90611e74565b600b55565b600c8054610afd90611f37565b6008546001600160a01b03163314610c685760405162461bcd60e51b815260040161088c90611e74565b805161095e90600c906020840190611a3c565b60606003805461070990611f37565b600a5460ff16610cdc5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604482015260640161088c565b323314610d215760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e7472616374206d696e74696e6760681b604482015260640161088c565b600f811115610d6a5760405162461bcd60e51b81526020600482015260156024820152740a8dede40dac2dcf240dad2dce8e640e0cae440e8f605b1b604482015260640161088c565b611e6181600e54610d7b9190611ea9565b1115610dc15760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604482015260640161088c565b33600090815260056020526040812054600160401b90046001600160401b03169050610df56008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610f1b57600a54610100900460ff16610e5457662386f26fc10000610e36610e318483611ed5565b611580565b82600e6000828254610e489190611ea9565b90915550610f43915050565b600b5482600d54610e659190611ea9565b1115610eb35760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f7567682066726565206d696e7473206c656674000000000000604482015260640161088c565b600f610ebf8383611ea9565b1115610efe5760405162461bcd60e51b815260206004820152600e60248201526d13585e081b5a5b9d081b1a5b5a5d60921b604482015260640161088c565b81600d6000828254610f109190611ea9565b90915550610f439050565b600a54610100900460ff1615610f435781600d6000828254610f3d9190611ea9565b90915550505b61095e338361165f565b6001600160a01b038216331415610f775760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fee84848461121f565b6001600160a01b0383163b156110275761100a84848484611679565b611027576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110388261118a565b61105557604051630a14c4b560e41b815260040160405180910390fd5b600061105f611771565b905080516000141561108057604051806020016040528060008152506110ab565b8061108a84611780565b60405160200161109b929190611db1565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b03166106f4565b6060600c805461070990611f37565b6008546001600160a01b031633146111195760405162461bcd60e51b815260040161088c90611e74565b6001600160a01b03811661117e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b6111878161152e565b50565b60008160011115801561119e575060005482105b80156106f4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061122a8261140c565b9050836001600160a01b031681600001516001600160a01b0316146112615760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061127f575061127f853361065a565b8061129a57503361128f8461078c565b6001600160a01b0316145b9050806112ba57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112e157604051633a954ecd60e21b815260040160405180910390fd5b6112ed600084876111c3565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166113c15760005482146113c157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116115155760005481101561151557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906115135780516001600160a01b0316156114aa579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561150e579392505050565b6114aa565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80341115611619576000336115958334611ef4565b604051600081818185875af1925050503d80600081146115d1576040519150601f19603f3d011682016040523d82523d6000602084013e6115d6565b606091505b505090508061095e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015260640161088c565b803410156111875760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b604482015260640161088c565b61095e82826040518060200160405280600081525061187d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116ae903390899088908890600401611de0565b602060405180830381600087803b1580156116c857600080fd5b505af19250505080156116f8575060408051601f3d908101601f191682019092526116f591810190611d07565b60015b611753573d808015611726576040519150601f19603f3d011682016040523d82523d6000602084013e61172b565b606091505b50805161174b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461070990611f37565b6060816117a45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117ce57806117b881611f72565b91506117c79050600a83611ec1565b91506117a8565b6000816001600160401b038111156117e8576117e8611fe3565b6040519080825280601f01601f191660200182016040528015611812576020820181803683370190505b5090505b841561176957611827600183611ef4565b9150611834600a86611f8d565b61183f906030611ea9565b60f81b81838151811061185457611854611fcd565b60200101906001600160f81b031916908160001a905350611876600a86611ec1565b9450611816565b6000546001600160a01b0384166118a657604051622e076360e81b815260040160405180910390fd5b826118c45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156119e7575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119b06000878480600101955087611679565b6119cd576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119655782600054146119e257600080fd5b611a2c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119e8575b5060009081556110279085838684565b828054611a4890611f37565b90600052602060002090601f016020900481019282611a6a5760008555611ab0565b82601f10611a8357805160ff1916838001178555611ab0565b82800160010185558215611ab0579182015b82811115611ab0578251825591602001919060010190611a95565b50611abc929150611ac0565b5090565b5b80821115611abc5760008155600101611ac1565b60006001600160401b0380841115611aef57611aef611fe3565b604051601f8501601f19908116603f01168101908282118183101715611b1757611b17611fe3565b81604052809350858152868686011115611b3057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b6157600080fd5b919050565b80358015158114611b6157600080fd5b600060208284031215611b8857600080fd5b6110ab82611b4a565b60008060408385031215611ba457600080fd5b611bad83611b4a565b9150611bbb60208401611b4a565b90509250929050565b600080600060608486031215611bd957600080fd5b611be284611b4a565b9250611bf060208501611b4a565b9150604084013590509250925092565b60008060008060808587031215611c1657600080fd5b611c1f85611b4a565b9350611c2d60208601611b4a565b92506040850135915060608501356001600160401b03811115611c4f57600080fd5b8501601f81018713611c6057600080fd5b611c6f87823560208401611ad5565b91505092959194509250565b60008060408385031215611c8e57600080fd5b611c9783611b4a565b9150611bbb60208401611b66565b60008060408385031215611cb857600080fd5b611cc183611b4a565b946020939093013593505050565b600060208284031215611ce157600080fd5b6110ab82611b66565b600060208284031215611cfc57600080fd5b81356110ab81611ff9565b600060208284031215611d1957600080fd5b81516110ab81611ff9565b600060208284031215611d3657600080fd5b81356001600160401b03811115611d4c57600080fd5b8201601f81018413611d5d57600080fd5b61176984823560208401611ad5565b600060208284031215611d7e57600080fd5b5035919050565b60008151808452611d9d816020860160208601611f0b565b601f01601f19169290920160200192915050565b60008351611dc3818460208801611f0b565b835190830190611dd7818360208801611f0b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e1390830184611d85565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e5557835183529284019291840191600101611e39565b50909695505050505050565b6020815260006110ab6020830184611d85565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ebc57611ebc611fa1565b500190565b600082611ed057611ed0611fb7565b500490565b6000816000190483118215151615611eef57611eef611fa1565b500290565b600082821015611f0657611f06611fa1565b500390565b60005b83811015611f26578181015183820152602001611f0e565b838111156110275750506000910152565b600181811c90821680611f4b57607f821691505b60208210811415611f6c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f8657611f86611fa1565b5060010190565b600082611f9c57611f9c611fb7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461118757600080fdfea2646970667358221220077772e4a800f924701ad7e815cb6a5953ae1e5c4535208999b908b5d77d3dcd64736f6c6343000807003368747470733a2f2f307862656172737961636874636c75622e636f6d2f636f6e7472616374000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000123078426561727320596163687420436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000530584259430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006697066732f2f0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c8063715018a611610123578063a0712d68116100ab578063dc33e6811161006f578063dc33e6811461060a578063e8a3d4851461062a578063e985e9c51461063f578063f2fde38b14610688578063f43a22dc146104e957600080fd5b8063a0712d6814610581578063a22cb46514610594578063b8586187146105b4578063b88d4fde146105ca578063c87b56dd146105ea57600080fd5b80637e41d835116100f25780637e41d835146104fe5780638d859f3e146105135780638da5cb5b1461052e578063938e3d7b1461054c57806395d89b411461056c57600080fd5b8063715018a61461049557806378930f91146104aa5780637a5b85c1146104ca5780637d06c7c6146104e957600080fd5b806332cb6b0c116101b157806355f804b31161017557806355f804b31461040a5780635ae2f02b1461042a5780636352211e146104405780636c0360eb1461046057806370a082311461047557600080fd5b806332cb6b0c146103725780633ccfd60b1461038857806342842e0e1461039d578063438b6300146103bd5780634f9b563c146103ea57600080fd5b806318160ddd116101f857806318160ddd146102db5780631e23696f146103025780631e84c4131461031857806323b872dd1461033257806328cad13d1461035257600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611cea565b6106a8565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106fa565b6040516102569190611e61565b34801561028d57600080fd5b506102a161029c366004611d6c565b61078c565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611ca5565b6107d0565b005b3480156102e757600080fd5b5060015460005403600019015b604051908152602001610256565b34801561030e57600080fd5b506102f4600e5481565b34801561032457600080fd5b50600a5461024a9060ff1681565b34801561033e57600080fd5b506102d961034d366004611bc4565b610857565b34801561035e57600080fd5b506102d961036d366004611ccf565b610862565b34801561037e57600080fd5b506102f4611e6181565b34801561039457600080fd5b506102d96108a8565b3480156103a957600080fd5b506102d96103b8366004611bc4565b610962565b3480156103c957600080fd5b506103dd6103d8366004611b76565b61097d565b6040516102569190611e1d565b3480156103f657600080fd5b506102d9610405366004611ccf565b610a5d565b34801561041657600080fd5b506102d9610425366004611d24565b610aa1565b34801561043657600080fd5b506102f4600d5481565b34801561044c57600080fd5b506102a161045b366004611d6c565b610ade565b34801561046c57600080fd5b50610274610af0565b34801561048157600080fd5b506102f4610490366004611b76565b610b7e565b3480156104a157600080fd5b506102d9610bcc565b3480156104b657600080fd5b506102d96104c5366004611d6c565b610c02565b3480156104d657600080fd5b50600a5461024a90610100900460ff1681565b3480156104f557600080fd5b506102f4600f81565b34801561050a57600080fd5b50610274610c31565b34801561051f57600080fd5b506102f4662386f26fc1000081565b34801561053a57600080fd5b506008546001600160a01b03166102a1565b34801561055857600080fd5b506102d9610567366004611d24565b610c3e565b34801561057857600080fd5b50610274610c7b565b6102d961058f366004611d6c565b610c8a565b3480156105a057600080fd5b506102d96105af366004611c7b565b610f4d565b3480156105c057600080fd5b506102f4600b5481565b3480156105d657600080fd5b506102d96105e5366004611c00565b610fe3565b3480156105f657600080fd5b50610274610605366004611d6c565b61102d565b34801561061657600080fd5b506102f4610625366004611b76565b6110b2565b34801561063657600080fd5b506102746110e0565b34801561064b57600080fd5b5061024a61065a366004611b91565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069457600080fd5b506102d96106a3366004611b76565b6110ef565b60006001600160e01b031982166380ac58cd60e01b14806106d957506001600160e01b03198216635b5e139f60e01b145b806106f457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461070990611f37565b80601f016020809104026020016040519081016040528092919081815260200182805461073590611f37565b80156107825780601f1061075757610100808354040283529160200191610782565b820191906000526020600020905b81548152906001019060200180831161076557829003601f168201915b5050505050905090565b60006107978261118a565b6107b4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107db82610ade565b9050806001600160a01b0316836001600160a01b031614156108105760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108475761082a813361065a565b610847576040516367d9dca160e11b815260040160405180910390fd5b6108528383836111c3565b505050565b61085283838361121f565b6008546001600160a01b031633146108955760405162461bcd60e51b815260040161088c90611e74565b60405180910390fd5b600a805460ff1916911515919091179055565b6008546001600160a01b031633146108d25760405162461bcd60e51b815260040161088c90611e74565b6040514790600090339083908381818185875af1925050503d8060008114610916576040519150601f19603f3d011682016040523d82523d6000602084013e61091b565b606091505b505090508061095e5760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015260640161088c565b5050565b61085283838360405180602001604052806000815250610fe3565b6060600061098a83610b7e565b90506000816001600160401b038111156109a6576109a6611fe3565b6040519080825280602002602001820160405280156109cf578160200160208202803683370190505b509050600160005b83811080156109e85750611e618211155b15610a535760006109f883610ade565b9050866001600160a01b0316816001600160a01b03161415610a405782848381518110610a2757610a27611fcd565b602090810291909101015281610a3c81611f72565b9250505b82610a4a81611f72565b935050506109d7565b5090949350505050565b6008546001600160a01b03163314610a875760405162461bcd60e51b815260040161088c90611e74565b600a80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610acb5760405162461bcd60e51b815260040161088c90611e74565b805161095e906009906020840190611a3c565b6000610ae98261140c565b5192915050565b60098054610afd90611f37565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2990611f37565b8015610b765780601f10610b4b57610100808354040283529160200191610b76565b820191906000526020600020905b815481529060010190602001808311610b5957829003601f168201915b505050505081565b60006001600160a01b038216610ba7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610bf65760405162461bcd60e51b815260040161088c90611e74565b610c00600061152e565b565b6008546001600160a01b03163314610c2c5760405162461bcd60e51b815260040161088c90611e74565b600b55565b600c8054610afd90611f37565b6008546001600160a01b03163314610c685760405162461bcd60e51b815260040161088c90611e74565b805161095e90600c906020840190611a3c565b60606003805461070990611f37565b600a5460ff16610cdc5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604482015260640161088c565b323314610d215760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e7472616374206d696e74696e6760681b604482015260640161088c565b600f811115610d6a5760405162461bcd60e51b81526020600482015260156024820152740a8dede40dac2dcf240dad2dce8e640e0cae440e8f605b1b604482015260640161088c565b611e6181600e54610d7b9190611ea9565b1115610dc15760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604482015260640161088c565b33600090815260056020526040812054600160401b90046001600160401b03169050610df56008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610f1b57600a54610100900460ff16610e5457662386f26fc10000610e36610e318483611ed5565b611580565b82600e6000828254610e489190611ea9565b90915550610f43915050565b600b5482600d54610e659190611ea9565b1115610eb35760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f7567682066726565206d696e7473206c656674000000000000604482015260640161088c565b600f610ebf8383611ea9565b1115610efe5760405162461bcd60e51b815260206004820152600e60248201526d13585e081b5a5b9d081b1a5b5a5d60921b604482015260640161088c565b81600d6000828254610f109190611ea9565b90915550610f439050565b600a54610100900460ff1615610f435781600d6000828254610f3d9190611ea9565b90915550505b61095e338361165f565b6001600160a01b038216331415610f775760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fee84848461121f565b6001600160a01b0383163b156110275761100a84848484611679565b611027576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110388261118a565b61105557604051630a14c4b560e41b815260040160405180910390fd5b600061105f611771565b905080516000141561108057604051806020016040528060008152506110ab565b8061108a84611780565b60405160200161109b929190611db1565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b03166106f4565b6060600c805461070990611f37565b6008546001600160a01b031633146111195760405162461bcd60e51b815260040161088c90611e74565b6001600160a01b03811661117e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b6111878161152e565b50565b60008160011115801561119e575060005482105b80156106f4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061122a8261140c565b9050836001600160a01b031681600001516001600160a01b0316146112615760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061127f575061127f853361065a565b8061129a57503361128f8461078c565b6001600160a01b0316145b9050806112ba57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112e157604051633a954ecd60e21b815260040160405180910390fd5b6112ed600084876111c3565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166113c15760005482146113c157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116115155760005481101561151557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906115135780516001600160a01b0316156114aa579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561150e579392505050565b6114aa565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80341115611619576000336115958334611ef4565b604051600081818185875af1925050503d80600081146115d1576040519150601f19603f3d011682016040523d82523d6000602084013e6115d6565b606091505b505090508061095e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015260640161088c565b803410156111875760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b604482015260640161088c565b61095e82826040518060200160405280600081525061187d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116ae903390899088908890600401611de0565b602060405180830381600087803b1580156116c857600080fd5b505af19250505080156116f8575060408051601f3d908101601f191682019092526116f591810190611d07565b60015b611753573d808015611726576040519150601f19603f3d011682016040523d82523d6000602084013e61172b565b606091505b50805161174b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461070990611f37565b6060816117a45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117ce57806117b881611f72565b91506117c79050600a83611ec1565b91506117a8565b6000816001600160401b038111156117e8576117e8611fe3565b6040519080825280601f01601f191660200182016040528015611812576020820181803683370190505b5090505b841561176957611827600183611ef4565b9150611834600a86611f8d565b61183f906030611ea9565b60f81b81838151811061185457611854611fcd565b60200101906001600160f81b031916908160001a905350611876600a86611ec1565b9450611816565b6000546001600160a01b0384166118a657604051622e076360e81b815260040160405180910390fd5b826118c45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156119e7575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119b06000878480600101955087611679565b6119cd576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119655782600054146119e257600080fd5b611a2c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119e8575b5060009081556110279085838684565b828054611a4890611f37565b90600052602060002090601f016020900481019282611a6a5760008555611ab0565b82601f10611a8357805160ff1916838001178555611ab0565b82800160010185558215611ab0579182015b82811115611ab0578251825591602001919060010190611a95565b50611abc929150611ac0565b5090565b5b80821115611abc5760008155600101611ac1565b60006001600160401b0380841115611aef57611aef611fe3565b604051601f8501601f19908116603f01168101908282118183101715611b1757611b17611fe3565b81604052809350858152868686011115611b3057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b6157600080fd5b919050565b80358015158114611b6157600080fd5b600060208284031215611b8857600080fd5b6110ab82611b4a565b60008060408385031215611ba457600080fd5b611bad83611b4a565b9150611bbb60208401611b4a565b90509250929050565b600080600060608486031215611bd957600080fd5b611be284611b4a565b9250611bf060208501611b4a565b9150604084013590509250925092565b60008060008060808587031215611c1657600080fd5b611c1f85611b4a565b9350611c2d60208601611b4a565b92506040850135915060608501356001600160401b03811115611c4f57600080fd5b8501601f81018713611c6057600080fd5b611c6f87823560208401611ad5565b91505092959194509250565b60008060408385031215611c8e57600080fd5b611c9783611b4a565b9150611bbb60208401611b66565b60008060408385031215611cb857600080fd5b611cc183611b4a565b946020939093013593505050565b600060208284031215611ce157600080fd5b6110ab82611b66565b600060208284031215611cfc57600080fd5b81356110ab81611ff9565b600060208284031215611d1957600080fd5b81516110ab81611ff9565b600060208284031215611d3657600080fd5b81356001600160401b03811115611d4c57600080fd5b8201601f81018413611d5d57600080fd5b61176984823560208401611ad5565b600060208284031215611d7e57600080fd5b5035919050565b60008151808452611d9d816020860160208601611f0b565b601f01601f19169290920160200192915050565b60008351611dc3818460208801611f0b565b835190830190611dd7818360208801611f0b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e1390830184611d85565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e5557835183529284019291840191600101611e39565b50909695505050505050565b6020815260006110ab6020830184611d85565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ebc57611ebc611fa1565b500190565b600082611ed057611ed0611fb7565b500490565b6000816000190483118215151615611eef57611eef611fa1565b500290565b600082821015611f0657611f06611fa1565b500390565b60005b83811015611f26578181015183820152602001611f0e565b838111156110275750506000910152565b600181811c90821680611f4b57607f821691505b60208210811415611f6c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f8657611f86611fa1565b5060010190565b600082611f9c57611f9c611fb7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461118757600080fdfea2646970667358221220077772e4a800f924701ad7e815cb6a5953ae1e5c4535208999b908b5d77d3dcd64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000123078426561727320596163687420436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000530584259430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006697066732f2f0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): 0xBears Yacht Club
Arg [1] : _symbol (string): 0XBYC
Arg [2] : _initBaseURI (string): ipfs//
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 3078426561727320596163687420436c75620000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 3058425943000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 697066732f2f0000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47433:4406:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28545:305;;;;;;;;;;-1:-1:-1;28545:305:0;;;;;:::i;:::-;;:::i;:::-;;;6750:14:1;;6743:22;6725:41;;6713:2;6698:18;28545:305:0;;;;;;;;31660:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33164:204::-;;;;;;;;;;-1:-1:-1;33164:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5411:32:1;;;5393:51;;5381:2;5366:18;33164:204:0;5247:203:1;32726:372:0;;;;;;;;;;-1:-1:-1;32726:372:0;;;;;:::i;:::-;;:::i;:::-;;27785:312;;;;;;;;;;-1:-1:-1;48356:1:0;28048:12;27838:7;28032:13;:28;-1:-1:-1;;28032:46:0;27785:312;;;11049:25:1;;;11037:2;11022:18;27785:312:0;10903:177:1;47959:32:0;;;;;;;;;;;;;;;;47713:38;;;;;;;;;;-1:-1:-1;47713:38:0;;;;;;;;34029:170;;;;;;;;;;-1:-1:-1;34029:170:0;;;;;:::i;:::-;;:::i;51557:134::-;;;;;;;;;;-1:-1:-1;51557:134:0;;;;;:::i;:::-;;:::i;47513:41::-;;;;;;;;;;;;47550:4;47513:41;;51315:234;;;;;;;;;;;;;:::i;34270:185::-;;;;;;;;;;-1:-1:-1;34270:185:0;;;;;:::i;:::-;;:::i;49731:689::-;;;;;;;;;;-1:-1:-1;49731:689:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50853:100::-;;;;;;;;;;-1:-1:-1;50853:100:0;;;;;:::i;:::-;;:::i;50961:104::-;;;;;;;;;;-1:-1:-1;50961:104:0;;;;;:::i;:::-;;:::i;47922:30::-;;;;;;;;;;;;;;;;31468:125;;;;;;;;;;-1:-1:-1;31468:125:0;;;;;:::i;:::-;;:::i;47485:21::-;;;;;;;;;;;;;:::i;28914:206::-;;;;;;;;;;-1:-1:-1;28914:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;51201:106::-;;;;;;;;;;-1:-1:-1;51201:106:0;;;;;:::i;:::-;;:::i;47758:35::-;;;;;;;;;;-1:-1:-1;47758:35:0;;;;;;;;;;;47561:48;;;;;;;;;;;;47607:2;47561:48;;47840:73;;;;;;;;;;;;;:::i;47662:42::-;;;;;;;;;;;;47694:10;47662:42;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;51073:120;;;;;;;;;;-1:-1:-1;51073:120:0;;;;;:::i;:::-;;:::i;31829:104::-;;;;;;;;;;;;;:::i;48520:932::-;;;;;;:::i;:::-;;:::i;33440:287::-;;;;;;;;;;-1:-1:-1;33440:287:0;;;;;:::i;:::-;;:::i;47802:29::-;;;;;;;;;;;;;;;;34526:370;;;;;;;;;;-1:-1:-1;34526:370:0;;;;;:::i;:::-;;:::i;32004:318::-;;;;;;;;;;-1:-1:-1;32004:318:0;;;;;:::i;:::-;;:::i;49604:115::-;;;;;;;;;;-1:-1:-1;49604:115:0;;;;;:::i;:::-;;:::i;49494:102::-;;;;;;;;;;;;;:::i;33798:164::-;;;;;;;;;;-1:-1:-1;33798:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33919:25:0;;;33895:4;33919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33798:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;28545:305::-;28647:4;-1:-1:-1;;;;;;28684:40:0;;-1:-1:-1;;;28684:40:0;;:105;;-1:-1:-1;;;;;;;28741:48:0;;-1:-1:-1;;;28741:48:0;28684:105;:158;;;-1:-1:-1;;;;;;;;;;16995:40:0;;;28806:36;28664:178;28545:305;-1:-1:-1;;28545:305:0:o;31660:100::-;31714:13;31747:5;31740:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31660:100;:::o;33164:204::-;33232:7;33257:16;33265:7;33257;:16::i;:::-;33252:64;;33282:34;;-1:-1:-1;;;33282:34:0;;;;;;;;;;;33252:64;-1:-1:-1;33336:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33336:24:0;;33164:204::o;32726:372::-;32799:13;32815:24;32831:7;32815:15;:24::i;:::-;32799:40;;32860:5;-1:-1:-1;;;;;32854:11:0;:2;-1:-1:-1;;;;;32854:11:0;;32850:48;;;32874:24;;-1:-1:-1;;;32874:24:0;;;;;;;;;;;32850:48;2883:10;-1:-1:-1;;;;;32915:21:0;;;32911:139;;32942:37;32959:5;2883:10;33798:164;:::i;32942:37::-;32938:112;;33003:35;;-1:-1:-1;;;33003:35:0;;;;;;;;;;;32938:112;33062:28;33071:2;33075:7;33084:5;33062:8;:28::i;:::-;32788:310;32726:372;;:::o;34029:170::-;34163:28;34173:4;34179:2;34183:7;34163:9;:28::i;51557:134::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;51643:18:::1;:40:::0;;-1:-1:-1;;51643:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51557:134::o;51315:234::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51430::::1;::::0;51383:21:::1;::::0;51365:15:::1;::::0;51438:10:::1;::::0;51383:21;;51365:15;51430:68;51365:15;51430:68;51383:21;51438:10;51430:68:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51415:83;;;51517:4;51509:32;;;::::0;-1:-1:-1;;;51509:32:0;;10059:2:1;51509:32:0::1;::::0;::::1;10041:21:1::0;10098:2;10078:18;;;10071:30;-1:-1:-1;;;10117:18:1;;;10110:45;10172:18;;51509:32:0::1;9857:339:1::0;51509:32:0::1;51354:195;;51315:234::o:0;34270:185::-;34408:39;34425:4;34431:2;34435:7;34408:39;;;;;;;;;;;;:16;:39::i;49731:689::-;49791:16;49825:23;49851:17;49861:6;49851:9;:17::i;:::-;49825:43;;49879:30;49926:15;-1:-1:-1;;;;;49912:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49912:30:0;-1:-1:-1;49879:63:0;-1:-1:-1;49978:1:0;49953:22;50030:350;50055:15;50037;:33;:65;;;;;47550:4;50074:14;:28;;50037:65;50030:350;;;50119:25;50147:23;50155:14;50147:7;:23::i;:::-;50119:51;;50212:6;-1:-1:-1;;;;;50191:27:0;:17;-1:-1:-1;;;;;50191:27:0;;50187:153;;;50272:14;50239:13;50253:15;50239:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;50307:17;;;;:::i;:::-;;;;50187:153;50352:16;;;;:::i;:::-;;;;50104:276;50030:350;;;-1:-1:-1;50399:13:0;;49731:689;-1:-1:-1;;;;49731:689:0:o;50853:100::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50921:16:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;50921:25:0;;::::1;::::0;;;::::1;::::0;;50853:100::o;50961:104::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51036:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;31468:125::-:0;31532:7;31559:21;31572:7;31559:12;:21::i;:::-;:26;;31468:125;-1:-1:-1;;31468:125:0:o;47485:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28914:206::-;28978:7;-1:-1:-1;;;;;29002:19:0;;28998:60;;29030:28;;-1:-1:-1;;;29030:28:0;;;;;;;;;;;28998:60;-1:-1:-1;;;;;;29084:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29084:27:0;;28914:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;51201:106::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51277:7:::1;:22:::0;51201:106::o;47840:73::-;;;;;;;:::i;51073:120::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51153:32;;::::1;::::0;:17:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;31829:104::-:0;31885:13;31918:7;31911:14;;;;;:::i;48520:932::-;51770:18;;;;51762:54;;;;-1:-1:-1;;;51762:54:0;;10403:2:1;51762:54:0;;;10385:21:1;10442:2;10422:18;;;10415:30;10481:25;10461:18;;;10454:53;10524:18;;51762:54:0;10201:347:1;51762:54:0;48604:9:::1;48617:10;48604:23;48596:55;;;::::0;-1:-1:-1;;;48596:55:0;;8309:2:1;48596:55:0::1;::::0;::::1;8291:21:1::0;8348:2;8328:18;;;8321:30;-1:-1:-1;;;8367:18:1;;;8360:49;8426:18;;48596:55:0::1;8107:343:1::0;48596:55:0::1;47653:2;48670:7;:21;;48662:55;;;::::0;-1:-1:-1;;;48662:55:0;;8657:2:1;48662:55:0::1;::::0;::::1;8639:21:1::0;8696:2;8676:18;;;8669:30;-1:-1:-1;;;8715:18:1;;;8708:51;8776:18;;48662:55:0::1;8455:345:1::0;48662:55:0::1;47550:4;48756:7;48736:17;;:27;;;;:::i;:::-;:41;;48728:75;;;::::0;-1:-1:-1;;;48728:75:0;;10755:2:1;48728:75:0::1;::::0;::::1;10737:21:1::0;10794:2;10774:18;;;10767:30;-1:-1:-1;;;10813:18:1;;;10806:51;10874:18;;48728:75:0::1;10553:345:1::0;48728:75:0::1;48855:10;48816:22;29298:19:::0;;;:12;:19;;;;;:32;-1:-1:-1;;;29298:32:0;;-1:-1:-1;;;;;29298:32:0;48816:50:::1;;48894:7;4152:6:::0;;-1:-1:-1;;;;;4152:6:0;;4079:87;48894:7:::1;-1:-1:-1::0;;;;;48880:21:0::1;:10;-1:-1:-1::0;;;;;48880:21:0::1;;48876:526;;48919:16;::::0;::::1;::::0;::::1;;;48914:396;;47694:10;48988:27;48999:15;49007:7:::0;47694:10;48999:15:::1;:::i;:::-;48988:10;:27::i;:::-;49051:7;49030:17;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;48876:526:0::1;::::0;-1:-1:-1;;48876:526:0::1;48914:396;49128:7;;49117;49099:15;;:25;;;;:::i;:::-;:36;;49091:75;;;::::0;-1:-1:-1;;;49091:75:0;;7203:2:1;49091:75:0::1;::::0;::::1;7185:21:1::0;7242:2;7222:18;;;7215:30;7281:28;7261:18;;;7254:56;7327:18;;49091:75:0::1;7001:350:1::0;49091:75:0::1;47607:2;49189:24;49206:7:::0;49189:14;:24:::1;:::i;:::-;:47;;49181:74;;;::::0;-1:-1:-1;;;49181:74:0;;9716:2:1;49181:74:0::1;::::0;::::1;9698:21:1::0;9755:2;9735:18;;;9728:30;-1:-1:-1;;;9774:18:1;;;9767:44;9828:18;;49181:74:0::1;9514:338:1::0;49181:74:0::1;49289:7;49270:15;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;48876:526:0::1;::::0;-1:-1:-1;48876:526:0::1;;49331:16;::::0;::::1;::::0;::::1;;;49327:75;;;49383:7;49364:15;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;49327:75:0::1;49414:30;49424:10;49436:7;49414:9;:30::i;33440:287::-:0;-1:-1:-1;;;;;33539:24:0;;2883:10;33539:24;33535:54;;;33572:17;;-1:-1:-1;;;33572:17:0;;;;;;;;;;;33535:54;2883:10;33602:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33602:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33602:53:0;;;;;;;;;;33671:48;;6725:41:1;;;33602:42:0;;2883:10;33671:48;;6698:18:1;33671:48:0;;;;;;;33440:287;;:::o;34526:370::-;34693:28;34703:4;34709:2;34713:7;34693:9;:28::i;:::-;-1:-1:-1;;;;;34736:13:0;;7075:19;:23;34732:157;;34757:56;34788:4;34794:2;34798:7;34807:5;34757:30;:56::i;:::-;34753:136;;34837:40;;-1:-1:-1;;;34837:40:0;;;;;;;;;;;34753:136;34526:370;;;;:::o;32004:318::-;32077:13;32108:16;32116:7;32108;:16::i;:::-;32103:59;;32133:29;;-1:-1:-1;;;32133:29:0;;;;;;;;;;;32103:59;32175:21;32199:10;:8;:10::i;:::-;32175:34;;32233:7;32227:21;32252:1;32227:26;;:87;;;;;;;;;;;;;;;;;32280:7;32289:18;:7;:16;:18::i;:::-;32263:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32227:87;32220:94;32004:318;-1:-1:-1;;;32004:318:0:o;49604:115::-;-1:-1:-1;;;;;29298:19:0;;49663:7;29298:19;;;:12;:19;;;;;:32;-1:-1:-1;;;29298:32:0;;-1:-1:-1;;;;;29298:32:0;49690:21;29202:137;49494:102;49538:13;49571:17;49564:24;;;;;:::i;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;7558:2:1;5069:73:0::1;::::0;::::1;7540:21:1::0;7597:2;7577:18;;;7570:30;7636:34;7616:18;;;7609:62;-1:-1:-1;;;7687:18:1;;;7680:36;7733:19;;5069:73:0::1;7356:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;35151:174::-;35208:4;35251:7;48356:1;35232:26;;:53;;;;;35272:13;;35262:7;:23;35232:53;:85;;;;-1:-1:-1;;35290:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35290:27:0;;;;35289:28;;35151:174::o;44373:196::-;44488:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44488:29:0;-1:-1:-1;;;;;44488:29:0;;;;;;;;;44533:28;;44488:24;;44533:28;;;;;;;44373:196;;;:::o;39321:2130::-;39436:35;39474:21;39487:7;39474:12;:21::i;:::-;39436:59;;39534:4;-1:-1:-1;;;;;39512:26:0;:13;:18;;;-1:-1:-1;;;;;39512:26:0;;39508:67;;39547:28;;-1:-1:-1;;;39547:28:0;;;;;;;;;;;39508:67;39588:22;2883:10;-1:-1:-1;;;;;39614:20:0;;;;:73;;-1:-1:-1;39651:36:0;39668:4;2883:10;33798:164;:::i;39651:36::-;39614:126;;;-1:-1:-1;2883:10:0;39704:20;39716:7;39704:11;:20::i;:::-;-1:-1:-1;;;;;39704:36:0;;39614:126;39588:153;;39759:17;39754:66;;39785:35;;-1:-1:-1;;;39785:35:0;;;;;;;;;;;39754:66;-1:-1:-1;;;;;39835:16:0;;39831:52;;39860:23;;-1:-1:-1;;;39860:23:0;;;;;;;;;;;39831:52;40004:35;40021:1;40025:7;40034:4;40004:8;:35::i;:::-;-1:-1:-1;;;;;40335:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40335:31:0;;;-1:-1:-1;;;;;40335:31:0;;;-1:-1:-1;;40335:31:0;;;;;;;40381:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40381:29:0;;;;;;;;;;;40461:20;;;:11;:20;;;;;;40496:18;;-1:-1:-1;;;;;;40529:49:0;;;;-1:-1:-1;;;40562:15:0;40529:49;;;;;;;;;;40852:11;;40912:24;;;;;40955:13;;40461:20;;40912:24;;40955:13;40951:384;;41165:13;;41150:11;:28;41146:174;;41203:20;;41272:28;;;;-1:-1:-1;;;;;41246:54:0;-1:-1:-1;;;41246:54:0;-1:-1:-1;;;;;;41246:54:0;;;-1:-1:-1;;;;;41203:20:0;;41246:54;;;;41146:174;40310:1036;;;41382:7;41378:2;-1:-1:-1;;;;;41363:27:0;41372:4;-1:-1:-1;;;;;41363:27:0;;;;;;;;;;;39425:2026;;39321:2130;;;:::o;30295:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30406:7:0;;48356:1;30455:23;30451:888;;30491:13;;30484:4;:20;30480:859;;;30525:31;30559:17;;;:11;:17;;;;;;;;;30525:51;;;;;;;;;-1:-1:-1;;;;;30525:51:0;;;;-1:-1:-1;;;30525:51:0;;-1:-1:-1;;;;;30525:51:0;;;;;;;;-1:-1:-1;;;30525:51:0;;;;;;;;;;;;;;30595:729;;30645:14;;-1:-1:-1;;;;;30645:28:0;;30641:101;;30709:9;30295:1111;-1:-1:-1;;;30295:1111:0:o;30641:101::-;-1:-1:-1;;;31084:6:0;31129:17;;;;:11;:17;;;;;;;;;31117:29;;;;;;;;;-1:-1:-1;;;;;31117:29:0;;;;;-1:-1:-1;;;31117:29:0;;-1:-1:-1;;;;;31117:29:0;;;;;;;;-1:-1:-1;;;31117:29:0;;;;;;;;;;;;;31177:28;31173:109;;31245:9;30295:1111;-1:-1:-1;;;30295:1111:0:o;31173:109::-;31044:261;;;30506:833;30480:859;31367:31;;-1:-1:-1;;;31367:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;50460:356::-;50530:5;50518:9;:17;50514:295;;;50553:9;50576:10;50619:17;50631:5;50619:9;:17;:::i;:::-;50568:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50552:104;;;50679:4;50671:32;;;;-1:-1:-1;;;50671:32:0;;7965:2:1;50671:32:0;;;7947:21:1;8004:2;7984:18;;;7977:30;-1:-1:-1;;;8023:18:1;;;8016:45;8078:18;;50671:32:0;7763:339:1;50514:295:0;50746:5;50734:9;:17;50730:79;;;50768:29;;-1:-1:-1;;;50768:29:0;;9368:2:1;50768:29:0;;;9350:21:1;9407:2;9387:18;;;9380:30;-1:-1:-1;;;9426:18:1;;;9419:49;9485:18;;50768:29:0;9166:343:1;35409:104:0;35478:27;35488:2;35492:8;35478:27;;;;;;;;;;;;:9;:27::i;45061:667::-;45245:72;;-1:-1:-1;;;45245:72:0;;45224:4;;-1:-1:-1;;;;;45245:36:0;;;;;:72;;2883:10;;45296:4;;45302:7;;45311:5;;45245:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45245:72:0;;;;;;;;-1:-1:-1;;45245:72:0;;;;;;;;;;;;:::i;:::-;;;45241:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45479:13:0;;45475:235;;45525:40;;-1:-1:-1;;;45525:40:0;;;;;;;;;;;45475:235;45668:6;45662:13;45653:6;45649:2;45645:15;45638:38;45241:480;-1:-1:-1;;;;;;45364:55:0;-1:-1:-1;;;45364:55:0;;-1:-1:-1;45241:480:0;45061:667;;;;;;:::o;48377:100::-;48429:13;48462:7;48455:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;35886:1749;36009:20;36032:13;-1:-1:-1;;;;;36060:16:0;;36056:48;;36085:19;;-1:-1:-1;;;36085:19:0;;;;;;;;;;;36056:48;36119:13;36115:44;;36141:18;;-1:-1:-1;;;36141:18:0;;;;;;;;;;;36115:44;-1:-1:-1;;;;;36510:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36569:49:0;;-1:-1:-1;;;;;36510:44:0;;;;;;;36569:49;;;-1:-1:-1;;;;;36510:44:0;;;;;;36569:49;;;;;;;;;;;;;;;;36635:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36685:66:0;;;-1:-1:-1;;;36735:15:0;36685:66;;;;;;;;;;;;;36635:25;;36832:23;;;;7075:19;:23;36872:631;;36912:313;36943:38;;36968:12;;-1:-1:-1;;;;;36943:38:0;;;36960:1;;36943:38;;36960:1;;36943:38;37009:69;37048:1;37052:2;37056:14;;;;;;37072:5;37009:30;:69::i;:::-;37004:174;;37114:40;;-1:-1:-1;;;37114:40:0;;;;;;;;;;;37004:174;37220:3;37205:12;:18;36912:313;;37306:12;37289:13;;:29;37285:43;;37320:8;;;37285:43;36872:631;;;37369:119;37400:40;;37425:14;;;;;-1:-1:-1;;;;;37400:40:0;;;37417:1;;37400:40;;37417:1;;37400:40;37483:3;37468:12;:18;37369:119;;36872:631;-1:-1:-1;37517:13:0;:28;;;37567:60;;37600:2;37604:12;37618:8;37567:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;-1:-1:-1;;;;;2201:6:1;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;-1:-1:-1;;;;;3863:6:1;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5455:488::-;-1:-1:-1;;;;;5724:15:1;;;5706:34;;5776:15;;5771:2;5756:18;;5749:43;5823:2;5808:18;;5801:34;;;5871:3;5866:2;5851:18;;5844:31;;;5649:4;;5892:45;;5917:19;;5909:6;5892:45;:::i;:::-;5884:53;5455:488;-1:-1:-1;;;;;;5455:488:1:o;5948:632::-;6119:2;6171:21;;;6241:13;;6144:18;;;6263:22;;;6090:4;;6119:2;6342:15;;;;6316:2;6301:18;;;6090:4;6385:169;6399:6;6396:1;6393:13;6385:169;;;6460:13;;6448:26;;6529:15;;;;6494:12;;;;6421:1;6414:9;6385:169;;;-1:-1:-1;6571:3:1;;5948:632;-1:-1:-1;;;;;;5948:632:1:o;6777:219::-;6926:2;6915:9;6908:21;6889:4;6946:44;6986:2;6975:9;6971:18;6963:6;6946:44;:::i;8805:356::-;9007:2;8989:21;;;9026:18;;;9019:30;9085:34;9080:2;9065:18;;9058:62;9152:2;9137:18;;8805:356::o;11085:128::-;11125:3;11156:1;11152:6;11149:1;11146:13;11143:39;;;11162:18;;:::i;:::-;-1:-1:-1;11198:9:1;;11085:128::o;11218:120::-;11258:1;11284;11274:35;;11289:18;;:::i;:::-;-1:-1:-1;11323:9:1;;11218:120::o;11343:168::-;11383:7;11449:1;11445;11441:6;11437:14;11434:1;11431:21;11426:1;11419:9;11412:17;11408:45;11405:71;;;11456:18;;:::i;:::-;-1:-1:-1;11496:9:1;;11343:168::o;11516:125::-;11556:4;11584:1;11581;11578:8;11575:34;;;11589:18;;:::i;:::-;-1:-1:-1;11626:9:1;;11516:125::o;11646:258::-;11718:1;11728:113;11742:6;11739:1;11736:13;11728:113;;;11818:11;;;11812:18;11799:11;;;11792:39;11764:2;11757:10;11728:113;;;11859:6;11856:1;11853:13;11850:48;;;-1:-1:-1;;11894:1:1;11876:16;;11869:27;11646:258::o;11909:380::-;11988:1;11984:12;;;;12031;;;12052:61;;12106:4;12098:6;12094:17;12084:27;;12052:61;12159:2;12151:6;12148:14;12128:18;12125:38;12122:161;;;12205:10;12200:3;12196:20;12193:1;12186:31;12240:4;12237:1;12230:15;12268:4;12265:1;12258:15;12122:161;;11909:380;;;:::o;12294:135::-;12333:3;-1:-1:-1;;12354:17:1;;12351:43;;;12374:18;;:::i;:::-;-1:-1:-1;12421:1:1;12410:13;;12294:135::o;12434:112::-;12466:1;12492;12482:35;;12497:18;;:::i;:::-;-1:-1:-1;12531:9:1;;12434:112::o;12551:127::-;12612:10;12607:3;12603:20;12600:1;12593:31;12643:4;12640:1;12633:15;12667:4;12664:1;12657:15;12683:127;12744:10;12739:3;12735:20;12732:1;12725:31;12775:4;12772:1;12765:15;12799:4;12796:1;12789:15;12815:127;12876:10;12871:3;12867:20;12864:1;12857:31;12907:4;12904:1;12897:15;12931:4;12928:1;12921:15;12947:127;13008:10;13003:3;12999:20;12996:1;12989:31;13039:4;13036:1;13029:15;13063:4;13060:1;13053:15;13079:131;-1:-1:-1;;;;;;13153:32:1;;13143:43;;13133:71;;13200:1;13197;13190:12
Swarm Source
ipfs://077772e4a800f924701ad7e815cb6a5953ae1e5c4535208999b908b5d77d3dcd
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.