ERC-721
Overview
Max Total Supply
2,861 OG
Holders
233
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
80 OGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OrdinalGogh
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-09 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.19; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.19; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.19; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.19; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.19; /** * @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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.19; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.19; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.19; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.19; /** * @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.19; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.19; contract OrdinalGogh is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; bool public burn; bool public paused; uint256 public free = 0; string public _baseTokenURI; uint256 public maxSupply = 3000; uint256 public freeSupply = 2000; uint256 public cost = 0.001 ether; uint256 public burnFee = 0 ether; uint256 public maxMint = 20; uint256 public maxFreeMint = 5; uint256 public btc_Address = 62; address public deadAddress = 0x000000000000000000000000000000000000dEaD; mapping(uint256 => string) public burns; event burnNFT(uint256 tokenId, string destination); constructor() ERC721A("OrdinalGogh", "OG") {} function mint(uint256 _mintAmount) public payable nonReentrant { require( _mintAmount > 0 && _mintAmount <= maxMint, "Invalid amount!" ); require( totalSupply() + _mintAmount <= maxSupply, "Max supply!" ); require(!paused, "Paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _safeMint(_msgSender(), _mintAmount); } function freeMint(uint256 _mintAmount) public nonReentrant { require( _mintAmount > 0 && _mintAmount <= maxFreeMint, "Invalid amount!" ); require(free + _mintAmount <= freeSupply, "Free supply exceeded!"); require( totalSupply() + _mintAmount <= maxSupply, "Max supply!" ); require(!paused, "Paused!"); _safeMint(_msgSender(), _mintAmount); free += _mintAmount; } function burnNft(uint256 tokenId, string memory destination) public payable nonReentrant { require(burn, "Burn disabled"); require( bytes(destination).length == btc_Address, "Only taproot address can be used" ); require(msg.value >= burnFee, "Insufficient funds!"); burns[tokenId] = destination; safeTransferFrom(msg.sender, deadAddress, tokenId); emit burnNFT(tokenId, destination); } function adminMint(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setBurn(bool _state) public onlyOwner { burn = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setFee(uint256 _fee) public onlyOwner { burnFee = _fee; } function setMaxMintPerTx(uint256 _amount) public onlyOwner { maxMint = _amount; } function setFreePerTx(uint256 _amount) public onlyOwner { maxFreeMint = _amount; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setFreeSupply(uint256 _freeSupply) public onlyOwner { freeSupply = _freeSupply; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI does not exist!"); return bytes(_baseTokenURI).length > 0 ? string( abi.encodePacked( _baseTokenURI, _tokenId.toString(), ".json" ) ) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"destination","type":"string"}],"name":"burnNFT","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"btc_Address","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"destination","type":"string"}],"name":"burnNft","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"burns","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600b819055610bb8600d556107d0600e5566038d7ea4c68000600f55601055601460118190556005601255603e60135580546001600160a01b03191661dead1790553480156200005557600080fd5b506040518060400160405280600b81526020016a09ee4c8d2dcc2d88edeced60ab1b815250604051806040016040528060028152602001614f4760f01b8152508160029081620000a69190620001ca565b506003620000b58282620001ca565b5050600160005550620000c833620000d3565b600160095562000296565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015057607f821691505b6020821081036200017157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c557600081815260208120601f850160051c81016020861015620001a05750805b601f850160051c820191505b81811015620001c157828155600101620001ac565b5050505b505050565b81516001600160401b03811115620001e657620001e662000125565b620001fe81620001f784546200013b565b8462000177565b602080601f8311600181146200023657600084156200021d5750858301515b600019600386901b1c1916600185901b178555620001c1565b600085815260208120601f198616915b82811015620002675788860151825594840194600190910190840162000246565b5085821015620002865787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61242f80620002a66000396000f3fe6080604052600436106102675760003560e01c80636f8b44b011610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146106e7578063e985e9c5146106fd578063f2fde38b1461071d578063f37c1c801461073d578063f676308a14610753578063fce589d81461077357600080fd5b8063b88d4fde1461065f578063bd55cf0d1461067f578063c87b56dd1461069f578063cd22faeb146106bf578063cfc86f7b146106d257600080fd5b80638da5cb5b116101085780638da5cb5b146105c357806395d89b41146105e1578063a0712d68146105f6578063a22cb46514610609578063a591252d14610629578063a86eb2921461063f57600080fd5b80636f8b44b01461053857806370a0823114610558578063715018a6146105785780637501f7411461058d5780637c928fe9146105a357600080fd5b806324a6ab0c116101dd57806344df8e70116101a157806344df8e701461047f57806355f804b3146104995780635c975abb146104b9578063616cdb1e146104d85780636352211e146104f857806369fe0e2d1461051857600080fd5b806324a6ab0c146103f457806327c8f8351461040a5780633ccfd60b1461042a57806342842e0e1461043f57806344a0d68a1461045f57600080fd5b80630dc28efe1161022f5780630dc28efe1461033d5780631370128e1461035d57806313faede61461038157806316c38b3c1461039757806318160ddd146103b757806323b872dd146103d457600080fd5b806301ffc9a71461026c578063027f2861146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611c04565b610789565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004611c28565b6107db565b005b3480156102cf57600080fd5b506102d8610813565b6040516102989190611c91565b3480156102f157600080fd5b50610305610300366004611c28565b6108a5565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c1610338366004611cc0565b6108e9565b34801561034957600080fd5b506102c1610358366004611cea565b610976565b34801561036957600080fd5b50610373600b5481565b604051908152602001610298565b34801561038d57600080fd5b50610373600f5481565b3480156103a357600080fd5b506102c16103b2366004611d26565b6109ae565b3480156103c357600080fd5b506001546000540360001901610373565b3480156103e057600080fd5b506102c16103ef366004611d41565b6109f2565b34801561040057600080fd5b50610373600e5481565b34801561041657600080fd5b50601454610305906001600160a01b031681565b34801561043657600080fd5b506102c16109fd565b34801561044b57600080fd5b506102c161045a366004611d41565b610a7f565b34801561046b57600080fd5b506102c161047a366004611c28565b610a9a565b34801561048b57600080fd5b50600a5461028c9060ff1681565b3480156104a557600080fd5b506102c16104b4366004611d7d565b610ac9565b3480156104c557600080fd5b50600a5461028c90610100900460ff1681565b3480156104e457600080fd5b506102c16104f3366004611c28565b610b00565b34801561050457600080fd5b50610305610513366004611c28565b610b2f565b34801561052457600080fd5b506102c1610533366004611c28565b610b41565b34801561054457600080fd5b506102c1610553366004611c28565b610b70565b34801561056457600080fd5b50610373610573366004611dee565b610b9f565b34801561058457600080fd5b506102c1610bed565b34801561059957600080fd5b5061037360115481565b3480156105af57600080fd5b506102c16105be366004611c28565b610c23565b3480156105cf57600080fd5b506008546001600160a01b0316610305565b3480156105ed57600080fd5b506102d8610db3565b6102c1610604366004611c28565b610dc2565b34801561061557600080fd5b506102c1610624366004611e09565b610f35565b34801561063557600080fd5b5061037360125481565b34801561064b57600080fd5b506102d861065a366004611c28565b610fca565b34801561066b57600080fd5b506102c161067a366004611ebe565b611064565b34801561068b57600080fd5b506102c161069a366004611d26565b6110b5565b3480156106ab57600080fd5b506102d86106ba366004611c28565b6110f2565b6102c16106cd366004611f39565b61119b565b3480156106de57600080fd5b506102d8611311565b3480156106f357600080fd5b50610373600d5481565b34801561070957600080fd5b5061028c610718366004611f93565b61131e565b34801561072957600080fd5b506102c1610738366004611dee565b61134c565b34801561074957600080fd5b5061037360135481565b34801561075f57600080fd5b506102c161076e366004611c28565b6113e4565b34801561077f57600080fd5b5061037360105481565b60006001600160e01b031982166380ac58cd60e01b14806107ba57506001600160e01b03198216635b5e139f60e01b145b806107d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461080e5760405162461bcd60e51b815260040161080590611fbd565b60405180910390fd5b601255565b60606002805461082290611ff2565b80601f016020809104026020016040519081016040528092919081815260200182805461084e90611ff2565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006108b082611413565b6108cd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f482610b2f565b9050806001600160a01b0316836001600160a01b0316036109285760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109485750610946813361131e565b155b15610966576040516367d9dca160e11b815260040160405180910390fd5b61097183838361144c565b505050565b6008546001600160a01b031633146109a05760405162461bcd60e51b815260040161080590611fbd565b6109aa81836114a8565b5050565b6008546001600160a01b031633146109d85760405162461bcd60e51b815260040161080590611fbd565b600a80549115156101000261ff0019909216919091179055565b6109718383836114c2565b6008546001600160a01b03163314610a275760405162461bcd60e51b815260040161080590611fbd565b604051600090339047908381818185875af1925050503d8060008114610a69576040519150601f19603f3d011682016040523d82523d6000602084013e610a6e565b606091505b5050905080610a7c57600080fd5b50565b61097183838360405180602001604052806000815250611064565b6008546001600160a01b03163314610ac45760405162461bcd60e51b815260040161080590611fbd565b600f55565b6008546001600160a01b03163314610af35760405162461bcd60e51b815260040161080590611fbd565b600c61097182848361207a565b6008546001600160a01b03163314610b2a5760405162461bcd60e51b815260040161080590611fbd565b601155565b6000610b3a826116b0565b5192915050565b6008546001600160a01b03163314610b6b5760405162461bcd60e51b815260040161080590611fbd565b601055565b6008546001600160a01b03163314610b9a5760405162461bcd60e51b815260040161080590611fbd565b600d55565b60006001600160a01b038216610bc8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c175760405162461bcd60e51b815260040161080590611fbd565b610c2160006117d7565b565b600260095403610c455760405162461bcd60e51b815260040161080590612139565b60026009558015801590610c5b57506012548111155b610c995760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b6044820152606401610805565b600e5481600b54610caa9190612186565b1115610cf05760405162461bcd60e51b81526020600482015260156024820152744672656520737570706c792065786365656465642160581b6044820152606401610805565b600d546001546000548391900360001901610d0b9190612186565b1115610d475760405162461bcd60e51b815260206004820152600b60248201526a4d617820737570706c792160a81b6044820152606401610805565b600a54610100900460ff1615610d895760405162461bcd60e51b81526020600482015260076024820152665061757365642160c81b6044820152606401610805565b610d94335b826114a8565b80600b6000828254610da69190612186565b9091555050600160095550565b60606003805461082290611ff2565b600260095403610de45760405162461bcd60e51b815260040161080590612139565b60026009558015801590610dfa57506011548111155b610e385760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b6044820152606401610805565b600d546001546000548391900360001901610e539190612186565b1115610e8f5760405162461bcd60e51b815260206004820152600b60248201526a4d617820737570706c792160a81b6044820152606401610805565b600a54610100900460ff1615610ed15760405162461bcd60e51b81526020600482015260076024820152665061757365642160c81b6044820152606401610805565b80600f54610edf9190612199565b341015610f245760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610805565b610f2d33610d8e565b506001600955565b336001600160a01b03831603610f5e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60156020526000908152604090208054610fe390611ff2565b80601f016020809104026020016040519081016040528092919081815260200182805461100f90611ff2565b801561105c5780601f106110315761010080835404028352916020019161105c565b820191906000526020600020905b81548152906001019060200180831161103f57829003601f168201915b505050505081565b61106f8484846114c2565b6001600160a01b0383163b15158015611091575061108f84848484611829565b155b156110af576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110df5760405162461bcd60e51b815260040161080590611fbd565b600a805460ff1916911515919091179055565b60606110fd82611413565b61113f5760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b6044820152606401610805565b6000600c805461114e90611ff2565b90501161116a57604051806020016040528060008152506107d5565b600c61117583611915565b6040516020016111869291906121b0565b60405160208183030381529060405292915050565b6002600954036111bd5760405162461bcd60e51b815260040161080590612139565b6002600955600a5460ff166112045760405162461bcd60e51b815260206004820152600d60248201526c109d5c9b88191a5cd8589b1959609a1b6044820152606401610805565b6013548151146112565760405162461bcd60e51b815260206004820181905260248201527f4f6e6c7920746170726f6f7420616464726573732063616e20626520757365646044820152606401610805565b60105434101561129e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610805565b60008281526015602052604090206112b68282612247565b506014546112cf9033906001600160a01b031684610a7f565b7f40264b9b41a6736e72d1dfdff8c1397191624569794614f64f24c65e4e1e78f38282604051611300929190612306565b60405180910390a150506001600955565b600c8054610fe390611ff2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146113765760405162461bcd60e51b815260040161080590611fbd565b6001600160a01b0381166113db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610805565b610a7c816117d7565b6008546001600160a01b0316331461140e5760405162461bcd60e51b815260040161080590611fbd565b600e55565b600081600111158015611427575060005482105b80156107d5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109aa828260405180602001604052806000815250611a15565b60006114cd826116b0565b9050836001600160a01b031681600001516001600160a01b0316146115045760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115225750611522853361131e565b8061153d575033611532846108a5565b6001600160a01b0316145b90508061155d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661158457604051633a954ecd60e21b815260040160405180910390fd5b6115906000848761144c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661166457600054821461166457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156116e0575060005481105b156117be57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117bc5780516001600160a01b031615611753579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156117b7579392505050565b611753565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061185e90339089908890889060040161231f565b6020604051808303816000875af1925050508015611899575060408051601f3d908101601f191682019092526118969181019061235c565b60015b6118f7573d8080156118c7576040519150601f19603f3d011682016040523d82523d6000602084013e6118cc565b606091505b5080516000036118ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361193c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611966578061195081612379565b915061195f9050600a836123a8565b9150611940565b6000816001600160401b0381111561198057611980611e33565b6040519080825280601f01601f1916602001820160405280156119aa576020820181803683370190505b5090505b841561190d576119bf6001836123bc565b91506119cc600a866123cf565b6119d7906030612186565b60f81b8183815181106119ec576119ec6123e3565b60200101906001600160f81b031916908160001a905350611a0e600a866123a8565b94506119ae565b61097183838360016000546001600160a01b038516611a4657604051622e076360e81b815260040160405180910390fd5b83600003611a675760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b1857506001600160a01b0387163b15155b15611ba0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b696000888480600101955088611829565b611b86576040516368d2bf6b60e11b815260040160405180910390fd5b808203611b1e578260005414611b9b57600080fd5b611be5565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611ba1575b506000556116a9565b6001600160e01b031981168114610a7c57600080fd5b600060208284031215611c1657600080fd5b8135611c2181611bee565b9392505050565b600060208284031215611c3a57600080fd5b5035919050565b60005b83811015611c5c578181015183820152602001611c44565b50506000910152565b60008151808452611c7d816020860160208601611c41565b601f01601f19169290920160200192915050565b602081526000611c216020830184611c65565b80356001600160a01b0381168114611cbb57600080fd5b919050565b60008060408385031215611cd357600080fd5b611cdc83611ca4565b946020939093013593505050565b60008060408385031215611cfd57600080fd5b82359150611d0d60208401611ca4565b90509250929050565b80358015158114611cbb57600080fd5b600060208284031215611d3857600080fd5b611c2182611d16565b600080600060608486031215611d5657600080fd5b611d5f84611ca4565b9250611d6d60208501611ca4565b9150604084013590509250925092565b60008060208385031215611d9057600080fd5b82356001600160401b0380821115611da757600080fd5b818501915085601f830112611dbb57600080fd5b813581811115611dca57600080fd5b866020828501011115611ddc57600080fd5b60209290920196919550909350505050565b600060208284031215611e0057600080fd5b611c2182611ca4565b60008060408385031215611e1c57600080fd5b611e2583611ca4565b9150611d0d60208401611d16565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611e6357611e63611e33565b604051601f8501601f19908116603f01168101908282118183101715611e8b57611e8b611e33565b81604052809350858152868686011115611ea457600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611ed457600080fd5b611edd85611ca4565b9350611eeb60208601611ca4565b92506040850135915060608501356001600160401b03811115611f0d57600080fd5b8501601f81018713611f1e57600080fd5b611f2d87823560208401611e49565b91505092959194509250565b60008060408385031215611f4c57600080fd5b8235915060208301356001600160401b03811115611f6957600080fd5b8301601f81018513611f7a57600080fd5b611f8985823560208401611e49565b9150509250929050565b60008060408385031215611fa657600080fd5b611faf83611ca4565b9150611d0d60208401611ca4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061200657607f821691505b60208210810361202657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561097157600081815260208120601f850160051c810160208610156120535750805b601f850160051c820191505b818110156120725782815560010161205f565b505050505050565b6001600160401b0383111561209157612091611e33565b6120a58361209f8354611ff2565b8361202c565b6000601f8411600181146120d957600085156120c15750838201355b600019600387901b1c1916600186901b1783556116a9565b600083815260209020601f19861690835b8281101561210a57868501358255602094850194600190920191016120ea565b50868210156121275760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107d5576107d5612170565b80820281158282048414176107d5576107d5612170565b60008084546121be81611ff2565b600182811680156121d657600181146121eb5761221a565b60ff198416875282151583028701945061221a565b8860005260208060002060005b858110156122115781548a8201529084019082016121f8565b50505082870194505b50505050835161222e818360208801611c41565b64173539b7b760d91b9101908152600501949350505050565b81516001600160401b0381111561226057612260611e33565b6122748161226e8454611ff2565b8461202c565b602080601f8311600181146122a957600084156122915750858301515b600019600386901b1c1916600185901b178555612072565b600085815260208120601f198616915b828110156122d8578886015182559484019460019091019084016122b9565b50858210156122f65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b82815260406020820152600061190d6040830184611c65565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061235290830184611c65565b9695505050505050565b60006020828403121561236e57600080fd5b8151611c2181611bee565b60006001820161238b5761238b612170565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826123b7576123b7612392565b500490565b818103818111156107d5576107d5612170565b6000826123de576123de612392565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220edee2b4adb2abc7923f6d4727e63544564162f6a51baac0ba464f11a446c7e5164736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102675760003560e01c80636f8b44b011610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146106e7578063e985e9c5146106fd578063f2fde38b1461071d578063f37c1c801461073d578063f676308a14610753578063fce589d81461077357600080fd5b8063b88d4fde1461065f578063bd55cf0d1461067f578063c87b56dd1461069f578063cd22faeb146106bf578063cfc86f7b146106d257600080fd5b80638da5cb5b116101085780638da5cb5b146105c357806395d89b41146105e1578063a0712d68146105f6578063a22cb46514610609578063a591252d14610629578063a86eb2921461063f57600080fd5b80636f8b44b01461053857806370a0823114610558578063715018a6146105785780637501f7411461058d5780637c928fe9146105a357600080fd5b806324a6ab0c116101dd57806344df8e70116101a157806344df8e701461047f57806355f804b3146104995780635c975abb146104b9578063616cdb1e146104d85780636352211e146104f857806369fe0e2d1461051857600080fd5b806324a6ab0c146103f457806327c8f8351461040a5780633ccfd60b1461042a57806342842e0e1461043f57806344a0d68a1461045f57600080fd5b80630dc28efe1161022f5780630dc28efe1461033d5780631370128e1461035d57806313faede61461038157806316c38b3c1461039757806318160ddd146103b757806323b872dd146103d457600080fd5b806301ffc9a71461026c578063027f2861146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611c04565b610789565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004611c28565b6107db565b005b3480156102cf57600080fd5b506102d8610813565b6040516102989190611c91565b3480156102f157600080fd5b50610305610300366004611c28565b6108a5565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c1610338366004611cc0565b6108e9565b34801561034957600080fd5b506102c1610358366004611cea565b610976565b34801561036957600080fd5b50610373600b5481565b604051908152602001610298565b34801561038d57600080fd5b50610373600f5481565b3480156103a357600080fd5b506102c16103b2366004611d26565b6109ae565b3480156103c357600080fd5b506001546000540360001901610373565b3480156103e057600080fd5b506102c16103ef366004611d41565b6109f2565b34801561040057600080fd5b50610373600e5481565b34801561041657600080fd5b50601454610305906001600160a01b031681565b34801561043657600080fd5b506102c16109fd565b34801561044b57600080fd5b506102c161045a366004611d41565b610a7f565b34801561046b57600080fd5b506102c161047a366004611c28565b610a9a565b34801561048b57600080fd5b50600a5461028c9060ff1681565b3480156104a557600080fd5b506102c16104b4366004611d7d565b610ac9565b3480156104c557600080fd5b50600a5461028c90610100900460ff1681565b3480156104e457600080fd5b506102c16104f3366004611c28565b610b00565b34801561050457600080fd5b50610305610513366004611c28565b610b2f565b34801561052457600080fd5b506102c1610533366004611c28565b610b41565b34801561054457600080fd5b506102c1610553366004611c28565b610b70565b34801561056457600080fd5b50610373610573366004611dee565b610b9f565b34801561058457600080fd5b506102c1610bed565b34801561059957600080fd5b5061037360115481565b3480156105af57600080fd5b506102c16105be366004611c28565b610c23565b3480156105cf57600080fd5b506008546001600160a01b0316610305565b3480156105ed57600080fd5b506102d8610db3565b6102c1610604366004611c28565b610dc2565b34801561061557600080fd5b506102c1610624366004611e09565b610f35565b34801561063557600080fd5b5061037360125481565b34801561064b57600080fd5b506102d861065a366004611c28565b610fca565b34801561066b57600080fd5b506102c161067a366004611ebe565b611064565b34801561068b57600080fd5b506102c161069a366004611d26565b6110b5565b3480156106ab57600080fd5b506102d86106ba366004611c28565b6110f2565b6102c16106cd366004611f39565b61119b565b3480156106de57600080fd5b506102d8611311565b3480156106f357600080fd5b50610373600d5481565b34801561070957600080fd5b5061028c610718366004611f93565b61131e565b34801561072957600080fd5b506102c1610738366004611dee565b61134c565b34801561074957600080fd5b5061037360135481565b34801561075f57600080fd5b506102c161076e366004611c28565b6113e4565b34801561077f57600080fd5b5061037360105481565b60006001600160e01b031982166380ac58cd60e01b14806107ba57506001600160e01b03198216635b5e139f60e01b145b806107d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461080e5760405162461bcd60e51b815260040161080590611fbd565b60405180910390fd5b601255565b60606002805461082290611ff2565b80601f016020809104026020016040519081016040528092919081815260200182805461084e90611ff2565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006108b082611413565b6108cd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f482610b2f565b9050806001600160a01b0316836001600160a01b0316036109285760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109485750610946813361131e565b155b15610966576040516367d9dca160e11b815260040160405180910390fd5b61097183838361144c565b505050565b6008546001600160a01b031633146109a05760405162461bcd60e51b815260040161080590611fbd565b6109aa81836114a8565b5050565b6008546001600160a01b031633146109d85760405162461bcd60e51b815260040161080590611fbd565b600a80549115156101000261ff0019909216919091179055565b6109718383836114c2565b6008546001600160a01b03163314610a275760405162461bcd60e51b815260040161080590611fbd565b604051600090339047908381818185875af1925050503d8060008114610a69576040519150601f19603f3d011682016040523d82523d6000602084013e610a6e565b606091505b5050905080610a7c57600080fd5b50565b61097183838360405180602001604052806000815250611064565b6008546001600160a01b03163314610ac45760405162461bcd60e51b815260040161080590611fbd565b600f55565b6008546001600160a01b03163314610af35760405162461bcd60e51b815260040161080590611fbd565b600c61097182848361207a565b6008546001600160a01b03163314610b2a5760405162461bcd60e51b815260040161080590611fbd565b601155565b6000610b3a826116b0565b5192915050565b6008546001600160a01b03163314610b6b5760405162461bcd60e51b815260040161080590611fbd565b601055565b6008546001600160a01b03163314610b9a5760405162461bcd60e51b815260040161080590611fbd565b600d55565b60006001600160a01b038216610bc8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c175760405162461bcd60e51b815260040161080590611fbd565b610c2160006117d7565b565b600260095403610c455760405162461bcd60e51b815260040161080590612139565b60026009558015801590610c5b57506012548111155b610c995760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b6044820152606401610805565b600e5481600b54610caa9190612186565b1115610cf05760405162461bcd60e51b81526020600482015260156024820152744672656520737570706c792065786365656465642160581b6044820152606401610805565b600d546001546000548391900360001901610d0b9190612186565b1115610d475760405162461bcd60e51b815260206004820152600b60248201526a4d617820737570706c792160a81b6044820152606401610805565b600a54610100900460ff1615610d895760405162461bcd60e51b81526020600482015260076024820152665061757365642160c81b6044820152606401610805565b610d94335b826114a8565b80600b6000828254610da69190612186565b9091555050600160095550565b60606003805461082290611ff2565b600260095403610de45760405162461bcd60e51b815260040161080590612139565b60026009558015801590610dfa57506011548111155b610e385760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b6044820152606401610805565b600d546001546000548391900360001901610e539190612186565b1115610e8f5760405162461bcd60e51b815260206004820152600b60248201526a4d617820737570706c792160a81b6044820152606401610805565b600a54610100900460ff1615610ed15760405162461bcd60e51b81526020600482015260076024820152665061757365642160c81b6044820152606401610805565b80600f54610edf9190612199565b341015610f245760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610805565b610f2d33610d8e565b506001600955565b336001600160a01b03831603610f5e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60156020526000908152604090208054610fe390611ff2565b80601f016020809104026020016040519081016040528092919081815260200182805461100f90611ff2565b801561105c5780601f106110315761010080835404028352916020019161105c565b820191906000526020600020905b81548152906001019060200180831161103f57829003601f168201915b505050505081565b61106f8484846114c2565b6001600160a01b0383163b15158015611091575061108f84848484611829565b155b156110af576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110df5760405162461bcd60e51b815260040161080590611fbd565b600a805460ff1916911515919091179055565b60606110fd82611413565b61113f5760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b6044820152606401610805565b6000600c805461114e90611ff2565b90501161116a57604051806020016040528060008152506107d5565b600c61117583611915565b6040516020016111869291906121b0565b60405160208183030381529060405292915050565b6002600954036111bd5760405162461bcd60e51b815260040161080590612139565b6002600955600a5460ff166112045760405162461bcd60e51b815260206004820152600d60248201526c109d5c9b88191a5cd8589b1959609a1b6044820152606401610805565b6013548151146112565760405162461bcd60e51b815260206004820181905260248201527f4f6e6c7920746170726f6f7420616464726573732063616e20626520757365646044820152606401610805565b60105434101561129e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610805565b60008281526015602052604090206112b68282612247565b506014546112cf9033906001600160a01b031684610a7f565b7f40264b9b41a6736e72d1dfdff8c1397191624569794614f64f24c65e4e1e78f38282604051611300929190612306565b60405180910390a150506001600955565b600c8054610fe390611ff2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146113765760405162461bcd60e51b815260040161080590611fbd565b6001600160a01b0381166113db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610805565b610a7c816117d7565b6008546001600160a01b0316331461140e5760405162461bcd60e51b815260040161080590611fbd565b600e55565b600081600111158015611427575060005482105b80156107d5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109aa828260405180602001604052806000815250611a15565b60006114cd826116b0565b9050836001600160a01b031681600001516001600160a01b0316146115045760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115225750611522853361131e565b8061153d575033611532846108a5565b6001600160a01b0316145b90508061155d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661158457604051633a954ecd60e21b815260040160405180910390fd5b6115906000848761144c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661166457600054821461166457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156116e0575060005481105b156117be57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117bc5780516001600160a01b031615611753579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156117b7579392505050565b611753565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061185e90339089908890889060040161231f565b6020604051808303816000875af1925050508015611899575060408051601f3d908101601f191682019092526118969181019061235c565b60015b6118f7573d8080156118c7576040519150601f19603f3d011682016040523d82523d6000602084013e6118cc565b606091505b5080516000036118ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361193c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611966578061195081612379565b915061195f9050600a836123a8565b9150611940565b6000816001600160401b0381111561198057611980611e33565b6040519080825280601f01601f1916602001820160405280156119aa576020820181803683370190505b5090505b841561190d576119bf6001836123bc565b91506119cc600a866123cf565b6119d7906030612186565b60f81b8183815181106119ec576119ec6123e3565b60200101906001600160f81b031916908160001a905350611a0e600a866123a8565b94506119ae565b61097183838360016000546001600160a01b038516611a4657604051622e076360e81b815260040160405180910390fd5b83600003611a675760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b1857506001600160a01b0387163b15155b15611ba0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b696000888480600101955088611829565b611b86576040516368d2bf6b60e11b815260040160405180910390fd5b808203611b1e578260005414611b9b57600080fd5b611be5565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611ba1575b506000556116a9565b6001600160e01b031981168114610a7c57600080fd5b600060208284031215611c1657600080fd5b8135611c2181611bee565b9392505050565b600060208284031215611c3a57600080fd5b5035919050565b60005b83811015611c5c578181015183820152602001611c44565b50506000910152565b60008151808452611c7d816020860160208601611c41565b601f01601f19169290920160200192915050565b602081526000611c216020830184611c65565b80356001600160a01b0381168114611cbb57600080fd5b919050565b60008060408385031215611cd357600080fd5b611cdc83611ca4565b946020939093013593505050565b60008060408385031215611cfd57600080fd5b82359150611d0d60208401611ca4565b90509250929050565b80358015158114611cbb57600080fd5b600060208284031215611d3857600080fd5b611c2182611d16565b600080600060608486031215611d5657600080fd5b611d5f84611ca4565b9250611d6d60208501611ca4565b9150604084013590509250925092565b60008060208385031215611d9057600080fd5b82356001600160401b0380821115611da757600080fd5b818501915085601f830112611dbb57600080fd5b813581811115611dca57600080fd5b866020828501011115611ddc57600080fd5b60209290920196919550909350505050565b600060208284031215611e0057600080fd5b611c2182611ca4565b60008060408385031215611e1c57600080fd5b611e2583611ca4565b9150611d0d60208401611d16565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611e6357611e63611e33565b604051601f8501601f19908116603f01168101908282118183101715611e8b57611e8b611e33565b81604052809350858152868686011115611ea457600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611ed457600080fd5b611edd85611ca4565b9350611eeb60208601611ca4565b92506040850135915060608501356001600160401b03811115611f0d57600080fd5b8501601f81018713611f1e57600080fd5b611f2d87823560208401611e49565b91505092959194509250565b60008060408385031215611f4c57600080fd5b8235915060208301356001600160401b03811115611f6957600080fd5b8301601f81018513611f7a57600080fd5b611f8985823560208401611e49565b9150509250929050565b60008060408385031215611fa657600080fd5b611faf83611ca4565b9150611d0d60208401611ca4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061200657607f821691505b60208210810361202657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561097157600081815260208120601f850160051c810160208610156120535750805b601f850160051c820191505b818110156120725782815560010161205f565b505050505050565b6001600160401b0383111561209157612091611e33565b6120a58361209f8354611ff2565b8361202c565b6000601f8411600181146120d957600085156120c15750838201355b600019600387901b1c1916600186901b1783556116a9565b600083815260209020601f19861690835b8281101561210a57868501358255602094850194600190920191016120ea565b50868210156121275760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107d5576107d5612170565b80820281158282048414176107d5576107d5612170565b60008084546121be81611ff2565b600182811680156121d657600181146121eb5761221a565b60ff198416875282151583028701945061221a565b8860005260208060002060005b858110156122115781548a8201529084019082016121f8565b50505082870194505b50505050835161222e818360208801611c41565b64173539b7b760d91b9101908152600501949350505050565b81516001600160401b0381111561226057612260611e33565b6122748161226e8454611ff2565b8461202c565b602080601f8311600181146122a957600084156122915750858301515b600019600386901b1c1916600185901b178555612072565b600085815260208120601f198616915b828110156122d8578886015182559484019460019091019084016122b9565b50858210156122f65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b82815260406020820152600061190d6040830184611c65565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061235290830184611c65565b9695505050505050565b60006020828403121561236e57600080fd5b8151611c2181611bee565b60006001820161238b5761238b612170565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826123b7576123b7612392565b500490565b818103818111156107d5576107d5612170565b6000826123de576123de612392565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220edee2b4adb2abc7923f6d4727e63544564162f6a51baac0ba464f11a446c7e5164736f6c63430008130033
Deployed Bytecode Sourcemap
48622:4196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30175:355;;;;;;;;;;-1:-1:-1;30175:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30175:355:0;;;;;;;;51456:96;;;;;;;;;;-1:-1:-1;51456:96:0;;;;;:::i;:::-;;:::i;:::-;;33370:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34970:245::-;;;;;;;;;;-1:-1:-1;34970:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;34970:245:0;1533:203:1;34533:371:0;;;;;;;;;;-1:-1:-1;34533:371:0;;;;;:::i;:::-;;:::i;50822:151::-;;;;;;;;;;-1:-1:-1;50822:151:0;;;;;:::i;:::-;;:::i;48769:23::-;;;;;;;;;;;;;;;;;;;2583:25:1;;;2571:2;2556:18;48769:23:0;2437:177:1;48910:33:0;;;;;;;;;;;;;;;;51780:83;;;;;;;;;;-1:-1:-1;51780:83:0;;;;;:::i;:::-;;:::i;29424:303::-;;;;;;;;;;-1:-1:-1;51073:1:0;29678:12;29468:7;29662:13;:28;-1:-1:-1;;29662:46:0;29424:303;;35958:170;;;;;;;;;;-1:-1:-1;35958:170:0;;;;;:::i;:::-;;:::i;48871:32::-;;;;;;;;;;;;;;;;49098:71;;;;;;;;;;-1:-1:-1;49098:71:0;;;;-1:-1:-1;;;;;49098:71:0;;;51871:184;;;;;;;;;;;;;:::i;36199:185::-;;;;;;;;;;-1:-1:-1;36199:185:0;;;;;:::i;:::-;;:::i;51177:80::-;;;;;;;;;;-1:-1:-1;51177:80:0;;;;;:::i;:::-;;:::i;48721:16::-;;;;;;;;;;-1:-1:-1;48721:16:0;;;;;;;;52063:104;;;;;;;;;;-1:-1:-1;52063:104:0;;;;;:::i;:::-;;:::i;48744:18::-;;;;;;;;;;-1:-1:-1;48744:18:0;;;;;;;;;;;51353:95;;;;;;;;;;-1:-1:-1;51353:95:0;;;;;:::i;:::-;;:::i;33178:125::-;;;;;;;;;;-1:-1:-1;33178:125:0;;;;;:::i;:::-;;:::i;51265:80::-;;;;;;;;;;-1:-1:-1;51265:80:0;;;;;:::i;:::-;;:::i;51560:100::-;;;;;;;;;;-1:-1:-1;51560:100:0;;;;;:::i;:::-;;:::i;30594:206::-;;;;;;;;;;-1:-1:-1;30594:206:0;;;;;:::i;:::-;;:::i;7443:103::-;;;;;;;;;;;;;:::i;48989:27::-;;;;;;;;;;;;;;;;49803:492;;;;;;;;;;-1:-1:-1;49803:492:0;;;;;:::i;:::-;;:::i;6792:87::-;;;;;;;;;;-1:-1:-1;6865:6:0;;-1:-1:-1;;;;;6865:6:0;6792:87;;33539:104;;;;;;;;;;;;;:::i;49336:459::-;;;;;;:::i;:::-;;:::i;35287:319::-;;;;;;;;;;-1:-1:-1;35287:319:0;;;;;:::i;:::-;;:::i;49023:30::-;;;;;;;;;;;;;;;;49178:39;;;;;;;;;;-1:-1:-1;49178:39:0;;;;;:::i;:::-;;:::i;36455:406::-;;;;;;;;;;-1:-1:-1;36455:406:0;;;;;:::i;:::-;;:::i;51090:79::-;;;;;;;;;;-1:-1:-1;51090:79:0;;;;;:::i;:::-;;:::i;52297:518::-;;;;;;;;;;-1:-1:-1;52297:518:0;;;;;:::i;:::-;;:::i;50303:511::-;;;;;;:::i;:::-;;:::i;48799:27::-;;;;;;;;;;;;;:::i;48833:31::-;;;;;;;;;;;;;;;;35677:214;;;;;;;;;;-1:-1:-1;35677:214:0;;;;;:::i;:::-;;:::i;7701:238::-;;;;;;;;;;-1:-1:-1;7701:238:0;;;;;:::i;:::-;;:::i;49060:31::-;;;;;;;;;;;;;;;;51668:104;;;;;;;;;;-1:-1:-1;51668:104:0;;;;;:::i;:::-;;:::i;48950:32::-;;;;;;;;;;;;;;;;30175:355;30322:4;-1:-1:-1;;;;;;30364:40:0;;-1:-1:-1;;;30364:40:0;;:105;;-1:-1:-1;;;;;;;30421:48:0;;-1:-1:-1;;;30421:48:0;30364:105;:158;;;-1:-1:-1;;;;;;;;;;20108:40:0;;;30486:36;30344:178;30175:355;-1:-1:-1;;30175:355:0:o;51456:96::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;;;;;;;;;51523:11:::1;:21:::0;51456:96::o;33370:100::-;33424:13;33457:5;33450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33370:100;:::o;34970:245::-;35074:7;35104:16;35112:7;35104;:16::i;:::-;35099:64;;35129:34;;-1:-1:-1;;;35129:34:0;;;;;;;;;;;35099:64;-1:-1:-1;35183:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35183:24:0;;34970:245::o;34533:371::-;34606:13;34622:24;34638:7;34622:15;:24::i;:::-;34606:40;;34667:5;-1:-1:-1;;;;;34661:11:0;:2;-1:-1:-1;;;;;34661:11:0;;34657:48;;34681:24;;-1:-1:-1;;;34681:24:0;;;;;;;;;;;34657:48;5574:10;-1:-1:-1;;;;;34722:21:0;;;;;;:63;;-1:-1:-1;34748:37:0;34765:5;5574:10;35677:214;:::i;34748:37::-;34747:38;34722:63;34718:138;;;34809:35;;-1:-1:-1;;;34809:35:0;;;;;;;;;;;34718:138;34868:28;34877:2;34881:7;34890:5;34868:8;:28::i;:::-;34595:309;34533:371;;:::o;50822:151::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50932:33:::1;50942:9;50953:11;50932:9;:33::i;:::-;50822:151:::0;;:::o;51780:83::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51840:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;51840:15:0;;::::1;::::0;;;::::1;::::0;;51780:83::o;35958:170::-;36092:28;36102:4;36108:2;36112:7;36092:9;:28::i;51871:184::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51938:82:::1;::::0;51920:12:::1;::::0;51946:10:::1;::::0;51984:21:::1;::::0;51920:12;51938:82;51920:12;51938:82;51984:21;51946:10;51938:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51919:101;;;52039:7;52031:16;;;::::0;::::1;;51908:147;51871:184::o:0;36199:185::-;36337:39;36354:4;36360:2;36364:7;36337:39;;;;;;;;;;;;:16;:39::i;51177:80::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51237:4:::1;:12:::0;51177:80::o;52063:104::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;52136:13:::1;:23;52152:7:::0;;52136:13;:23:::1;:::i;51353:95::-:0;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51423:7:::1;:17:::0;51353:95::o;33178:125::-;33242:7;33269:21;33282:7;33269:12;:21::i;:::-;:26;;33178:125;-1:-1:-1;;33178:125:0:o;51265:80::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51323:7:::1;:14:::0;51265:80::o;51560:100::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51630:9:::1;:22:::0;51560:100::o;30594:206::-;30658:7;-1:-1:-1;;;;;30682:19:0;;30678:60;;30710:28;;-1:-1:-1;;;30710:28:0;;;;;;;;;;;30678:60;-1:-1:-1;;;;;;30764:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30764:27:0;;30594:206::o;7443:103::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;7508:30:::1;7535:1;7508:18;:30::i;:::-;7443:103::o:0;49803:492::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;;;;;;:::i;:::-;1714:1;2445:7;:18;49895:15;;;;;:45:::1;;;49929:11;;49914;:26;;49895:45;49873:110;;;::::0;-1:-1:-1;;;49873:110:0;;10152:2:1;49873:110:0::1;::::0;::::1;10134:21:1::0;10191:2;10171:18;;;10164:30;-1:-1:-1;;;10210:18:1;;;10203:45;10265:18;;49873:110:0::1;9950:339:1::0;49873:110:0::1;50024:10;;50009:11;50002:4;;:18;;;;:::i;:::-;:32;;49994:66;;;::::0;-1:-1:-1;;;49994:66:0;;10758:2:1;49994:66:0::1;::::0;::::1;10740:21:1::0;10797:2;10777:18;;;10770:30;-1:-1:-1;;;10816:18:1;;;10809:51;10877:18;;49994:66:0::1;10556:345:1::0;49994:66:0::1;50124:9;::::0;51073:1;29678:12;29468:7;29662:13;50109:11;;29662:28;;-1:-1:-1;;29662:46:0;50093:27:::1;;;;:::i;:::-;:40;;50071:101;;;::::0;-1:-1:-1;;;50071:101:0;;11108:2:1;50071:101:0::1;::::0;::::1;11090:21:1::0;11147:2;11127:18;;;11120:30;-1:-1:-1;;;11166:18:1;;;11159:41;11217:18;;50071:101:0::1;10906:335:1::0;50071:101:0::1;50192:6;::::0;::::1;::::0;::::1;;;50191:7;50183:27;;;::::0;-1:-1:-1;;;50183:27:0;;11448:2:1;50183:27:0::1;::::0;::::1;11430:21:1::0;11487:1;11467:18;;;11460:29;-1:-1:-1;;;11505:18:1;;;11498:37;11552:18;;50183:27:0::1;11246:330:1::0;50183:27:0::1;50221:36;5574:10:::0;50231:12:::1;50245:11;50221:9;:36::i;:::-;50276:11;50268:4;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1670:1:0;2624:7;:22;-1:-1:-1;49803:492:0:o;33539:104::-;33595:13;33628:7;33621:14;;;;;:::i;49336:459::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;;;;;;:::i;:::-;1714:1;2445:7;:18;49432:15;;;;;:41:::1;;;49466:7;;49451:11;:22;;49432:41;49410:106;;;::::0;-1:-1:-1;;;49410:106:0;;10152:2:1;49410:106:0::1;::::0;::::1;10134:21:1::0;10191:2;10171:18;;;10164:30;-1:-1:-1;;;10210:18:1;;;10203:45;10265:18;;49410:106:0::1;9950:339:1::0;49410:106:0::1;49580:9;::::0;51073:1;29678:12;29468:7;29662:13;49565:11;;29662:28;;-1:-1:-1;;29662:46:0;49549:27:::1;;;;:::i;:::-;:40;;49527:101;;;::::0;-1:-1:-1;;;49527:101:0;;11108:2:1;49527:101:0::1;::::0;::::1;11090:21:1::0;11147:2;11127:18;;;11120:30;-1:-1:-1;;;11166:18:1;;;11159:41;11217:18;;49527:101:0::1;10906:335:1::0;49527:101:0::1;49648:6;::::0;::::1;::::0;::::1;;;49647:7;49639:27;;;::::0;-1:-1:-1;;;49639:27:0;;11448:2:1;49639:27:0::1;::::0;::::1;11430:21:1::0;11487:1;11467:18;;;11460:29;-1:-1:-1;;;11505:18:1;;;11498:37;11552:18;;49639:27:0::1;11246:330:1::0;49639:27:0::1;49705:11;49698:4;;:18;;;;:::i;:::-;49685:9;:31;;49677:63;;;::::0;-1:-1:-1;;;49677:63:0;;11956:2:1;49677:63:0::1;::::0;::::1;11938:21:1::0;11995:2;11975:18;;;11968:30;-1:-1:-1;;;12014:18:1;;;12007:49;12073:18;;49677:63:0::1;11754:343:1::0;49677:63:0::1;49751:36;5574:10:::0;49761:12:::1;5494:98:::0;49751:36:::1;-1:-1:-1::0;1670:1:0;2624:7;:22;49336:459::o;35287:319::-;5574:10;-1:-1:-1;;;;;35418:24:0;;;35414:54;;35451:17;;-1:-1:-1;;;35451:17:0;;;;;;;;;;;35414:54;5574:10;35481:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35481:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35481:53:0;;;;;;;;;;35550:48;;540:41:1;;;35481:42:0;;5574:10;35550:48;;513:18:1;35550:48:0;;;;;;;35287:319;;:::o;49178:39::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36455:406::-;36622:28;36632:4;36638:2;36642:7;36622:9;:28::i;:::-;-1:-1:-1;;;;;36679:13:0;;9699:19;:23;;36679:89;;;;;36712:56;36743:4;36749:2;36753:7;36762:5;36712:30;:56::i;:::-;36711:57;36679:89;36661:193;;;36802:40;;-1:-1:-1;;;36802:40:0;;;;;;;;;;;36661:193;36455:406;;;;:::o;51090:79::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51148:4:::1;:13:::0;;-1:-1:-1;;51148:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51090:79::o;52297:518::-;52416:13;52455:17;52463:8;52455:7;:17::i;:::-;52447:49;;;;-1:-1:-1;;;52447:49:0;;12304:2:1;52447:49:0;;;12286:21:1;12343:2;12323:18;;;12316:30;-1:-1:-1;;;12362:18:1;;;12355:49;12421:18;;52447:49:0;12102:343:1;52447:49:0;52557:1;52533:13;52527:27;;;;;:::i;:::-;;;:31;:280;;;;;;;;;;;;;;;;;52650:13;52690:19;:8;:17;:19::i;:::-;52607:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52507:300;52297:518;-1:-1:-1;;52297:518:0:o;50303:511::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;;;;;;:::i;:::-;1714:1;2445:7;:18;50443:4:::1;::::0;::::1;;50435:30;;;::::0;-1:-1:-1;;;50435:30:0;;13844:2:1;50435:30:0::1;::::0;::::1;13826:21:1::0;13883:2;13863:18;;;13856:30;-1:-1:-1;;;13902:18:1;;;13895:43;13955:18;;50435:30:0::1;13642:337:1::0;50435:30:0::1;50527:11;;50504;50498:25;:40;50476:122;;;::::0;-1:-1:-1;;;50476:122:0;;14186:2:1;50476:122:0::1;::::0;::::1;14168:21:1::0;;;14205:18;;;14198:30;14264:34;14244:18;;;14237:62;14316:18;;50476:122:0::1;13984:356:1::0;50476:122:0::1;50630:7;;50617:9;:20;;50609:52;;;::::0;-1:-1:-1;;;50609:52:0;;11956:2:1;50609:52:0::1;::::0;::::1;11938:21:1::0;11995:2;11975:18;;;11968:30;-1:-1:-1;;;12014:18:1;;;12007:49;12073:18;;50609:52:0::1;11754:343:1::0;50609:52:0::1;50672:14;::::0;;;:5:::1;:14;::::0;;;;:28:::1;50689:11:::0;50672:14;:28:::1;:::i;:::-;-1:-1:-1::0;50740:11:0::1;::::0;50711:50:::1;::::0;50728:10:::1;::::0;-1:-1:-1;;;;;50740:11:0::1;50753:7:::0;50711:16:::1;:50::i;:::-;50777:29;50785:7;50794:11;50777:29;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;1670:1:0;2624:7;:22;50303:511::o;48799:27::-;;;;;;;:::i;35677:214::-;-1:-1:-1;;;;;35848:25:0;;;35819:4;35848:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35677:214::o;7701:238::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7804:22:0;::::1;7782:110;;;::::0;-1:-1:-1;;;7782:110:0;;16200:2:1;7782:110:0::1;::::0;::::1;16182:21:1::0;16239:2;16219:18;;;16212:30;16278:34;16258:18;;;16251:62;-1:-1:-1;;;16329:18:1;;;16322:36;16375:19;;7782:110:0::1;15998:402:1::0;7782:110:0::1;7903:28;7922:8;7903:18;:28::i;51668:104::-:0;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51740:10:::1;:24:::0;51668:104::o;37116:213::-;37173:4;37229:7;51073:1;37210:26;;:66;;;;;37263:13;;37253:7;:23;37210:66;:111;;;;-1:-1:-1;;37294:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37294:27:0;;;;37293:28;;37116:213::o;45503:196::-;45618:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45618:29:0;-1:-1:-1;;;;;45618:29:0;;;;;;;;;45663:28;;45618:24;;45663:28;;;;;;;45503:196;;;:::o;37337:104::-;37406:27;37416:2;37420:8;37406:27;;;;;;;;;;;;:9;:27::i;40446:2130::-;40561:35;40599:21;40612:7;40599:12;:21::i;:::-;40561:59;;40659:4;-1:-1:-1;;;;;40637:26:0;:13;:18;;;-1:-1:-1;;;;;40637:26:0;;40633:67;;40672:28;;-1:-1:-1;;;40672:28:0;;;;;;;;;;;40633:67;40713:22;5574:10;-1:-1:-1;;;;;40739:20:0;;;;:73;;-1:-1:-1;40776:36:0;40793:4;5574:10;35677:214;:::i;40776:36::-;40739:126;;;-1:-1:-1;5574:10:0;40829:20;40841:7;40829:11;:20::i;:::-;-1:-1:-1;;;;;40829:36:0;;40739:126;40713:153;;40884:17;40879:66;;40910:35;;-1:-1:-1;;;40910:35:0;;;;;;;;;;;40879:66;-1:-1:-1;;;;;40960:16:0;;40956:52;;40985:23;;-1:-1:-1;;;40985:23:0;;;;;;;;;;;40956:52;41129:35;41146:1;41150:7;41159:4;41129:8;:35::i;:::-;-1:-1:-1;;;;;41460:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41460:31:0;;;-1:-1:-1;;;;;41460:31:0;;;-1:-1:-1;;41460:31:0;;;;;;;41506:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41506:29:0;;;;;;;;;;;41586:20;;;:11;:20;;;;;;41621:18;;-1:-1:-1;;;;;;41654:49:0;;;;-1:-1:-1;;;41687:15:0;41654:49;;;;;;;;;;41977:11;;42037:24;;;;;42080:13;;41586:20;;42037:24;;42080:13;42076:384;;42290:13;;42275:11;:28;42271:174;;42328:20;;42397:28;;;;-1:-1:-1;;;;;42371:54:0;-1:-1:-1;;;42371:54:0;-1:-1:-1;;;;;;42371:54:0;;;-1:-1:-1;;;;;42328:20:0;;42371:54;;;;42271:174;41435:1036;;;42507:7;42503:2;-1:-1:-1;;;;;42488:27:0;42497:4;-1:-1:-1;;;;;42488:27:0;;;;;;;;;;;42526:42;40550:2026;;40446:2130;;;:::o;31975:1141::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32118:7:0;;51073:1;32167:23;;:47;;;;;32201:13;;32194:4;:20;32167:47;32163:886;;;32235:31;32269:17;;;:11;:17;;;;;;;;;32235:51;;;;;;;;;-1:-1:-1;;;;;32235:51:0;;;;-1:-1:-1;;;32235:51:0;;-1:-1:-1;;;;;32235:51:0;;;;;;;;-1:-1:-1;;;32235:51:0;;;;;;;;;;;;;;32305:729;;32355:14;;-1:-1:-1;;;;;32355:28:0;;32351:101;;32419:9;31975:1141;-1:-1:-1;;;31975:1141:0:o;32351:101::-;-1:-1:-1;;;32794:6:0;32839:17;;;;:11;:17;;;;;;;;;32827:29;;;;;;;;;-1:-1:-1;;;;;32827:29:0;;;;;-1:-1:-1;;;32827:29:0;;-1:-1:-1;;;;;32827:29:0;;;;;;;;-1:-1:-1;;;32827:29:0;;;;;;;;;;;;;32887:28;32883:109;;32955:9;31975:1141;-1:-1:-1;;;31975:1141:0:o;32883:109::-;32754:261;;;32216:833;32163:886;33077:31;;-1:-1:-1;;;33077:31:0;;;;;;;;;;;8099:191;8192:6;;;-1:-1:-1;;;;;8209:17:0;;;-1:-1:-1;;;;;;8209:17:0;;;;;;;8242:40;;8192:6;;;8209:17;8192:6;;8242:40;;8173:16;;8242:40;8162:128;8099:191;:::o;46191:772::-;46388:155;;-1:-1:-1;;;46388:155:0;;46354:4;;-1:-1:-1;;;;;46388:36:0;;;;;:155;;5574:10;;46474:4;;46497:7;;46523:5;;46388:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46388:155:0;;;;;;;;-1:-1:-1;;46388:155:0;;;;;;;;;;;;:::i;:::-;;;46371:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46714:6;:13;46731:1;46714:18;46710:235;;46760:40;;-1:-1:-1;;;46760:40:0;;;;;;;;;;;46710:235;46903:6;46897:13;46888:6;46884:2;46880:15;46873:38;46371:585;-1:-1:-1;;;;;;46599:55:0;-1:-1:-1;;;46599:55:0;;-1:-1:-1;46371:585:0;46191:772;;;;;;:::o;3025:723::-;3081:13;3302:5;3311:1;3302:10;3298:53;;-1:-1:-1;;3329:10:0;;;;;;;;;;;;-1:-1:-1;;;3329:10:0;;;;;3025:723::o;3298:53::-;3376:5;3361:12;3417:78;3424:9;;3417:78;;3450:8;;;;:::i;:::-;;-1:-1:-1;3473:10:0;;-1:-1:-1;3481:2:0;3473:10;;:::i;:::-;;;3417:78;;;3505:19;3537:6;-1:-1:-1;;;;;3527:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3527:17:0;;3505:39;;3555:154;3562:10;;3555:154;;3589:11;3599:1;3589:11;;:::i;:::-;;-1:-1:-1;3658:10:0;3666:2;3658:5;:10;:::i;:::-;3645:24;;:2;:24;:::i;:::-;3632:39;;3615:6;3622;3615:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3615:56:0;;;;;;;;-1:-1:-1;3686:11:0;3695:2;3686:11;;:::i;:::-;;;3555:154;;37804:163;37927:32;37933:2;37937:8;37947:5;37954:4;38365:20;38388:13;-1:-1:-1;;;;;38416:16:0;;38412:48;;38441:19;;-1:-1:-1;;;38441:19:0;;;;;;;;;;;38412:48;38475:8;38487:1;38475:13;38471:44;;38497:18;;-1:-1:-1;;;38497:18:0;;;;;;;;;;;38471:44;-1:-1:-1;;;;;38866:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38925:49:0;;-1:-1:-1;;;;;38866:44:0;;;;;;;38925:49;;;;-1:-1:-1;;38866:44:0;;;;;;38925:49;;;;;;;;;;;;;;;;38991:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39041:66:0;;;;-1:-1:-1;;;39091:15:0;39041:66;;;;;;;;;;38991:25;39188:23;;;39232:4;:23;;;;-1:-1:-1;;;;;;39240:13:0;;9699:19;:23;;39240:15;39228:832;;;39276:505;39307:38;;39332:12;;-1:-1:-1;;;;;39307:38:0;;;39324:1;;39307:38;;39324:1;;39307:38;39399:212;39468:1;39501:2;39534:14;;;;;;39579:5;39399:30;:212::i;:::-;39368:365;;39669:40;;-1:-1:-1;;;39669:40:0;;;;;;;;;;;39368:365;39776:3;39760:12;:19;39276:505;;39862:12;39845:13;;:29;39841:43;;39876:8;;;39841:43;39228:832;;;39925:120;39956:40;;39981:14;;;;;-1:-1:-1;;;;;39956:40:0;;;39973:1;;39956:40;;39973:1;;39956:40;40040:3;40024:12;:19;39925:120;;39228:832;-1:-1:-1;40074:13:0;:28;40124:60;36455:406;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:250::-;862:1;872:113;886:6;883:1;880:13;872:113;;;962:11;;;956:18;943:11;;;936:39;908:2;901:10;872:113;;;-1:-1:-1;;1019:1:1;1001:16;;994:27;777:250::o;1032:271::-;1074:3;1112:5;1106:12;1139:6;1134:3;1127:19;1155:76;1224:6;1217:4;1212:3;1208:14;1201:4;1194:5;1190:16;1155:76;:::i;:::-;1285:2;1264:15;-1:-1:-1;;1260:29:1;1251:39;;;;1292:4;1247:50;;1032:271;-1:-1:-1;;1032:271:1:o;1308:220::-;1457:2;1446:9;1439:21;1420:4;1477:45;1518:2;1507:9;1503:18;1495:6;1477:45;:::i;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:::-;2246:6;2254;2307:2;2295:9;2286:7;2282:23;2278:32;2275:52;;;2323:1;2320;2313:12;2275:52;2359:9;2346:23;2336:33;;2388:38;2422:2;2411:9;2407:18;2388:38;:::i;:::-;2378:48;;2178:254;;;;;:::o;2619:160::-;2684:20;;2740:13;;2733:21;2723:32;;2713:60;;2769:1;2766;2759:12;2784:180;2840:6;2893:2;2881:9;2872:7;2868:23;2864:32;2861:52;;;2909:1;2906;2899:12;2861:52;2932:26;2948:9;2932:26;:::i;2969:328::-;3046:6;3054;3062;3115:2;3103:9;3094:7;3090:23;3086:32;3083:52;;;3131:1;3128;3121:12;3083:52;3154:29;3173:9;3154:29;:::i;:::-;3144:39;;3202:38;3236:2;3225:9;3221:18;3202:38;:::i;:::-;3192:48;;3287:2;3276:9;3272:18;3259:32;3249:42;;2969:328;;;;;:::o;3302:592::-;3373:6;3381;3434:2;3422:9;3413:7;3409:23;3405:32;3402:52;;;3450:1;3447;3440:12;3402:52;3490:9;3477:23;-1:-1:-1;;;;;3560:2:1;3552:6;3549:14;3546:34;;;3576:1;3573;3566:12;3546:34;3614:6;3603:9;3599:22;3589:32;;3659:7;3652:4;3648:2;3644:13;3640:27;3630:55;;3681:1;3678;3671:12;3630:55;3721:2;3708:16;3747:2;3739:6;3736:14;3733:34;;;3763:1;3760;3753:12;3733:34;3808:7;3803:2;3794:6;3790:2;3786:15;3782:24;3779:37;3776:57;;;3829:1;3826;3819:12;3776:57;3860:2;3852:11;;;;;3882:6;;-1:-1:-1;3302:592:1;;-1:-1:-1;;;;3302:592:1:o;3899:186::-;3958:6;4011:2;3999:9;3990:7;3986:23;3982:32;3979:52;;;4027:1;4024;4017:12;3979:52;4050:29;4069:9;4050:29;:::i;4090:254::-;4155:6;4163;4216:2;4204:9;4195:7;4191:23;4187:32;4184:52;;;4232:1;4229;4222:12;4184:52;4255:29;4274:9;4255:29;:::i;:::-;4245:39;;4303:35;4334:2;4323:9;4319:18;4303:35;:::i;4349:127::-;4410:10;4405:3;4401:20;4398:1;4391:31;4441:4;4438:1;4431:15;4465:4;4462:1;4455:15;4481:631;4545:5;-1:-1:-1;;;;;4616:2:1;4608:6;4605:14;4602:40;;;4622:18;;:::i;:::-;4697:2;4691:9;4665:2;4751:15;;-1:-1:-1;;4747:24:1;;;4773:2;4743:33;4739:42;4727:55;;;4797:18;;;4817:22;;;4794:46;4791:72;;;4843:18;;:::i;:::-;4883:10;4879:2;4872:22;4912:6;4903:15;;4942:6;4934;4927:22;4982:3;4973:6;4968:3;4964:16;4961:25;4958:45;;;4999:1;4996;4989:12;4958:45;5049:6;5044:3;5037:4;5029:6;5025:17;5012:44;5104:1;5097:4;5088:6;5080;5076:19;5072:30;5065:41;;;;4481:631;;;;;:::o;5117:666::-;5212:6;5220;5228;5236;5289:3;5277:9;5268:7;5264:23;5260:33;5257:53;;;5306:1;5303;5296:12;5257:53;5329:29;5348:9;5329:29;:::i;:::-;5319:39;;5377:38;5411:2;5400:9;5396:18;5377:38;:::i;:::-;5367:48;;5462:2;5451:9;5447:18;5434:32;5424:42;;5517:2;5506:9;5502:18;5489:32;-1:-1:-1;;;;;5536:6:1;5533:30;5530:50;;;5576:1;5573;5566:12;5530:50;5599:22;;5652:4;5644:13;;5640:27;-1:-1:-1;5630:55:1;;5681:1;5678;5671:12;5630:55;5704:73;5769:7;5764:2;5751:16;5746:2;5742;5738:11;5704:73;:::i;:::-;5694:83;;;5117:666;;;;;;;:::o;5788:518::-;5866:6;5874;5927:2;5915:9;5906:7;5902:23;5898:32;5895:52;;;5943:1;5940;5933:12;5895:52;5979:9;5966:23;5956:33;;6040:2;6029:9;6025:18;6012:32;-1:-1:-1;;;;;6059:6:1;6056:30;6053:50;;;6099:1;6096;6089:12;6053:50;6122:22;;6175:4;6167:13;;6163:27;-1:-1:-1;6153:55:1;;6204:1;6201;6194:12;6153:55;6227:73;6292:7;6287:2;6274:16;6269:2;6265;6261:11;6227:73;:::i;:::-;6217:83;;;5788:518;;;;;:::o;6311:260::-;6379:6;6387;6440:2;6428:9;6419:7;6415:23;6411:32;6408:52;;;6456:1;6453;6446:12;6408:52;6479:29;6498:9;6479:29;:::i;:::-;6469:39;;6527:38;6561:2;6550:9;6546:18;6527:38;:::i;6576:356::-;6778:2;6760:21;;;6797:18;;;6790:30;6856:34;6851:2;6836:18;;6829:62;6923:2;6908:18;;6576:356::o;6937:380::-;7016:1;7012:12;;;;7059;;;7080:61;;7134:4;7126:6;7122:17;7112:27;;7080:61;7187:2;7179:6;7176:14;7156:18;7153:38;7150:161;;7233:10;7228:3;7224:20;7221:1;7214:31;7268:4;7265:1;7258:15;7296:4;7293:1;7286:15;7150:161;;6937:380;;;:::o;7658:545::-;7760:2;7755:3;7752:11;7749:448;;;7796:1;7821:5;7817:2;7810:17;7866:4;7862:2;7852:19;7936:2;7924:10;7920:19;7917:1;7913:27;7907:4;7903:38;7972:4;7960:10;7957:20;7954:47;;;-1:-1:-1;7995:4:1;7954:47;8050:2;8045:3;8041:12;8038:1;8034:20;8028:4;8024:31;8014:41;;8105:82;8123:2;8116:5;8113:13;8105:82;;;8168:17;;;8149:1;8138:13;8105:82;;;8109:3;;;7658:545;;;:::o;8379:1206::-;-1:-1:-1;;;;;8498:3:1;8495:27;8492:53;;;8525:18;;:::i;:::-;8554:94;8644:3;8604:38;8636:4;8630:11;8604:38;:::i;:::-;8598:4;8554:94;:::i;:::-;8674:1;8699:2;8694:3;8691:11;8716:1;8711:616;;;;9371:1;9388:3;9385:93;;;-1:-1:-1;9444:19:1;;;9431:33;9385:93;-1:-1:-1;;8336:1:1;8332:11;;;8328:24;8324:29;8314:40;8360:1;8356:11;;;8311:57;9491:78;;8684:895;;8711:616;7605:1;7598:14;;;7642:4;7629:18;;-1:-1:-1;;8747:17:1;;;8848:9;8870:229;8884:7;8881:1;8878:14;8870:229;;;8973:19;;;8960:33;8945:49;;9080:4;9065:20;;;;9033:1;9021:14;;;;8900:12;8870:229;;;8874:3;9127;9118:7;9115:16;9112:159;;;9251:1;9247:6;9241:3;9235;9232:1;9228:11;9224:21;9220:34;9216:39;9203:9;9198:3;9194:19;9181:33;9177:79;9169:6;9162:95;9112:159;;;9314:1;9308:3;9305:1;9301:11;9297:19;9291:4;9284:33;8684:895;;8379:1206;;;:::o;9590:355::-;9792:2;9774:21;;;9831:2;9811:18;;;9804:30;9870:33;9865:2;9850:18;;9843:61;9936:2;9921:18;;9590:355::o;10294:127::-;10355:10;10350:3;10346:20;10343:1;10336:31;10386:4;10383:1;10376:15;10410:4;10407:1;10400:15;10426:125;10491:9;;;10512:10;;;10509:36;;;10525:18;;:::i;11581:168::-;11654:9;;;11685;;11702:15;;;11696:22;;11682:37;11672:71;;11723:18;;:::i;12450:1187::-;12727:3;12756:1;12789:6;12783:13;12819:36;12845:9;12819:36;:::i;:::-;12874:1;12891:18;;;12918:133;;;;13065:1;13060:356;;;;12884:532;;12918:133;-1:-1:-1;;12951:24:1;;12939:37;;13024:14;;13017:22;13005:35;;12996:45;;;-1:-1:-1;12918:133:1;;13060:356;13091:6;13088:1;13081:17;13121:4;13166:2;13163:1;13153:16;13191:1;13205:165;13219:6;13216:1;13213:13;13205:165;;;13297:14;;13284:11;;;13277:35;13340:16;;;;13234:10;;13205:165;;;13209:3;;;13399:6;13394:3;13390:16;13383:23;;12884:532;;;;;13447:6;13441:13;13463:68;13522:8;13517:3;13510:4;13502:6;13498:17;13463:68;:::i;:::-;-1:-1:-1;;;13553:18:1;;13580:22;;;13629:1;13618:13;;12450:1187;-1:-1:-1;;;;12450:1187:1:o;14345:1352::-;14471:3;14465:10;-1:-1:-1;;;;;14490:6:1;14487:30;14484:56;;;14520:18;;:::i;:::-;14549:97;14639:6;14599:38;14631:4;14625:11;14599:38;:::i;:::-;14593:4;14549:97;:::i;:::-;14701:4;;14765:2;14754:14;;14782:1;14777:663;;;;15484:1;15501:6;15498:89;;;-1:-1:-1;15553:19:1;;;15547:26;15498:89;-1:-1:-1;;8336:1:1;8332:11;;;8328:24;8324:29;8314:40;8360:1;8356:11;;;8311:57;15600:81;;14747:944;;14777:663;7605:1;7598:14;;;7642:4;7629:18;;-1:-1:-1;;14813:20:1;;;14931:236;14945:7;14942:1;14939:14;14931:236;;;15034:19;;;15028:26;15013:42;;15126:27;;;;15094:1;15082:14;;;;14961:19;;14931:236;;;14935:3;15195:6;15186:7;15183:19;15180:201;;;15256:19;;;15250:26;-1:-1:-1;;15339:1:1;15335:14;;;15351:3;15331:24;15327:37;15323:42;15308:58;15293:74;;15180:201;-1:-1:-1;;;;;15427:1:1;15411:14;;;15407:22;15394:36;;-1:-1:-1;14345:1352:1:o;15702:291::-;15879:6;15868:9;15861:25;15922:2;15917;15906:9;15902:18;15895:30;15842:4;15942:45;15983:2;15972:9;15968:18;15960:6;15942:45;:::i;16405:489::-;-1:-1:-1;;;;;16674:15:1;;;16656:34;;16726:15;;16721:2;16706:18;;16699:43;16773:2;16758:18;;16751:34;;;16821:3;16816:2;16801:18;;16794:31;;;16599:4;;16842:46;;16868:19;;16860:6;16842:46;:::i;:::-;16834:54;16405:489;-1:-1:-1;;;;;;16405:489:1:o;16899:249::-;16968:6;17021:2;17009:9;17000:7;16996:23;16992:32;16989:52;;;17037:1;17034;17027:12;16989:52;17069:9;17063:16;17088:30;17112:5;17088:30;:::i;17153:135::-;17192:3;17213:17;;;17210:43;;17233:18;;:::i;:::-;-1:-1:-1;17280:1:1;17269:13;;17153:135::o;17293:127::-;17354:10;17349:3;17345:20;17342:1;17335:31;17385:4;17382:1;17375:15;17409:4;17406:1;17399:15;17425:120;17465:1;17491;17481:35;;17496:18;;:::i;:::-;-1:-1:-1;17530:9:1;;17425:120::o;17550:128::-;17617:9;;;17638:11;;;17635:37;;;17652:18;;:::i;17683:112::-;17715:1;17741;17731:35;;17746:18;;:::i;:::-;-1:-1:-1;17780:9:1;;17683:112::o;17800:127::-;17861:10;17856:3;17852:20;17849:1;17842:31;17892:4;17889:1;17882:15;17916:4;17913:1;17906:15
Swarm Source
ipfs://edee2b4adb2abc7923f6d4727e63544564162f6a51baac0ba464f11a446c7e51
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.