ERC-721
NFT
Overview
Max Total Supply
2,008 GBC
Holders
744
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheGreatBrainsClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-15 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //Written by Blockchainguy.net //tg: @sherazmanzoor /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }pragma solidity ^0.8.0; contract TheGreatBrainsClub is Ownable, ERC721 { uint constant tokenPrice = 0.07 ether; uint constant maxSupply = 10000; uint public totalSupply = 0; uint public sale_startTime = 1634497200; uint public nft_reveal_time = 1634605200; bool public pause_sale = false; string public baseURI; constructor() ERC721("The Great Brains Club", "GBC"){} function buy(uint _count) public payable{ require(_count > 0, "mint at least one token"); require(_count <= 20, "Max 20 Allowed."); require(totalSupply + _count <= maxSupply, "Not enough tokens left"); require(msg.value == tokenPrice * _count, "incorrect ether amount"); require(block.timestamp >= sale_startTime,"Sale not Started Yet."); require(pause_sale == false, "Sale is Paused."); for(uint i = 0; i < _count; i++) _safeMint(msg.sender, totalSupply + 1 + i); totalSupply += _count; } function sendGifts(address[] memory _wallets) public onlyOwner{ require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left"); for(uint i = 0; i < _wallets.length; i++) _safeMint(_wallets[i], totalSupply + 1 + i); totalSupply += _wallets.length; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(block.timestamp <= nft_reveal_time){ return "https://gateway.pinata.cloud/ipfs/Qmc2qBUHHkTH1egg3FaY6qYaeBZ3GkAWkgsecjKjMRWNs2"; } return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId))) : ""; } function update_reveal_time(uint time) external onlyOwner{ nft_reveal_time = time; } function setBaseUri(string memory _uri) external onlyOwner { baseURI = _uri; } function setPauseSale(bool temp) external onlyOwner { pause_sale = temp; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function set_start_time(uint256 time) external onlyOwner{ sale_startTime = time; } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nft_reveal_time","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":"pause_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"setPauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_start_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"update_reveal_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600060075563616c72b060085563616e1890600955600a805460ff191690553480156200003057600080fd5b506040518060400160405280601581526020017f54686520477265617420427261696e7320436c756200000000000000000000008152506040518060400160405280600381526020016247424360e81b8152506200009d62000097620000d160201b60201c565b620000d5565b8151620000b290600190602085019062000125565b508051620000c890600290602084019062000125565b50505062000208565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013390620001cb565b90600052602060002090601f016020900481019282620001575760008555620001a2565b82601f106200017257805160ff1916838001178555620001a2565b82800160010185558215620001a2579182015b82811115620001a257825182559160200191906001019062000185565b50620001b0929150620001b4565b5090565b5b80821115620001b05760008155600101620001b5565b600181811c90821680620001e057607f821691505b602082108114156200020257634e487b7160e01b600052602260045260246000fd5b50919050565b61201f80620002186000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063b27b1a6d1161008a578063c87b56dd11610064578063c87b56dd146104a9578063d96a094a146104c9578063e985e9c5146104dc578063f2fde38b1461052557600080fd5b8063b27b1a6d1461044f578063b88d4fde1461046f578063c1580cb31461048f57600080fd5b806395d89b41116100c657806395d89b41146103da578063a0bcfc7f146103ef578063a22cb4651461040f578063aa29e23f1461042f57600080fd5b8063715018a6146103875780637c8255db1461039c5780638da5cb5b146103bc57600080fd5b80633ccfd60b1161015957806360eab49f1161013357806360eab49f146103125780636352211e146103325780636c0360eb1461035257806370a082311461036757600080fd5b80633ccfd60b146102c757806342842e0e146102dc5780635c702288146102fc57600080fd5b8063081812fc11610195578063081812fc14610237578063095ea7b31461026f57806318160ddd1461029157806323b872dd146102a757600080fd5b806301ffc9a7146101bc57806303158dde146101f157806306fdde0314610215575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611b4f565b610545565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020760085481565b6040519081526020016101e8565b34801561022157600080fd5b5061022a610597565b6040516101e89190611d17565b34801561024357600080fd5b50610257610252366004611bd2565b610629565b6040516001600160a01b0390911681526020016101e8565b34801561027b57600080fd5b5061028f61028a366004611a56565b6106c3565b005b34801561029d57600080fd5b5061020760075481565b3480156102b357600080fd5b5061028f6102c2366004611974565b6107d9565b3480156102d357600080fd5b5061028f61080a565b3480156102e857600080fd5b5061028f6102f7366004611974565b610871565b34801561030857600080fd5b5061020760095481565b34801561031e57600080fd5b5061028f61032d366004611bd2565b61088c565b34801561033e57600080fd5b5061025761034d366004611bd2565b6108bb565b34801561035e57600080fd5b5061022a610932565b34801561037357600080fd5b5061020761038236600461191f565b6109c0565b34801561039357600080fd5b5061028f610a47565b3480156103a857600080fd5b5061028f6103b7366004611a80565b610a7d565b3480156103c857600080fd5b506000546001600160a01b0316610257565b3480156103e657600080fd5b5061022a610b76565b3480156103fb57600080fd5b5061028f61040a366004611b89565b610b85565b34801561041b57600080fd5b5061028f61042a366004611a2c565b610bc6565b34801561043b57600080fd5b5061028f61044a366004611b34565b610c8b565b34801561045b57600080fd5b5061028f61046a366004611bd2565b610cc8565b34801561047b57600080fd5b5061028f61048a3660046119b0565b610cf7565b34801561049b57600080fd5b50600a546101dc9060ff1681565b3480156104b557600080fd5b5061022a6104c4366004611bd2565b610d2f565b61028f6104d7366004611bd2565b610e32565b3480156104e857600080fd5b506101dc6104f7366004611941565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561053157600080fd5b5061028f61054036600461191f565b611048565b60006001600160e01b031982166380ac58cd60e01b148061057657506001600160e01b03198216635b5e139f60e01b145b8061059157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105a690611ec1565b80601f01602080910402602001604051908101604052809291908181526020018280546105d290611ec1565b801561061f5780601f106105f45761010080835404028352916020019161061f565b820191906000526020600020905b81548152906001019060200180831161060257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ce826108bb565b9050806001600160a01b0316836001600160a01b0316141561073c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161069e565b336001600160a01b0382161480610758575061075881336104f7565b6107ca5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069e565b6107d483836110e0565b505050565b6107e3338261114e565b6107ff5760405162461bcd60e51b815260040161069e90611db1565b6107d4838383611245565b6000546001600160a01b031633146108345760405162461bcd60e51b815260040161069e90611d7c565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f1935050505015801561086e573d6000803e3d6000fd5b50565b6107d483838360405180602001604052806000815250610cf7565b6000546001600160a01b031633146108b65760405162461bcd60e51b815260040161069e90611d7c565b600955565b6000818152600360205260408120546001600160a01b0316806105915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161069e565b600b805461093f90611ec1565b80601f016020809104026020016040519081016040528092919081815260200182805461096b90611ec1565b80156109b85780601f1061098d576101008083540402835291602001916109b8565b820191906000526020600020905b81548152906001019060200180831161099b57829003601f168201915b505050505081565b60006001600160a01b038216610a2b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161069e565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610a715760405162461bcd60e51b815260040161069e90611d7c565b610a7b60006113e5565b565b6000546001600160a01b03163314610aa75760405162461bcd60e51b815260040161069e90611d7c565b6127108151600754610ab99190611e33565b1115610b005760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161069e565b60005b8151811015610b5a57610b48828281518110610b2157610b21611f57565b6020026020010151826007546001610b399190611e33565b610b439190611e33565b611435565b80610b5281611efc565b915050610b03565b50805160076000828254610b6e9190611e33565b909155505050565b6060600280546105a690611ec1565b6000546001600160a01b03163314610baf5760405162461bcd60e51b815260040161069e90611d7c565b8051610bc290600b906020840190611802565b5050565b6001600160a01b038216331415610c1f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610cb55760405162461bcd60e51b815260040161069e90611d7c565b600a805460ff1916911515919091179055565b6000546001600160a01b03163314610cf25760405162461bcd60e51b815260040161069e90611d7c565b600855565b610d01338361114e565b610d1d5760405162461bcd60e51b815260040161069e90611db1565b610d298484848461144f565b50505050565b6000818152600360205260409020546060906001600160a01b0316610dae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069e565b6009544211610dd657604051806080016040528060508152602001611f9a6050913992915050565b6000600b8054610de590611ec1565b905011610e015760405180602001604052806000815250610591565b600b610e0c83611482565b604051602001610e1d929190611c33565b60405160208183030381529060405292915050565b60008111610e825760405162461bcd60e51b815260206004820152601760248201527f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000604482015260640161069e565b6014811115610ec55760405162461bcd60e51b815260206004820152600f60248201526e26b0bc1019181020b63637bbb2b21760891b604482015260640161069e565b61271081600754610ed69190611e33565b1115610f1d5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161069e565b610f2e8166f8b0a10e470000611e5f565b3414610f755760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b604482015260640161069e565b600854421015610fbf5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b604482015260640161069e565b600a5460ff16156110045760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b604482015260640161069e565b60005b818110156110355761102333826007546001610b399190611e33565b8061102d81611efc565b915050611007565b508060076000828254610b6e9190611e33565b6000546001600160a01b031633146110725760405162461bcd60e51b815260040161069e90611d7c565b6001600160a01b0381166110d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069e565b61086e816113e5565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611115826108bb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166111c75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069e565b60006111d2836108bb565b9050806001600160a01b0316846001600160a01b0316148061120d5750836001600160a01b031661120284610629565b6001600160a01b0316145b8061123d57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611258826108bb565b6001600160a01b0316146112c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161069e565b6001600160a01b0382166113225760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161069e565b61132d6000826110e0565b6001600160a01b0383166000908152600460205260408120805460019290611356908490611e7e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611384908490611e33565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610bc2828260405180602001604052806000815250611580565b61145a848484611245565b611466848484846115b3565b610d295760405162461bcd60e51b815260040161069e90611d2a565b6060816114a65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114d057806114ba81611efc565b91506114c99050600a83611e4b565b91506114aa565b60008167ffffffffffffffff8111156114eb576114eb611f6d565b6040519080825280601f01601f191660200182016040528015611515576020820181803683370190505b5090505b841561123d5761152a600183611e7e565b9150611537600a86611f17565b611542906030611e33565b60f81b81838151811061155757611557611f57565b60200101906001600160f81b031916908160001a905350611579600a86611e4b565b9450611519565b61158a83836116c0565b61159760008484846115b3565b6107d45760405162461bcd60e51b815260040161069e90611d2a565b60006001600160a01b0384163b156116b557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115f7903390899088908890600401611cda565b602060405180830381600087803b15801561161157600080fd5b505af1925050508015611641575060408051601f3d908101601f1916820190925261163e91810190611b6c565b60015b61169b573d80801561166f576040519150601f19603f3d011682016040523d82523d6000602084013e611674565b606091505b5080516116935760405162461bcd60e51b815260040161069e90611d2a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061123d565b506001949350505050565b6001600160a01b0382166117165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069e565b6000818152600360205260409020546001600160a01b03161561177b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161069e565b6001600160a01b03821660009081526004602052604081208054600192906117a4908490611e33565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461180e90611ec1565b90600052602060002090601f0160209004810192826118305760008555611876565b82601f1061184957805160ff1916838001178555611876565b82800160010185558215611876579182015b8281111561187657825182559160200191906001019061185b565b50611882929150611886565b5090565b5b808211156118825760008155600101611887565b600067ffffffffffffffff8311156118b5576118b5611f6d565b6118c8601f8401601f1916602001611e02565b90508281528383830111156118dc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461190a57600080fd5b919050565b8035801515811461190a57600080fd5b60006020828403121561193157600080fd5b61193a826118f3565b9392505050565b6000806040838503121561195457600080fd5b61195d836118f3565b915061196b602084016118f3565b90509250929050565b60008060006060848603121561198957600080fd5b611992846118f3565b92506119a0602085016118f3565b9150604084013590509250925092565b600080600080608085870312156119c657600080fd5b6119cf856118f3565b93506119dd602086016118f3565b925060408501359150606085013567ffffffffffffffff811115611a0057600080fd5b8501601f81018713611a1157600080fd5b611a208782356020840161189b565b91505092959194509250565b60008060408385031215611a3f57600080fd5b611a48836118f3565b915061196b6020840161190f565b60008060408385031215611a6957600080fd5b611a72836118f3565b946020939093013593505050565b60006020808385031215611a9357600080fd5b823567ffffffffffffffff80821115611aab57600080fd5b818501915085601f830112611abf57600080fd5b813581811115611ad157611ad1611f6d565b8060051b9150611ae2848301611e02565b8181528481019084860184860187018a1015611afd57600080fd5b600095505b83861015611b2757611b13816118f3565b835260019590950194918601918601611b02565b5098975050505050505050565b600060208284031215611b4657600080fd5b61193a8261190f565b600060208284031215611b6157600080fd5b813561193a81611f83565b600060208284031215611b7e57600080fd5b815161193a81611f83565b600060208284031215611b9b57600080fd5b813567ffffffffffffffff811115611bb257600080fd5b8201601f81018413611bc357600080fd5b61123d8482356020840161189b565b600060208284031215611be457600080fd5b5035919050565b60008151808452611c03816020860160208601611e95565b601f01601f19169290920160200192915050565b60008151611c29818560208601611e95565b9290920192915050565b600080845481600182811c915080831680611c4f57607f831692505b6020808410821415611c6f57634e487b7160e01b86526022600452602486fd5b818015611c835760018114611c9457611cc1565b60ff19861689528489019650611cc1565b60008b81526020902060005b86811015611cb95781548b820152908501908301611ca0565b505084890196505b505050505050611cd18185611c17565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d0d90830184611beb565b9695505050505050565b60208152600061193a6020830184611beb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611e2b57611e2b611f6d565b604052919050565b60008219821115611e4657611e46611f2b565b500190565b600082611e5a57611e5a611f41565b500490565b6000816000190483118215151615611e7957611e79611f2b565b500290565b600082821015611e9057611e90611f2b565b500390565b60005b83811015611eb0578181015183820152602001611e98565b83811115610d295750506000910152565b600181811c90821680611ed557607f821691505b60208210811415611ef657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f1057611f10611f2b565b5060010190565b600082611f2657611f26611f41565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461086e57600080fdfe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d633271425548486b544831656767334661593671596165425a33476b41576b677365636a4b6a4d52574e7332a2646970667358221220f3679e5605dcd844245a9052ec1bed4a44c2c72351b2e8b9f8adb1fd45f396ed64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063b27b1a6d1161008a578063c87b56dd11610064578063c87b56dd146104a9578063d96a094a146104c9578063e985e9c5146104dc578063f2fde38b1461052557600080fd5b8063b27b1a6d1461044f578063b88d4fde1461046f578063c1580cb31461048f57600080fd5b806395d89b41116100c657806395d89b41146103da578063a0bcfc7f146103ef578063a22cb4651461040f578063aa29e23f1461042f57600080fd5b8063715018a6146103875780637c8255db1461039c5780638da5cb5b146103bc57600080fd5b80633ccfd60b1161015957806360eab49f1161013357806360eab49f146103125780636352211e146103325780636c0360eb1461035257806370a082311461036757600080fd5b80633ccfd60b146102c757806342842e0e146102dc5780635c702288146102fc57600080fd5b8063081812fc11610195578063081812fc14610237578063095ea7b31461026f57806318160ddd1461029157806323b872dd146102a757600080fd5b806301ffc9a7146101bc57806303158dde146101f157806306fdde0314610215575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611b4f565b610545565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020760085481565b6040519081526020016101e8565b34801561022157600080fd5b5061022a610597565b6040516101e89190611d17565b34801561024357600080fd5b50610257610252366004611bd2565b610629565b6040516001600160a01b0390911681526020016101e8565b34801561027b57600080fd5b5061028f61028a366004611a56565b6106c3565b005b34801561029d57600080fd5b5061020760075481565b3480156102b357600080fd5b5061028f6102c2366004611974565b6107d9565b3480156102d357600080fd5b5061028f61080a565b3480156102e857600080fd5b5061028f6102f7366004611974565b610871565b34801561030857600080fd5b5061020760095481565b34801561031e57600080fd5b5061028f61032d366004611bd2565b61088c565b34801561033e57600080fd5b5061025761034d366004611bd2565b6108bb565b34801561035e57600080fd5b5061022a610932565b34801561037357600080fd5b5061020761038236600461191f565b6109c0565b34801561039357600080fd5b5061028f610a47565b3480156103a857600080fd5b5061028f6103b7366004611a80565b610a7d565b3480156103c857600080fd5b506000546001600160a01b0316610257565b3480156103e657600080fd5b5061022a610b76565b3480156103fb57600080fd5b5061028f61040a366004611b89565b610b85565b34801561041b57600080fd5b5061028f61042a366004611a2c565b610bc6565b34801561043b57600080fd5b5061028f61044a366004611b34565b610c8b565b34801561045b57600080fd5b5061028f61046a366004611bd2565b610cc8565b34801561047b57600080fd5b5061028f61048a3660046119b0565b610cf7565b34801561049b57600080fd5b50600a546101dc9060ff1681565b3480156104b557600080fd5b5061022a6104c4366004611bd2565b610d2f565b61028f6104d7366004611bd2565b610e32565b3480156104e857600080fd5b506101dc6104f7366004611941565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561053157600080fd5b5061028f61054036600461191f565b611048565b60006001600160e01b031982166380ac58cd60e01b148061057657506001600160e01b03198216635b5e139f60e01b145b8061059157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105a690611ec1565b80601f01602080910402602001604051908101604052809291908181526020018280546105d290611ec1565b801561061f5780601f106105f45761010080835404028352916020019161061f565b820191906000526020600020905b81548152906001019060200180831161060257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ce826108bb565b9050806001600160a01b0316836001600160a01b0316141561073c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161069e565b336001600160a01b0382161480610758575061075881336104f7565b6107ca5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069e565b6107d483836110e0565b505050565b6107e3338261114e565b6107ff5760405162461bcd60e51b815260040161069e90611db1565b6107d4838383611245565b6000546001600160a01b031633146108345760405162461bcd60e51b815260040161069e90611d7c565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f1935050505015801561086e573d6000803e3d6000fd5b50565b6107d483838360405180602001604052806000815250610cf7565b6000546001600160a01b031633146108b65760405162461bcd60e51b815260040161069e90611d7c565b600955565b6000818152600360205260408120546001600160a01b0316806105915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161069e565b600b805461093f90611ec1565b80601f016020809104026020016040519081016040528092919081815260200182805461096b90611ec1565b80156109b85780601f1061098d576101008083540402835291602001916109b8565b820191906000526020600020905b81548152906001019060200180831161099b57829003601f168201915b505050505081565b60006001600160a01b038216610a2b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161069e565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610a715760405162461bcd60e51b815260040161069e90611d7c565b610a7b60006113e5565b565b6000546001600160a01b03163314610aa75760405162461bcd60e51b815260040161069e90611d7c565b6127108151600754610ab99190611e33565b1115610b005760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161069e565b60005b8151811015610b5a57610b48828281518110610b2157610b21611f57565b6020026020010151826007546001610b399190611e33565b610b439190611e33565b611435565b80610b5281611efc565b915050610b03565b50805160076000828254610b6e9190611e33565b909155505050565b6060600280546105a690611ec1565b6000546001600160a01b03163314610baf5760405162461bcd60e51b815260040161069e90611d7c565b8051610bc290600b906020840190611802565b5050565b6001600160a01b038216331415610c1f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610cb55760405162461bcd60e51b815260040161069e90611d7c565b600a805460ff1916911515919091179055565b6000546001600160a01b03163314610cf25760405162461bcd60e51b815260040161069e90611d7c565b600855565b610d01338361114e565b610d1d5760405162461bcd60e51b815260040161069e90611db1565b610d298484848461144f565b50505050565b6000818152600360205260409020546060906001600160a01b0316610dae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069e565b6009544211610dd657604051806080016040528060508152602001611f9a6050913992915050565b6000600b8054610de590611ec1565b905011610e015760405180602001604052806000815250610591565b600b610e0c83611482565b604051602001610e1d929190611c33565b60405160208183030381529060405292915050565b60008111610e825760405162461bcd60e51b815260206004820152601760248201527f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000604482015260640161069e565b6014811115610ec55760405162461bcd60e51b815260206004820152600f60248201526e26b0bc1019181020b63637bbb2b21760891b604482015260640161069e565b61271081600754610ed69190611e33565b1115610f1d5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161069e565b610f2e8166f8b0a10e470000611e5f565b3414610f755760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b604482015260640161069e565b600854421015610fbf5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b604482015260640161069e565b600a5460ff16156110045760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b604482015260640161069e565b60005b818110156110355761102333826007546001610b399190611e33565b8061102d81611efc565b915050611007565b508060076000828254610b6e9190611e33565b6000546001600160a01b031633146110725760405162461bcd60e51b815260040161069e90611d7c565b6001600160a01b0381166110d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069e565b61086e816113e5565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611115826108bb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166111c75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069e565b60006111d2836108bb565b9050806001600160a01b0316846001600160a01b0316148061120d5750836001600160a01b031661120284610629565b6001600160a01b0316145b8061123d57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611258826108bb565b6001600160a01b0316146112c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161069e565b6001600160a01b0382166113225760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161069e565b61132d6000826110e0565b6001600160a01b0383166000908152600460205260408120805460019290611356908490611e7e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611384908490611e33565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610bc2828260405180602001604052806000815250611580565b61145a848484611245565b611466848484846115b3565b610d295760405162461bcd60e51b815260040161069e90611d2a565b6060816114a65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114d057806114ba81611efc565b91506114c99050600a83611e4b565b91506114aa565b60008167ffffffffffffffff8111156114eb576114eb611f6d565b6040519080825280601f01601f191660200182016040528015611515576020820181803683370190505b5090505b841561123d5761152a600183611e7e565b9150611537600a86611f17565b611542906030611e33565b60f81b81838151811061155757611557611f57565b60200101906001600160f81b031916908160001a905350611579600a86611e4b565b9450611519565b61158a83836116c0565b61159760008484846115b3565b6107d45760405162461bcd60e51b815260040161069e90611d2a565b60006001600160a01b0384163b156116b557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115f7903390899088908890600401611cda565b602060405180830381600087803b15801561161157600080fd5b505af1925050508015611641575060408051601f3d908101601f1916820190925261163e91810190611b6c565b60015b61169b573d80801561166f576040519150601f19603f3d011682016040523d82523d6000602084013e611674565b606091505b5080516116935760405162461bcd60e51b815260040161069e90611d2a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061123d565b506001949350505050565b6001600160a01b0382166117165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069e565b6000818152600360205260409020546001600160a01b03161561177b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161069e565b6001600160a01b03821660009081526004602052604081208054600192906117a4908490611e33565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461180e90611ec1565b90600052602060002090601f0160209004810192826118305760008555611876565b82601f1061184957805160ff1916838001178555611876565b82800160010185558215611876579182015b8281111561187657825182559160200191906001019061185b565b50611882929150611886565b5090565b5b808211156118825760008155600101611887565b600067ffffffffffffffff8311156118b5576118b5611f6d565b6118c8601f8401601f1916602001611e02565b90508281528383830111156118dc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461190a57600080fd5b919050565b8035801515811461190a57600080fd5b60006020828403121561193157600080fd5b61193a826118f3565b9392505050565b6000806040838503121561195457600080fd5b61195d836118f3565b915061196b602084016118f3565b90509250929050565b60008060006060848603121561198957600080fd5b611992846118f3565b92506119a0602085016118f3565b9150604084013590509250925092565b600080600080608085870312156119c657600080fd5b6119cf856118f3565b93506119dd602086016118f3565b925060408501359150606085013567ffffffffffffffff811115611a0057600080fd5b8501601f81018713611a1157600080fd5b611a208782356020840161189b565b91505092959194509250565b60008060408385031215611a3f57600080fd5b611a48836118f3565b915061196b6020840161190f565b60008060408385031215611a6957600080fd5b611a72836118f3565b946020939093013593505050565b60006020808385031215611a9357600080fd5b823567ffffffffffffffff80821115611aab57600080fd5b818501915085601f830112611abf57600080fd5b813581811115611ad157611ad1611f6d565b8060051b9150611ae2848301611e02565b8181528481019084860184860187018a1015611afd57600080fd5b600095505b83861015611b2757611b13816118f3565b835260019590950194918601918601611b02565b5098975050505050505050565b600060208284031215611b4657600080fd5b61193a8261190f565b600060208284031215611b6157600080fd5b813561193a81611f83565b600060208284031215611b7e57600080fd5b815161193a81611f83565b600060208284031215611b9b57600080fd5b813567ffffffffffffffff811115611bb257600080fd5b8201601f81018413611bc357600080fd5b61123d8482356020840161189b565b600060208284031215611be457600080fd5b5035919050565b60008151808452611c03816020860160208601611e95565b601f01601f19169290920160200192915050565b60008151611c29818560208601611e95565b9290920192915050565b600080845481600182811c915080831680611c4f57607f831692505b6020808410821415611c6f57634e487b7160e01b86526022600452602486fd5b818015611c835760018114611c9457611cc1565b60ff19861689528489019650611cc1565b60008b81526020902060005b86811015611cb95781548b820152908501908301611ca0565b505084890196505b505050505050611cd18185611c17565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d0d90830184611beb565b9695505050505050565b60208152600061193a6020830184611beb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611e2b57611e2b611f6d565b604052919050565b60008219821115611e4657611e46611f2b565b500190565b600082611e5a57611e5a611f41565b500490565b6000816000190483118215151615611e7957611e79611f2b565b500290565b600082821015611e9057611e90611f2b565b500390565b60005b83811015611eb0578181015183820152602001611e98565b83811115610d295750506000910152565b600181811c90821680611ed557607f821691505b60208210811415611ef657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f1057611f10611f2b565b5060010190565b600082611f2657611f26611f41565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461086e57600080fdfe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d633271425548486b544831656767334661593671596165425a33476b41576b677365636a4b6a4d52574e7332a2646970667358221220f3679e5605dcd844245a9052ec1bed4a44c2c72351b2e8b9f8adb1fd45f396ed64736f6c63430008070033
Deployed Bytecode Sourcemap
34470:2467:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22322:305;;;;;;;;;;-1:-1:-1;22322:305:0;;;;;:::i;:::-;;:::i;:::-;;;7540:14:1;;7533:22;7515:41;;7503:2;7488:18;22322:305:0;;;;;;;;34652:39;;;;;;;;;;;;;;;;;;;16762:25:1;;;16750:2;16735:18;34652:39:0;16616:177:1;23267:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24826:221::-;;;;;;;;;;-1:-1:-1;24826:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6838:32:1;;;6820:51;;6808:2;6793:18;24826:221:0;6674:203:1;24349:411:0;;;;;;;;;;-1:-1:-1;24349:411:0;;;;;:::i;:::-;;:::i;:::-;;34612:27;;;;;;;;;;;;;;;;25716:339;;;;;;;;;;-1:-1:-1;25716:339:0;;;;;:::i;:::-;;:::i;36828:106::-;;;;;;;;;;;;;:::i;26126:185::-;;;;;;;;;;-1:-1:-1;26126:185:0;;;;;:::i;:::-;;:::i;34698:40::-;;;;;;;;;;;;;;;;36300:98;;;;;;;;;;-1:-1:-1;36300:98:0;;;;;:::i;:::-;;:::i;22961:239::-;;;;;;;;;;-1:-1:-1;22961:239:0;;;;;:::i;:::-;;:::i;34792:21::-;;;;;;;;;;;;;:::i;22691:208::-;;;;;;;;;;-1:-1:-1;22691:208:0;;;;;:::i;:::-;;:::i;14169:94::-;;;;;;;;;;;;;:::i;35508:308::-;;;;;;;;;;-1:-1:-1;35508:308:0;;;;;:::i;:::-;;:::i;13518:87::-;;;;;;;;;;-1:-1:-1;13564:7:0;13591:6;-1:-1:-1;;;;;13591:6:0;13518:87;;23436:104;;;;;;;;;;;;;:::i;36412:92::-;;;;;;;;;;-1:-1:-1;36412:92:0;;;;;:::i;:::-;;:::i;25119:295::-;;;;;;;;;;-1:-1:-1;25119:295:0;;;;;:::i;:::-;;:::i;36510:88::-;;;;;;;;;;-1:-1:-1;36510:88:0;;;;;:::i;:::-;;:::i;36724:96::-;;;;;;;;;;-1:-1:-1;36724:96:0;;;;;:::i;:::-;;:::i;26382:328::-;;;;;;;;;;-1:-1:-1;26382:328:0;;;;;:::i;:::-;;:::i;34751:30::-;;;;;;;;;;-1:-1:-1;34751:30:0;;;;;;;;35822:468;;;;;;;;;;-1:-1:-1;35822:468:0;;;;;:::i;:::-;;:::i;34889:609::-;;;;;;:::i;:::-;;:::i;25485:164::-;;;;;;;;;;-1:-1:-1;25485:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25606:25:0;;;25582:4;25606:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25485:164;14418:192;;;;;;;;;;-1:-1:-1;14418:192:0;;;;;:::i;:::-;;:::i;22322:305::-;22424:4;-1:-1:-1;;;;;;22461:40:0;;-1:-1:-1;;;22461:40:0;;:105;;-1:-1:-1;;;;;;;22518:48:0;;-1:-1:-1;;;22518:48:0;22461:105;:158;;;-1:-1:-1;;;;;;;;;;15632:40:0;;;22583:36;22441:178;22322:305;-1:-1:-1;;22322:305:0:o;23267:100::-;23321:13;23354:5;23347:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23267:100;:::o;24826:221::-;24902:7;28309:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28309:16:0;24922:73;;;;-1:-1:-1;;;24922:73:0;;13001:2:1;24922:73:0;;;12983:21:1;13040:2;13020:18;;;13013:30;13079:34;13059:18;;;13052:62;-1:-1:-1;;;13130:18:1;;;13123:42;13182:19;;24922:73:0;;;;;;;;;-1:-1:-1;25015:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25015:24:0;;24826:221::o;24349:411::-;24430:13;24446:23;24461:7;24446:14;:23::i;:::-;24430:39;;24494:5;-1:-1:-1;;;;;24488:11:0;:2;-1:-1:-1;;;;;24488:11:0;;;24480:57;;;;-1:-1:-1;;;24480:57:0;;14951:2:1;24480:57:0;;;14933:21:1;14990:2;14970:18;;;14963:30;15029:34;15009:18;;;15002:62;-1:-1:-1;;;15080:18:1;;;15073:31;15121:19;;24480:57:0;14749:397:1;24480:57:0;738:10;-1:-1:-1;;;;;24572:21:0;;;;:62;;-1:-1:-1;24597:37:0;24614:5;738:10;25485:164;:::i;24597:37::-;24550:168;;;;-1:-1:-1;;;24550:168:0;;11043:2:1;24550:168:0;;;11025:21:1;11082:2;11062:18;;;11055:30;11121:34;11101:18;;;11094:62;11192:26;11172:18;;;11165:54;11236:19;;24550:168:0;10841:420:1;24550:168:0;24731:21;24740:2;24744:7;24731:8;:21::i;:::-;24419:341;24349:411;;:::o;25716:339::-;25911:41;738:10;25944:7;25911:18;:41::i;:::-;25903:103;;;;-1:-1:-1;;;25903:103:0;;;;;;;:::i;:::-;26019:28;26029:4;26035:2;26039:7;26019:9;:28::i;36828:106::-;13564:7;13591:6;-1:-1:-1;;;;;13591:6:0;738:10;13738:23;13730:68;;;;-1:-1:-1;;;13730:68:0;;;;;;;:::i;:::-;13564:7;13591:6;;36878:48:::1;::::0;-1:-1:-1;;;;;13591:6:0;;;;36904:21:::1;36878:48:::0;::::1;;;::::0;36904:21;;36878:48;13564:7;36878:48;36904:21;13591:6;36878:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36828:106::o:0;26126:185::-;26264:39;26281:4;26287:2;26291:7;26264:39;;;;;;;;;;;;:16;:39::i;36300:98::-;13564:7;13591:6;-1:-1:-1;;;;;13591:6:0;738:10;13738:23;13730:68;;;;-1:-1:-1;;;13730:68:0;;;;;;;:::i;:::-;36368:15:::1;:22:::0;36300:98::o;22961:239::-;23033:7;23069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23069:16:0;23104:19;23096:73;;;;-1:-1:-1;;;23096:73:0;;11879:2:1;23096:73:0;;;11861:21:1;11918:2;11898:18;;;11891:30;11957:34;11937:18;;;11930:62;-1:-1:-1;;;12008:18:1;;;12001:39;12057:19;;23096:73:0;11677:405:1;34792:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22691:208::-;22763:7;-1:-1:-1;;;;;22791:19:0;;22783:74;;;;-1:-1:-1;;;22783:74:0;;11468:2:1;22783:74:0;;;11450:21:1;11507:2;11487:18;;;11480:30;11546:34;11526:18;;;11519:62;-1:-1:-1;;;11597:18:1;;;11590:40;11647:19;;22783:74:0;11266:406:1;22783:74:0;-1:-1:-1;;;;;;22875:16:0;;;;;:9;:16;;;;;;;22691:208::o;14169:94::-;13564:7;13591:6;-1:-1:-1;;;;;13591:6:0;738:10;13738:23;13730:68;;;;-1:-1:-1;;;13730:68:0;;;;;;;:::i;:::-;14234:21:::1;14252:1;14234:9;:21::i;:::-;14169:94::o:0;35508:308::-;13564:7;13591:6;-1:-1:-1;;;;;13591:6:0;738:10;13738:23;13730:68;;;;-1:-1:-1;;;13730:68:0;;;;;;;:::i;:::-;34594:5:::1;35603:8;:15;35589:11;;:29;;;;:::i;:::-;:42;;35581:77;;;::::0;-1:-1:-1;;;35581:77:0;;16123:2:1;35581:77:0::1;::::0;::::1;16105:21:1::0;16162:2;16142:18;;;16135:30;-1:-1:-1;;;16181:18:1;;;16174:52;16243:18;;35581:77:0::1;15921:346:1::0;35581:77:0::1;35673:6;35669:98;35689:8;:15;35685:1;:19;35669:98;;;35724:43;35734:8;35743:1;35734:11;;;;;;;;:::i;:::-;;;;;;;35765:1;35747:11;;35761:1;35747:15;;;;:::i;:::-;:19;;;;:::i;:::-;35724:9;:43::i;:::-;35706:3:::0;::::1;::::0;::::1;:::i;:::-;;;;35669:98;;;;35793:8;:15;35778:11;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;35508:308:0:o;23436:104::-;23492:13;23525:7;23518:14;;;;;:::i;36412:92::-;13564:7;13591:6;-1:-1:-1;;;;;13591:6:0;738:10;13738:23;13730:68;;;;-1:-1:-1;;;13730:68:0;;;;;;;:::i;:::-;36482:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;36412:92:::0;:::o;25119:295::-;-1:-1:-1;;;;;25222:24:0;;738:10;25222:24;;25214:62;;;;-1:-1:-1;;;25214:62:0;;9581:2:1;25214:62:0;;;9563:21:1;9620:2;9600:18;;;9593:30;9659:27;9639:18;;;9632:55;9704:18;;25214:62:0;9379:349:1;25214:62:0;738:10;25289:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25289:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25289:53:0;;;;;;;;;;25358:48;;7515:41:1;;;25289:42:0;;738:10;25358:48;;7488:18:1;25358:48:0;;;;;;;25119:295;;:::o;36510:88::-;13564:7;13591:6;-1:-1:-1;;;;;13591:6:0;738:10;13738:23;13730:68;;;;-1:-1:-1;;;13730:68:0;;;;;;;:::i;:::-;36573:10:::1;:17:::0;;-1:-1:-1;;36573:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36510:88::o;36724:96::-;13564:7;13591:6;-1:-1:-1;;;;;13591:6:0;738:10;13738:23;13730:68;;;;-1:-1:-1;;;13730:68:0;;;;;;;:::i;:::-;36791:14:::1;:21:::0;36724:96::o;26382:328::-;26557:41;738:10;26590:7;26557:18;:41::i;:::-;26549:103;;;;-1:-1:-1;;;26549:103:0;;;;;;;:::i;:::-;26663:39;26677:4;26683:2;26687:7;26696:5;26663:13;:39::i;:::-;26382:328;;;;:::o;35822:468::-;28285:4;28309:16;;;:7;:16;;;;;;35895:13;;-1:-1:-1;;;;;28309:16:0;35921:76;;;;-1:-1:-1;;;35921:76:0;;14535:2:1;35921:76:0;;;14517:21:1;14574:2;14554:18;;;14547:30;14613:34;14593:18;;;14586:62;-1:-1:-1;;;14664:18:1;;;14657:45;14719:19;;35921:76:0;14333:411:1;35921:76:0;36030:15;;36011;:34;36008:154;;36061:89;;;;;;;;;;;;;;;;;;35822:468;-1:-1:-1;;35822:468:0:o;36008:154::-;36213:1;36195:7;36189:21;;;;;:::i;:::-;;;:25;:93;;;;;;;;;;;;;;;;;36241:7;36250:25;36267:7;36250:16;:25::i;:::-;36224:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36182:100;35822:468;-1:-1:-1;;35822:468:0:o;34889:609::-;34957:1;34948:6;:10;34940:46;;;;-1:-1:-1;;;34940:46:0;;15771:2:1;34940:46:0;;;15753:21:1;15810:2;15790:18;;;15783:30;15849:25;15829:18;;;15822:53;15892:18;;34940:46:0;15569:347:1;34940:46:0;35015:2;35005:6;:12;;34997:40;;;;-1:-1:-1;;;34997:40:0;;9935:2:1;34997:40:0;;;9917:21:1;9974:2;9954:18;;;9947:30;-1:-1:-1;;;9993:18:1;;;9986:45;10048:18;;34997:40:0;9733:339:1;34997:40:0;34594:5;35070:6;35056:11;;:20;;;;:::i;:::-;:33;;35048:68;;;;-1:-1:-1;;;35048:68:0;;12289:2:1;35048:68:0;;;12271:21:1;12328:2;12308:18;;;12301:30;-1:-1:-1;;;12347:18:1;;;12340:52;12409:18;;35048:68:0;12087:346:1;35048:68:0;35148:19;35161:6;34551:10;35148:19;:::i;:::-;35135:9;:32;35127:67;;;;-1:-1:-1;;;35127:67:0;;10692:2:1;35127:67:0;;;10674:21:1;10731:2;10711:18;;;10704:30;-1:-1:-1;;;10750:18:1;;;10743:52;10812:18;;35127:67:0;10490:346:1;35127:67:0;35232:14;;35213:15;:33;;35205:66;;;;-1:-1:-1;;;35205:66:0;;13775:2:1;35205:66:0;;;13757:21:1;13814:2;13794:18;;;13787:30;-1:-1:-1;;;13833:18:1;;;13826:51;13894:18;;35205:66:0;13573:345:1;35205:66:0;35290:10;;;;:19;35282:47;;;;-1:-1:-1;;;35282:47:0;;16474:2:1;35282:47:0;;;16456:21:1;16513:2;16493:18;;;16486:30;-1:-1:-1;;;16532:18:1;;;16525:45;16587:18;;35282:47:0;16272:339:1;35282:47:0;35356:6;35352:88;35372:6;35368:1;:10;35352:88;;;35398:42;35408:10;35438:1;35420:11;;35434:1;35420:15;;;;:::i;35398:42::-;35380:3;;;;:::i;:::-;;;;35352:88;;;;35484:6;35469:11;;:21;;;;;;;:::i;14418:192::-;13564:7;13591:6;-1:-1:-1;;;;;13591:6:0;738:10;13738:23;13730:68;;;;-1:-1:-1;;;13730:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14507:22:0;::::1;14499:73;;;::::0;-1:-1:-1;;;14499:73:0;;8412:2:1;14499:73:0::1;::::0;::::1;8394:21:1::0;8451:2;8431:18;;;8424:30;8490:34;8470:18;;;8463:62;-1:-1:-1;;;8541:18:1;;;8534:36;8587:19;;14499:73:0::1;8210:402:1::0;14499:73:0::1;14583:19;14593:8;14583:9;:19::i;32202:174::-:0;32277:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32277:29:0;-1:-1:-1;;;;;32277:29:0;;;;;;;;:24;;32331:23;32277:24;32331:14;:23::i;:::-;-1:-1:-1;;;;;32322:46:0;;;;;;;;;;;32202:174;;:::o;28514:348::-;28607:4;28309:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28309:16:0;28624:73;;;;-1:-1:-1;;;28624:73:0;;10279:2:1;28624:73:0;;;10261:21:1;10318:2;10298:18;;;10291:30;10357:34;10337:18;;;10330:62;-1:-1:-1;;;10408:18:1;;;10401:42;10460:19;;28624:73:0;10077:408:1;28624:73:0;28708:13;28724:23;28739:7;28724:14;:23::i;:::-;28708:39;;28777:5;-1:-1:-1;;;;;28766:16:0;:7;-1:-1:-1;;;;;28766:16:0;;:51;;;;28810:7;-1:-1:-1;;;;;28786:31:0;:20;28798:7;28786:11;:20::i;:::-;-1:-1:-1;;;;;28786:31:0;;28766:51;:87;;;-1:-1:-1;;;;;;25606:25:0;;;25582:4;25606:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28821:32;28758:96;28514:348;-1:-1:-1;;;;28514:348:0:o;31506:578::-;31665:4;-1:-1:-1;;;;;31638:31:0;:23;31653:7;31638:14;:23::i;:::-;-1:-1:-1;;;;;31638:31:0;;31630:85;;;;-1:-1:-1;;;31630:85:0;;14125:2:1;31630:85:0;;;14107:21:1;14164:2;14144:18;;;14137:30;14203:34;14183:18;;;14176:62;-1:-1:-1;;;14254:18:1;;;14247:39;14303:19;;31630:85:0;13923:405:1;31630:85:0;-1:-1:-1;;;;;31734:16:0;;31726:65;;;;-1:-1:-1;;;31726:65:0;;9176:2:1;31726:65:0;;;9158:21:1;9215:2;9195:18;;;9188:30;9254:34;9234:18;;;9227:62;-1:-1:-1;;;9305:18:1;;;9298:34;9349:19;;31726:65:0;8974:400:1;31726:65:0;31908:29;31925:1;31929:7;31908:8;:29::i;:::-;-1:-1:-1;;;;;31950:15:0;;;;;;:9;:15;;;;;:20;;31969:1;;31950:15;:20;;31969:1;;31950:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31981:13:0;;;;;;:9;:13;;;;;:18;;31998:1;;31981:13;:18;;31998:1;;31981:18;:::i;:::-;;;;-1:-1:-1;;32010:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32010:21:0;-1:-1:-1;;;;;32010:21:0;;;;;;;;;32049:27;;32010:16;;32049:27;;;;;;;31506:578;;;:::o;14618:173::-;14674:16;14693:6;;-1:-1:-1;;;;;14710:17:0;;;-1:-1:-1;;;;;;14710:17:0;;;;;;14743:40;;14693:6;;;;;;;14743:40;;14674:16;14743:40;14663:128;14618:173;:::o;29204:110::-;29280:26;29290:2;29294:7;29280:26;;;;;;;;;;;;:9;:26::i;27592:315::-;27749:28;27759:4;27765:2;27769:7;27749:9;:28::i;:::-;27796:48;27819:4;27825:2;27829:7;27838:5;27796:22;:48::i;:::-;27788:111;;;;-1:-1:-1;;;27788:111:0;;;;;;;:::i;1123:723::-;1179:13;1400:10;1396:53;;-1:-1:-1;;1427:10:0;;;;;;;;;;;;-1:-1:-1;;;1427:10:0;;;;;1123:723::o;1396:53::-;1474:5;1459:12;1515:78;1522:9;;1515:78;;1548:8;;;;:::i;:::-;;-1:-1:-1;1571:10:0;;-1:-1:-1;1579:2:0;1571:10;;:::i;:::-;;;1515:78;;;1603:19;1635:6;1625:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1625:17:0;;1603:39;;1653:154;1660:10;;1653:154;;1687:11;1697:1;1687:11;;:::i;:::-;;-1:-1:-1;1756:10:0;1764:2;1756:5;:10;:::i;:::-;1743:24;;:2;:24;:::i;:::-;1730:39;;1713:6;1720;1713:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1713:56:0;;;;;;;;-1:-1:-1;1784:11:0;1793:2;1784:11;;:::i;:::-;;;1653:154;;29541:321;29671:18;29677:2;29681:7;29671:5;:18::i;:::-;29722:54;29753:1;29757:2;29761:7;29770:5;29722:22;:54::i;:::-;29700:154;;;;-1:-1:-1;;;29700:154:0;;;;;;;:::i;32941:799::-;33096:4;-1:-1:-1;;;;;33117:13:0;;3911:20;3959:8;33113:620;;33153:72;;-1:-1:-1;;;33153:72:0;;-1:-1:-1;;;;;33153:36:0;;;;;:72;;738:10;;33204:4;;33210:7;;33219:5;;33153:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33153:72:0;;;;;;;;-1:-1:-1;;33153:72:0;;;;;;;;;;;;:::i;:::-;;;33149:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33395:13:0;;33391:272;;33438:60;;-1:-1:-1;;;33438:60:0;;;;;;;:::i;33391:272::-;33613:6;33607:13;33598:6;33594:2;33590:15;33583:38;33149:529;-1:-1:-1;;;;;;33276:51:0;-1:-1:-1;;;33276:51:0;;-1:-1:-1;33269:58:0;;33113:620;-1:-1:-1;33717:4:0;32941:799;;;;;;:::o;30198:382::-;-1:-1:-1;;;;;30278:16:0;;30270:61;;;;-1:-1:-1;;;30270:61:0;;12640:2:1;30270:61:0;;;12622:21:1;;;12659:18;;;12652:30;12718:34;12698:18;;;12691:62;12770:18;;30270:61:0;12438:356:1;30270:61:0;28285:4;28309:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28309:16:0;:30;30342:58;;;;-1:-1:-1;;;30342:58:0;;8819:2:1;30342:58:0;;;8801:21:1;8858:2;8838:18;;;8831:30;8897;8877:18;;;8870:58;8945:18;;30342:58:0;8617:352:1;30342:58:0;-1:-1:-1;;;;;30471:13:0;;;;;;:9;:13;;;;;:18;;30488:1;;30471:13;:18;;30488:1;;30471:18;:::i;:::-;;;;-1:-1:-1;;30500:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30500:21:0;-1:-1:-1;;;;;30500:21:0;;;;;;;;30539:33;;30500:16;;;30539:33;;30500:16;;30539:33;30198:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:1;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:1:o;5305:185::-;5347:3;5385:5;5379:12;5400:52;5445:6;5440:3;5433:4;5426:5;5422:16;5400:52;:::i;:::-;5468:16;;;;;5305:185;-1:-1:-1;;5305:185:1:o;5495:1174::-;5671:3;5700:1;5733:6;5727:13;5763:3;5785:1;5813:9;5809:2;5805:18;5795:28;;5873:2;5862:9;5858:18;5895;5885:61;;5939:4;5931:6;5927:17;5917:27;;5885:61;5965:2;6013;6005:6;6002:14;5982:18;5979:38;5976:165;;;-1:-1:-1;;;6040:33:1;;6096:4;6093:1;6086:15;6126:4;6047:3;6114:17;5976:165;6157:18;6184:104;;;;6302:1;6297:320;;;;6150:467;;6184:104;-1:-1:-1;;6217:24:1;;6205:37;;6262:16;;;;-1:-1:-1;6184:104:1;;6297:320;17151:1;17144:14;;;17188:4;17175:18;;6392:1;6406:165;6420:6;6417:1;6414:13;6406:165;;;6498:14;;6485:11;;;6478:35;6541:16;;;;6435:10;;6406:165;;;6410:3;;6600:6;6595:3;6591:16;6584:23;;6150:467;;;;;;;6633:30;6659:3;6651:6;6633:30;:::i;:::-;6626:37;5495:1174;-1:-1:-1;;;;;5495:1174:1:o;6882:488::-;-1:-1:-1;;;;;7151:15:1;;;7133:34;;7203:15;;7198:2;7183:18;;7176:43;7250:2;7235:18;;7228:34;;;7298:3;7293:2;7278:18;;7271:31;;;7076:4;;7319:45;;7344:19;;7336:6;7319:45;:::i;:::-;7311:53;6882:488;-1:-1:-1;;;;;;6882:488:1:o;7567:219::-;7716:2;7705:9;7698:21;7679:4;7736:44;7776:2;7765:9;7761:18;7753:6;7736:44;:::i;7791:414::-;7993:2;7975:21;;;8032:2;8012:18;;;8005:30;8071:34;8066:2;8051:18;;8044:62;-1:-1:-1;;;8137:2:1;8122:18;;8115:48;8195:3;8180:19;;7791:414::o;13212:356::-;13414:2;13396:21;;;13433:18;;;13426:30;13492:34;13487:2;13472:18;;13465:62;13559:2;13544:18;;13212:356::o;15151:413::-;15353:2;15335:21;;;15392:2;15372:18;;;15365:30;15431:34;15426:2;15411:18;;15404:62;-1:-1:-1;;;15497:2:1;15482:18;;15475:47;15554:3;15539:19;;15151:413::o;16798:275::-;16869:2;16863:9;16934:2;16915:13;;-1:-1:-1;;16911:27:1;16899:40;;16969:18;16954:34;;16990:22;;;16951:62;16948:88;;;17016:18;;:::i;:::-;17052:2;17045:22;16798:275;;-1:-1:-1;16798:275:1:o;17204:128::-;17244:3;17275:1;17271:6;17268:1;17265:13;17262:39;;;17281:18;;:::i;:::-;-1:-1:-1;17317:9:1;;17204:128::o;17337:120::-;17377:1;17403;17393:35;;17408:18;;:::i;:::-;-1:-1:-1;17442:9:1;;17337:120::o;17462:168::-;17502:7;17568:1;17564;17560:6;17556:14;17553:1;17550:21;17545:1;17538:9;17531:17;17527:45;17524:71;;;17575:18;;:::i;:::-;-1:-1:-1;17615:9:1;;17462:168::o;17635:125::-;17675:4;17703:1;17700;17697:8;17694:34;;;17708:18;;:::i;:::-;-1:-1:-1;17745:9:1;;17635:125::o;17765:258::-;17837:1;17847:113;17861:6;17858:1;17855:13;17847:113;;;17937:11;;;17931:18;17918:11;;;17911:39;17883:2;17876:10;17847:113;;;17978:6;17975:1;17972:13;17969:48;;;-1:-1:-1;;18013:1:1;17995:16;;17988:27;17765:258::o;18028:380::-;18107:1;18103:12;;;;18150;;;18171:61;;18225:4;18217:6;18213:17;18203:27;;18171:61;18278:2;18270:6;18267:14;18247:18;18244:38;18241:161;;;18324:10;18319:3;18315:20;18312:1;18305:31;18359:4;18356:1;18349:15;18387:4;18384:1;18377:15;18241:161;;18028:380;;;:::o;18413:135::-;18452:3;-1:-1:-1;;18473:17:1;;18470:43;;;18493:18;;:::i;:::-;-1:-1:-1;18540:1:1;18529:13;;18413:135::o;18553:112::-;18585:1;18611;18601:35;;18616:18;;:::i;:::-;-1:-1:-1;18650:9:1;;18553:112::o;18670:127::-;18731:10;18726:3;18722:20;18719:1;18712:31;18762:4;18759:1;18752:15;18786:4;18783:1;18776:15;18802:127;18863:10;18858:3;18854:20;18851:1;18844:31;18894:4;18891:1;18884:15;18918:4;18915:1;18908:15;18934:127;18995:10;18990:3;18986:20;18983:1;18976:31;19026:4;19023:1;19016:15;19050:4;19047:1;19040:15;19066:127;19127:10;19122:3;19118:20;19115:1;19108:31;19158:4;19155:1;19148:15;19182:4;19179:1;19172:15;19198:131;-1:-1:-1;;;;;;19272:32:1;;19262:43;;19252:71;;19319:1;19316;19309:12
Swarm Source
ipfs://f3679e5605dcd844245a9052ec1bed4a44c2c72351b2e8b9f8adb1fd45f396ed
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.