ERC-721
Overview
Max Total Supply
1,703 Akimo
Holders
225
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
40 AkimoLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Akimo_Inu
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-12 */ pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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; } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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); } // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @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); } } } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // Creator: Chiru Labs 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 {} } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract 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); } } contract Akimo_Inu is ERC721A, Ownable { using Strings for uint256; uint256 MAX_MINTS = 40; uint256 MAX_SUPPLY = 5000; uint256 public mintRate = 0.02 ether; string public baseURI = "ipfs://QmYz26ooXWckMv47BPca6VZLi9YVRYMq8sAZ4pEo57tKs1/"; string public suffix = ".json"; constructor() ERC721A("Akimo Inu", "Akimo") {} function mint(uint256 quantity) external payable { // _safeMint's second argument now takes in a quantity, not a tokenId. require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); require(msg.value >= (mintRate * quantity), "Not enough ether sent"); _safeMint(msg.sender, quantity); } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory ibaseURI = _baseURI(); return bytes(ibaseURI).length != 0 ? string(abi.encodePacked(ibaseURI, tokenId.toString(), suffix)) : ''; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setMintRate(uint256 _mintRate) public onlyOwner { mintRate = _mintRate; } function _startTokenId() internal view override virtual returns (uint256) { return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"suffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"payable","type":"function"}]
Contract Creation Code
6028600955611388600a5566470de4df820000600b5560e0604052603660808181529062001d7660a03980516200003f91600c916020909101906200014c565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006e91600d916200014c565b503480156200007c57600080fd5b506040805180820182526009815268416b696d6f20496e7560b81b602080830191825283518085019094526005845264416b696d6f60d81b908401528151919291620000cb916002916200014c565b508051620000e19060039060208401906200014c565b5050600160005550620000f433620000fa565b6200022f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015a90620001f2565b90600052602060002090601f0160209004810192826200017e5760008555620001c9565b82601f106200019957805160ff1916838001178555620001c9565b82800160010185558215620001c9579182015b82811115620001c9578251825591602001919060010190620001ac565b50620001d7929150620001db565b5090565b5b80821115620001d75760008155600101620001dc565b600181811c908216806200020757607f821691505b602082108114156200022957634e487b7160e01b600052602260045260246000fd5b50919050565b611b37806200023f6000396000f3fe6080604052600436106101805760003560e01c8063715018a6116100d6578063c87b56dd1161007f578063e985e9c511610059578063e985e9c5146103eb578063f2fde38b14610434578063f7073c3a1461045457600080fd5b8063c87b56dd14610395578063ca0dcf16146103b5578063dbe2193f146103cb57600080fd5b8063a0712d68116100b0578063a0712d6814610342578063a22cb46514610355578063b88d4fde1461037557600080fd5b8063715018a6146102fa5780638da5cb5b1461030f57806395d89b411461032d57600080fd5b806323b872dd116101385780636352211e116101125780636352211e146102a55780636c0360eb146102c557806370a08231146102da57600080fd5b806323b872dd1461025d5780633ccfd60b1461027d57806342842e0e1461028557600080fd5b8063081812fc11610169578063081812fc146101dc578063095ea7b31461021457806318160ddd1461023657600080fd5b806301ffc9a71461018557806306fdde03146101ba575b600080fd5b34801561019157600080fd5b506101a56101a0366004611809565b610469565b60405190151581526020015b60405180910390f35b3480156101c657600080fd5b506101cf610506565b6040516101b19190611988565b3480156101e857600080fd5b506101fc6101f7366004611843565b610598565b6040516001600160a01b0390911681526020016101b1565b34801561022057600080fd5b5061023461022f3660046117df565b6105f5565b005b34801561024257600080fd5b5060015460005403600019015b6040519081526020016101b1565b34801561026957600080fd5b5061023461027836600461168b565b6106b5565b6102346106c0565b34801561029157600080fd5b506102346102a036600461168b565b61075b565b3480156102b157600080fd5b506101fc6102c0366004611843565b610776565b3480156102d157600080fd5b506101cf610788565b3480156102e657600080fd5b5061024f6102f536600461163d565b610816565b34801561030657600080fd5b5061023461087e565b34801561031b57600080fd5b506008546001600160a01b03166101fc565b34801561033957600080fd5b506101cf6108e4565b610234610350366004611843565b6108f3565b34801561036157600080fd5b506102346103703660046117a3565b610a44565b34801561038157600080fd5b506102346103903660046116c7565b610af3565b3480156103a157600080fd5b506101cf6103b0366004611843565b610b44565b3480156103c157600080fd5b5061024f600b5481565b3480156103d757600080fd5b506102346103e6366004611843565b610be5565b3480156103f757600080fd5b506101a5610406366004611658565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561044057600080fd5b5061023461044f36600461163d565b610c44565b34801561046057600080fd5b506101cf610d23565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806104cc57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061050057507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461051590611a29565b80601f016020809104026020016040519081016040528092919081815260200182805461054190611a29565b801561058e5780601f106105635761010080835404028352916020019161058e565b820191906000526020600020905b81548152906001019060200180831161057157829003601f168201915b5050505050905090565b60006105a382610d30565b6105d9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061060082610776565b9050806001600160a01b0316836001600160a01b0316141561064e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0382161480159061066e575061066c8133610406565b155b156106a5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106b0838383610d69565b505050565b6106b0838383610dd2565b6008546001600160a01b0316331461071f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610758573d6000803e3d6000fd5b50565b6106b083838360405180602001604052806000815250610af3565b60006107818261100e565b5192915050565b600c805461079590611a29565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190611a29565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b505050505081565b60006001600160a01b038216610858576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610716565b6108e26000611150565b565b60606003805461051590611a29565b6009543360009081526005602052604090205468010000000000000000900467ffffffffffffffff16610926908361199b565b11156109745760405162461bcd60e51b815260206004820152601260248201527f457863656564656420746865206c696d697400000000000000000000000000006044820152606401610716565b600a54600154600054839190036000190161098f919061199b565b11156109dd5760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820746f6b656e73206c656674000000000000000000006044820152606401610716565b80600b546109eb91906119c7565b341015610a3a5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610716565b61075833826111af565b6001600160a01b038216331415610a87576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610afe848484610dd2565b6001600160a01b0383163b15158015610b205750610b1e848484846111cd565b155b15610b3e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b4f82610d30565b610b85576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610b8f6112c5565b9050805160001415610bb05760405180602001604052806000815250610bde565b80610bba846112d4565b600d604051602001610bce93929190611888565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610c3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610716565b600b55565b6008546001600160a01b03163314610c9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610716565b6001600160a01b038116610d1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610716565b61075881611150565b600d805461079590611a29565b600081600111158015610d44575060005482105b8015610500575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ddd8261100e565b9050836001600160a01b031681600001516001600160a01b031614610e2e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480610e4c5750610e4c8533610406565b80610e67575033610e5c84610598565b6001600160a01b0316145b905080610ea0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416610ee0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eec60008487610d69565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fc2576000548214610fc2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561103e575060005481105b1561111e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061111c5780516001600160a01b0316156110b2579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611117579392505050565b6110b2565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111c9828260405180602001604052806000815250611406565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061120290339089908890889060040161194c565b602060405180830381600087803b15801561121c57600080fd5b505af192505050801561124c575060408051601f3d908101601f1916820190925261124991810190611826565b60015b6112a7573d80801561127a576040519150601f19603f3d011682016040523d82523d6000602084013e61127f565b606091505b50805161129f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461051590611a29565b60608161131457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561133e578061132881611a64565b91506113379050600a836119b3565b9150611318565b60008167ffffffffffffffff81111561135957611359611ad5565b6040519080825280601f01601f191660200182016040528015611383576020820181803683370190505b5090505b84156112bd576113986001836119e6565b91506113a5600a86611a7f565b6113b090603061199b565b60f81b8183815181106113c5576113c5611abf565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506113ff600a866119b3565b9450611387565b6106b083838360016000546001600160a01b038516611451576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83611488576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561154957506001600160a01b0387163b15155b156115d2575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461159a60008884806001019550886111cd565b6115b7576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561154f5782600054146115cd57600080fd5b611618565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156115d3575b50600055611007565b80356001600160a01b038116811461163857600080fd5b919050565b60006020828403121561164f57600080fd5b610bde82611621565b6000806040838503121561166b57600080fd5b61167483611621565b915061168260208401611621565b90509250929050565b6000806000606084860312156116a057600080fd5b6116a984611621565b92506116b760208501611621565b9150604084013590509250925092565b600080600080608085870312156116dd57600080fd5b6116e685611621565b93506116f460208601611621565b925060408501359150606085013567ffffffffffffffff8082111561171857600080fd5b818701915087601f83011261172c57600080fd5b81358181111561173e5761173e611ad5565b604051601f8201601f19908116603f0116810190838211818310171561176657611766611ad5565b816040528281528a602084870101111561177f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117b657600080fd5b6117bf83611621565b9150602083013580151581146117d457600080fd5b809150509250929050565b600080604083850312156117f257600080fd5b6117fb83611621565b946020939093013593505050565b60006020828403121561181b57600080fd5b8135610bde81611aeb565b60006020828403121561183857600080fd5b8151610bde81611aeb565b60006020828403121561185557600080fd5b5035919050565b600081518084526118748160208601602086016119fd565b601f01601f19169290920160200192915050565b60008451602061189b8285838a016119fd565b8551918401916118ae8184848a016119fd565b8554920191600090600181811c90808316806118cb57607f831692505b8583108114156118e957634e487b7160e01b85526022600452602485fd5b8080156118fd576001811461190e5761193b565b60ff1985168852838801955061193b565b60008b81526020902060005b858110156119335781548a82015290840190880161191a565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261197e608083018461185c565b9695505050505050565b602081526000610bde602083018461185c565b600082198211156119ae576119ae611a93565b500190565b6000826119c2576119c2611aa9565b500490565b60008160001904831182151516156119e1576119e1611a93565b500290565b6000828210156119f8576119f8611a93565b500390565b60005b83811015611a18578181015183820152602001611a00565b83811115610b3e5750506000910152565b600181811c90821680611a3d57607f821691505b60208210811415611a5e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a7857611a78611a93565b5060010190565b600082611a8e57611a8e611aa9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461075857600080fdfea2646970667358221220b8a7212fcc5c94b02913bca297ca271e2f649395f7eab9224a3dcd29821daf1d64736f6c63430008070033697066733a2f2f516d597a32366f6f5857636b4d7634374250636136565a4c6939595652594d713873415a3470456f3537744b73312f
Deployed Bytecode
0x6080604052600436106101805760003560e01c8063715018a6116100d6578063c87b56dd1161007f578063e985e9c511610059578063e985e9c5146103eb578063f2fde38b14610434578063f7073c3a1461045457600080fd5b8063c87b56dd14610395578063ca0dcf16146103b5578063dbe2193f146103cb57600080fd5b8063a0712d68116100b0578063a0712d6814610342578063a22cb46514610355578063b88d4fde1461037557600080fd5b8063715018a6146102fa5780638da5cb5b1461030f57806395d89b411461032d57600080fd5b806323b872dd116101385780636352211e116101125780636352211e146102a55780636c0360eb146102c557806370a08231146102da57600080fd5b806323b872dd1461025d5780633ccfd60b1461027d57806342842e0e1461028557600080fd5b8063081812fc11610169578063081812fc146101dc578063095ea7b31461021457806318160ddd1461023657600080fd5b806301ffc9a71461018557806306fdde03146101ba575b600080fd5b34801561019157600080fd5b506101a56101a0366004611809565b610469565b60405190151581526020015b60405180910390f35b3480156101c657600080fd5b506101cf610506565b6040516101b19190611988565b3480156101e857600080fd5b506101fc6101f7366004611843565b610598565b6040516001600160a01b0390911681526020016101b1565b34801561022057600080fd5b5061023461022f3660046117df565b6105f5565b005b34801561024257600080fd5b5060015460005403600019015b6040519081526020016101b1565b34801561026957600080fd5b5061023461027836600461168b565b6106b5565b6102346106c0565b34801561029157600080fd5b506102346102a036600461168b565b61075b565b3480156102b157600080fd5b506101fc6102c0366004611843565b610776565b3480156102d157600080fd5b506101cf610788565b3480156102e657600080fd5b5061024f6102f536600461163d565b610816565b34801561030657600080fd5b5061023461087e565b34801561031b57600080fd5b506008546001600160a01b03166101fc565b34801561033957600080fd5b506101cf6108e4565b610234610350366004611843565b6108f3565b34801561036157600080fd5b506102346103703660046117a3565b610a44565b34801561038157600080fd5b506102346103903660046116c7565b610af3565b3480156103a157600080fd5b506101cf6103b0366004611843565b610b44565b3480156103c157600080fd5b5061024f600b5481565b3480156103d757600080fd5b506102346103e6366004611843565b610be5565b3480156103f757600080fd5b506101a5610406366004611658565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561044057600080fd5b5061023461044f36600461163d565b610c44565b34801561046057600080fd5b506101cf610d23565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806104cc57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061050057507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461051590611a29565b80601f016020809104026020016040519081016040528092919081815260200182805461054190611a29565b801561058e5780601f106105635761010080835404028352916020019161058e565b820191906000526020600020905b81548152906001019060200180831161057157829003601f168201915b5050505050905090565b60006105a382610d30565b6105d9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061060082610776565b9050806001600160a01b0316836001600160a01b0316141561064e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0382161480159061066e575061066c8133610406565b155b156106a5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106b0838383610d69565b505050565b6106b0838383610dd2565b6008546001600160a01b0316331461071f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610758573d6000803e3d6000fd5b50565b6106b083838360405180602001604052806000815250610af3565b60006107818261100e565b5192915050565b600c805461079590611a29565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190611a29565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b505050505081565b60006001600160a01b038216610858576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610716565b6108e26000611150565b565b60606003805461051590611a29565b6009543360009081526005602052604090205468010000000000000000900467ffffffffffffffff16610926908361199b565b11156109745760405162461bcd60e51b815260206004820152601260248201527f457863656564656420746865206c696d697400000000000000000000000000006044820152606401610716565b600a54600154600054839190036000190161098f919061199b565b11156109dd5760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820746f6b656e73206c656674000000000000000000006044820152606401610716565b80600b546109eb91906119c7565b341015610a3a5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610716565b61075833826111af565b6001600160a01b038216331415610a87576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610afe848484610dd2565b6001600160a01b0383163b15158015610b205750610b1e848484846111cd565b155b15610b3e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b4f82610d30565b610b85576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610b8f6112c5565b9050805160001415610bb05760405180602001604052806000815250610bde565b80610bba846112d4565b600d604051602001610bce93929190611888565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610c3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610716565b600b55565b6008546001600160a01b03163314610c9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610716565b6001600160a01b038116610d1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610716565b61075881611150565b600d805461079590611a29565b600081600111158015610d44575060005482105b8015610500575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ddd8261100e565b9050836001600160a01b031681600001516001600160a01b031614610e2e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480610e4c5750610e4c8533610406565b80610e67575033610e5c84610598565b6001600160a01b0316145b905080610ea0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416610ee0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eec60008487610d69565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fc2576000548214610fc2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561103e575060005481105b1561111e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061111c5780516001600160a01b0316156110b2579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611117579392505050565b6110b2565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111c9828260405180602001604052806000815250611406565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061120290339089908890889060040161194c565b602060405180830381600087803b15801561121c57600080fd5b505af192505050801561124c575060408051601f3d908101601f1916820190925261124991810190611826565b60015b6112a7573d80801561127a576040519150601f19603f3d011682016040523d82523d6000602084013e61127f565b606091505b50805161129f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461051590611a29565b60608161131457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561133e578061132881611a64565b91506113379050600a836119b3565b9150611318565b60008167ffffffffffffffff81111561135957611359611ad5565b6040519080825280601f01601f191660200182016040528015611383576020820181803683370190505b5090505b84156112bd576113986001836119e6565b91506113a5600a86611a7f565b6113b090603061199b565b60f81b8183815181106113c5576113c5611abf565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506113ff600a866119b3565b9450611387565b6106b083838360016000546001600160a01b038516611451576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83611488576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561154957506001600160a01b0387163b15155b156115d2575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461159a60008884806001019550886111cd565b6115b7576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561154f5782600054146115cd57600080fd5b611618565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156115d3575b50600055611007565b80356001600160a01b038116811461163857600080fd5b919050565b60006020828403121561164f57600080fd5b610bde82611621565b6000806040838503121561166b57600080fd5b61167483611621565b915061168260208401611621565b90509250929050565b6000806000606084860312156116a057600080fd5b6116a984611621565b92506116b760208501611621565b9150604084013590509250925092565b600080600080608085870312156116dd57600080fd5b6116e685611621565b93506116f460208601611621565b925060408501359150606085013567ffffffffffffffff8082111561171857600080fd5b818701915087601f83011261172c57600080fd5b81358181111561173e5761173e611ad5565b604051601f8201601f19908116603f0116810190838211818310171561176657611766611ad5565b816040528281528a602084870101111561177f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117b657600080fd5b6117bf83611621565b9150602083013580151581146117d457600080fd5b809150509250929050565b600080604083850312156117f257600080fd5b6117fb83611621565b946020939093013593505050565b60006020828403121561181b57600080fd5b8135610bde81611aeb565b60006020828403121561183857600080fd5b8151610bde81611aeb565b60006020828403121561185557600080fd5b5035919050565b600081518084526118748160208601602086016119fd565b601f01601f19169290920160200192915050565b60008451602061189b8285838a016119fd565b8551918401916118ae8184848a016119fd565b8554920191600090600181811c90808316806118cb57607f831692505b8583108114156118e957634e487b7160e01b85526022600452602485fd5b8080156118fd576001811461190e5761193b565b60ff1985168852838801955061193b565b60008b81526020902060005b858110156119335781548a82015290840190880161191a565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261197e608083018461185c565b9695505050505050565b602081526000610bde602083018461185c565b600082198211156119ae576119ae611a93565b500190565b6000826119c2576119c2611aa9565b500490565b60008160001904831182151516156119e1576119e1611a93565b500290565b6000828210156119f8576119f8611a93565b500390565b60005b83811015611a18578181015183820152602001611a00565b83811115610b3e5750506000910152565b600181811c90821680611a3d57607f821691505b60208210811415611a5e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a7857611a78611a93565b5060010190565b600082611a8e57611a8e611aa9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461075857600080fdfea2646970667358221220b8a7212fcc5c94b02913bca297ca271e2f649395f7eab9224a3dcd29821daf1d64736f6c63430008070033
Deployed Bytecode Sourcemap
43900:1657:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23709:305;;;;;;;;;;-1:-1:-1;23709:305:0;;;;;:::i;:::-;;:::i;:::-;;;6210:14:1;;6203:22;6185:41;;6173:2;6158:18;23709:305:0;;;;;;;;26822:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28325:204::-;;;;;;;;;;-1:-1:-1;28325:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5462:55:1;;;5444:74;;5432:2;5417:18;28325:204:0;5298:226:1;27888:371:0;;;;;;;;;;-1:-1:-1;27888:371:0;;;;;:::i;:::-;;:::i;:::-;;22958:303;;;;;;;;;;-1:-1:-1;45545:1:0;23212:12;23002:7;23196:13;:28;-1:-1:-1;;23196:46:0;22958:303;;;8423:25:1;;;8411:2;8396:18;22958:303:0;8277:177:1;29190:170:0;;;;;;;;;;-1:-1:-1;29190:170:0;;;;;:::i;:::-;;:::i;44709:114::-;;;:::i;29431:185::-;;;;;;;;;;-1:-1:-1;29431:185:0;;;;;:::i;:::-;;:::i;26630:125::-;;;;;;;;;;-1:-1:-1;26630:125:0;;;;;:::i;:::-;;:::i;44090:80::-;;;;;;;;;;;;;:::i;24078:206::-;;;;;;;;;;-1:-1:-1;24078:206:0;;;;;:::i;:::-;;:::i;43081:103::-;;;;;;;;;;;;;:::i;42430:87::-;;;;;;;;;;-1:-1:-1;42503:6:0;;-1:-1:-1;;;;;42503:6:0;42430:87;;26991:104;;;;;;;;;;;;;:::i;44268:433::-;;;;;;:::i;:::-;;:::i;28601:287::-;;;;;;;;;;-1:-1:-1;28601:287:0;;;;;:::i;:::-;;:::i;29687:369::-;;;;;;;;;;-1:-1:-1;29687:369:0;;;;;:::i;:::-;;:::i;44894:339::-;;;;;;;;;;-1:-1:-1;44894:339:0;;;;;:::i;:::-;;:::i;44039:36::-;;;;;;;;;;;;;;;;45349:96;;;;;;;;;;-1:-1:-1;45349:96:0;;;;;:::i;:::-;;:::i;28959:164::-;;;;;;;;;;-1:-1:-1;28959:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29080:25:0;;;29056:4;29080:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28959:164;43339:201;;;;;;;;;;-1:-1:-1;43339:201:0;;;;;:::i;:::-;;:::i;44177:30::-;;;;;;;;;;;;;:::i;23709:305::-;23811:4;-1:-1:-1;;;;;;23848:40:0;;23863:25;23848:40;;:105;;-1:-1:-1;;;;;;;23905:48:0;;23920:33;23905:48;23848:105;:158;;;-1:-1:-1;19447:25:0;-1:-1:-1;;;;;;19432:40:0;;;23970:36;23828:178;23709:305;-1:-1:-1;;23709:305:0:o;26822:100::-;26876:13;26909:5;26902:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26822:100;:::o;28325:204::-;28393:7;28418:16;28426:7;28418;:16::i;:::-;28413:64;;28443:34;;;;;;;;;;;;;;28413:64;-1:-1:-1;28497:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28497:24:0;;28325:204::o;27888:371::-;27961:13;27977:24;27993:7;27977:15;:24::i;:::-;27961:40;;28022:5;-1:-1:-1;;;;;28016:11:0;:2;-1:-1:-1;;;;;28016:11:0;;28012:48;;;28036:24;;;;;;;;;;;;;;28012:48;16381:10;-1:-1:-1;;;;;28077:21:0;;;;;;:63;;-1:-1:-1;28103:37:0;28120:5;16381:10;28959:164;:::i;28103:37::-;28102:38;28077:63;28073:138;;;28164:35;;;;;;;;;;;;;;28073:138;28223:28;28232:2;28236:7;28245:5;28223:8;:28::i;:::-;27950:309;27888:371;;:::o;29190:170::-;29324:28;29334:4;29340:2;29344:7;29324:9;:28::i;44709:114::-;42503:6;;-1:-1:-1;;;;;42503:6:0;16381:10;42650:23;42642:68;;;;-1:-1:-1;;;42642:68:0;;7768:2:1;42642:68:0;;;7750:21:1;;;7787:18;;;7780:30;7846:34;7826:18;;;7819:62;7898:18;;42642:68:0;;;;;;;;;42503:6;;44767:48:::1;::::0;-1:-1:-1;;;;;42503:6:0;;;;44793:21:::1;44767:48:::0;::::1;;;::::0;::::1;::::0;;;44793:21;42503:6;44767:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44709:114::o:0;29431:185::-;29569:39;29586:4;29592:2;29596:7;29569:39;;;;;;;;;;;;:16;:39::i;26630:125::-;26694:7;26721:21;26734:7;26721:12;:21::i;:::-;:26;;26630:125;-1:-1:-1;;26630:125:0:o;44090:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24078:206::-;24142:7;-1:-1:-1;;;;;24166:19:0;;24162:60;;24194:28;;;;;;;;;;;;;;24162:60;-1:-1:-1;;;;;;24248:19:0;;;;;:12;:19;;;;;:27;;;;24078:206::o;43081:103::-;42503:6;;-1:-1:-1;;;;;42503:6:0;16381:10;42650:23;42642:68;;;;-1:-1:-1;;;42642:68:0;;7768:2:1;42642:68:0;;;7750:21:1;;;7787:18;;;7780:30;7846:34;7826:18;;;7819:62;7898:18;;42642:68:0;7566:356:1;42642:68:0;43146:30:::1;43173:1;43146:18;:30::i;:::-;43081:103::o:0;26991:104::-;27047:13;27080:7;27073:14;;;;;:::i;44268:433::-;44456:9;;44441:10;24427:7;24462:19;;;:12;:19;;;;;:32;;;;;;44416:36;;:8;:36;:::i;:::-;:49;;44408:80;;;;-1:-1:-1;;;44408:80:0;;7070:2:1;44408:80:0;;;7052:21:1;7109:2;7089:18;;;7082:30;7148:20;7128:18;;;7121:48;7186:18;;44408:80:0;6868:342:1;44408:80:0;44535:10;;45545:1;23212:12;23002:7;23196:13;44523:8;;23196:28;;-1:-1:-1;;23196:46:0;44507:24;;;;:::i;:::-;:38;;44499:73;;;;-1:-1:-1;;;44499:73:0;;7417:2:1;44499:73:0;;;7399:21:1;7456:2;7436:18;;;7429:30;7495:24;7475:18;;;7468:52;7537:18;;44499:73:0;7215:346:1;44499:73:0;44616:8;44605;;:19;;;;:::i;:::-;44591:9;:34;;44583:68;;;;-1:-1:-1;;;44583:68:0;;8129:2:1;44583:68:0;;;8111:21:1;8168:2;8148:18;;;8141:30;8207:23;8187:18;;;8180:51;8248:18;;44583:68:0;7927:345:1;44583:68:0;44662:31;44672:10;44684:8;44662:9;:31::i;28601:287::-;-1:-1:-1;;;;;28700:24:0;;16381:10;28700:24;28696:54;;;28733:17;;;;;;;;;;;;;;28696:54;16381:10;28763:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28763:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28763:53:0;;;;;;;;;;28832:48;;6185:41:1;;;28763:42:0;;16381:10;28832:48;;6158:18:1;28832:48:0;;;;;;;28601:287;;:::o;29687:369::-;29854:28;29864:4;29870:2;29874:7;29854:9;:28::i;:::-;-1:-1:-1;;;;;29897:13:0;;8730:19;:23;;29897:76;;;;;29917:56;29948:4;29954:2;29958:7;29967:5;29917:30;:56::i;:::-;29916:57;29897:76;29893:156;;;29997:40;;-1:-1:-1;;;29997:40:0;;;;;;;;;;;29893:156;29687:369;;;;:::o;44894:339::-;44967:13;44998:16;45006:7;44998;:16::i;:::-;44993:59;;45023:29;;;;;;;;;;;;;;44993:59;45065:22;45090:10;:8;:10::i;:::-;45065:35;;45134:8;45128:22;45154:1;45128:27;;:97;;;;;;;;;;;;;;;;;45182:8;45192:18;:7;:16;:18::i;:::-;45212:6;45165:54;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45128:97;45121:104;44894:339;-1:-1:-1;;;44894:339:0:o;45349:96::-;42503:6;;-1:-1:-1;;;;;42503:6:0;16381:10;42650:23;42642:68;;;;-1:-1:-1;;;42642:68:0;;7768:2:1;42642:68:0;;;7750:21:1;;;7787:18;;;7780:30;7846:34;7826:18;;;7819:62;7898:18;;42642:68:0;7566:356:1;42642:68:0;45417:8:::1;:20:::0;45349:96::o;43339:201::-;42503:6;;-1:-1:-1;;;;;42503:6:0;16381:10;42650:23;42642:68;;;;-1:-1:-1;;;42642:68:0;;7768:2:1;42642:68:0;;;7750:21:1;;;7787:18;;;7780:30;7846:34;7826:18;;;7819:62;7898:18;;42642:68:0;7566:356:1;42642:68:0;-1:-1:-1;;;;;43428:22:0;::::1;43420:73;;;::::0;-1:-1:-1;;;43420:73:0;;6663:2:1;43420:73:0::1;::::0;::::1;6645:21:1::0;6702:2;6682:18;;;6675:30;6741:34;6721:18;;;6714:62;6812:8;6792:18;;;6785:36;6838:19;;43420:73:0::1;6461:402:1::0;43420:73:0::1;43504:28;43523:8;43504:18;:28::i;44177:30::-:0;;;;;;;:::i;30311:174::-;30368:4;30411:7;45545:1;30392:26;;:53;;;;;30432:13;;30422:7;:23;30392:53;:85;;;;-1:-1:-1;;30450:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;30450:27:0;;;;30449:28;;30311:174::o;38468:196::-;38583:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;38583:29:0;-1:-1:-1;;;;;38583:29:0;;;;;;;;;38628:28;;38583:24;;38628:28;;;;;;;38468:196;;;:::o;33411:2130::-;33526:35;33564:21;33577:7;33564:12;:21::i;:::-;33526:59;;33624:4;-1:-1:-1;;;;;33602:26:0;:13;:18;;;-1:-1:-1;;;;;33602:26:0;;33598:67;;33637:28;;;;;;;;;;;;;;33598:67;33678:22;16381:10;-1:-1:-1;;;;;33704:20:0;;;;:73;;-1:-1:-1;33741:36:0;33758:4;16381:10;28959:164;:::i;33741:36::-;33704:126;;;-1:-1:-1;16381:10:0;33794:20;33806:7;33794:11;:20::i;:::-;-1:-1:-1;;;;;33794:36:0;;33704:126;33678:153;;33849:17;33844:66;;33875:35;;;;;;;;;;;;;;33844:66;-1:-1:-1;;;;;33925:16:0;;33921:52;;33950:23;;;;;;;;;;;;;;33921:52;34094:35;34111:1;34115:7;34124:4;34094:8;:35::i;:::-;-1:-1:-1;;;;;34425:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34425:31:0;;;;;;;-1:-1:-1;;34425:31:0;;;;;;;34471:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34471:29:0;;;;;;;;;;;34551:20;;;:11;:20;;;;;;34586:18;;-1:-1:-1;;;;;;34619:49:0;;;;-1:-1:-1;;;34652:15:0;34619:49;;;;;;;;;;34942:11;;35002:24;;;;;35045:13;;34551:20;;35002:24;;35045:13;35041:384;;35255:13;;35240:11;:28;35236:174;;35293:20;;35362:28;;;;35336:54;;-1:-1:-1;;;35336:54:0;-1:-1:-1;;;;;;35336:54:0;;;-1:-1:-1;;;;;35293:20:0;;35336:54;;;;35236:174;34400:1036;;;35472:7;35468:2;-1:-1:-1;;;;;35453:27:0;35462:4;-1:-1:-1;;;;;35453:27:0;;;;;;;;;;;35491:42;33515:2026;;33411:2130;;;:::o;25459:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;25570:7:0;;45545:1;25619:23;;:47;;;;;25653:13;;25646:4;:20;25619:47;25615:886;;;25687:31;25721:17;;;:11;:17;;;;;;;;;25687:51;;;;;;;;;-1:-1:-1;;;;;25687:51:0;;;;-1:-1:-1;;;25687:51:0;;;;;;;;;;;-1:-1:-1;;;25687:51:0;;;;;;;;;;;;;;25757:729;;25807:14;;-1:-1:-1;;;;;25807:28:0;;25803:101;;25871:9;25459:1109;-1:-1:-1;;;25459:1109:0:o;25803:101::-;-1:-1:-1;;;26246:6:0;26291:17;;;;:11;:17;;;;;;;;;26279:29;;;;;;;;;-1:-1:-1;;;;;26279:29:0;;;;;-1:-1:-1;;;26279:29:0;;;;;;;;;;;-1:-1:-1;;;26279:29:0;;;;;;;;;;;;;26339:28;26335:109;;26407:9;25459:1109;-1:-1:-1;;;25459:1109:0:o;26335:109::-;26206:261;;;25668:833;25615:886;26529:31;;;;;;;;;;;;;;43700:191;43793:6;;;-1:-1:-1;;;;;43810:17:0;;;-1:-1:-1;;43810:17:0;;;;;;;43843:40;;43793:6;;;43810:17;43793:6;;43843:40;;43774:16;;43843:40;43763:128;43700:191;:::o;30493:104::-;30562:27;30572:2;30576:8;30562:27;;;;;;;;;;;;:9;:27::i;:::-;30493:104;;:::o;39156:667::-;39340:72;;-1:-1:-1;;;39340:72:0;;39319:4;;-1:-1:-1;;;;;39340:36:0;;;;;:72;;16381:10;;39391:4;;39397:7;;39406:5;;39340:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39340:72:0;;;;;;;;-1:-1:-1;;39340:72:0;;;;;;;;;;;;:::i;:::-;;;39336:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39574:13:0;;39570:235;;39620:40;;-1:-1:-1;;;39620:40:0;;;;;;;;;;;39570:235;39763:6;39757:13;39748:6;39744:2;39740:15;39733:38;39336:480;-1:-1:-1;;;;;;39459:55:0;-1:-1:-1;;;39459:55:0;;-1:-1:-1;39336:480:0;39156:667;;;;;;:::o;45241:100::-;45293:13;45326:7;45319:14;;;;;:::i;16797:723::-;16853:13;17074:10;17070:53;;-1:-1:-1;;17101:10:0;;;;;;;;;;;;;;;;;;16797:723::o;17070:53::-;17148:5;17133:12;17189:78;17196:9;;17189:78;;17222:8;;;;:::i;:::-;;-1:-1:-1;17245:10:0;;-1:-1:-1;17253:2:0;17245:10;;:::i;:::-;;;17189:78;;;17277:19;17309:6;17299:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17299:17:0;;17277:39;;17327:154;17334:10;;17327:154;;17361:11;17371:1;17361:11;;:::i;:::-;;-1:-1:-1;17430:10:0;17438:2;17430:5;:10;:::i;:::-;17417:24;;:2;:24;:::i;:::-;17404:39;;17387:6;17394;17387:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;17458:11:0;17467:2;17458:11;;:::i;:::-;;;17327:154;;30960:163;31083:32;31089:2;31093:8;31103:5;31110:4;31521:20;31544:13;-1:-1:-1;;;;;31572:16:0;;31568:48;;31597:19;;;;;;;;;;;;;;31568:48;31631:13;31627:44;;31653:18;;;;;;;;;;;;;;31627:44;-1:-1:-1;;;;;32022:16:0;;;;;;:12;:16;;;;;;;;:44;;32081:49;;;32022:44;;;;;;;;32081:49;;;;-1:-1:-1;;32022:44:0;;;;;;32081:49;;;;;;;;;;;;;;;;32147:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32197:66:0;;;;-1:-1:-1;;;32247:15:0;32197:66;;;;;;;;;;32147:25;32344:23;;;32388:4;:23;;;;-1:-1:-1;;;;;;32396:13:0;;8730:19;:23;;32396:15;32384:641;;;32432:314;32463:38;;32488:12;;-1:-1:-1;;;;;32463:38:0;;;32480:1;;32463:38;;32480:1;;32463:38;32529:69;32568:1;32572:2;32576:14;;;;;;32592:5;32529:30;:69::i;:::-;32524:174;;32634:40;;-1:-1:-1;;;32634:40:0;;;;;;;;;;;32524:174;32741:3;32725:12;:19;;32432:314;;32827:12;32810:13;;:29;32806:43;;32841:8;;;32806:43;32384:641;;;32890:120;32921:40;;32946:14;;;;;-1:-1:-1;;;;;32921:40:0;;;32938:1;;32921:40;;32938:1;;32921:40;33005:3;32989:12;:19;;32890:120;;32384:641;-1:-1:-1;33039:13:0;:28;33089:60;29687:369;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:1138::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:53;;;1193:1;1190;1183:12;1144:53;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:34;;;1484:1;1481;1474:12;1454:34;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:55;;1589:1;1586;1579:12;1538:55;1625:2;1612:16;1647:2;1643;1640:10;1637:36;;;1653:18;;:::i;:::-;1728:2;1722:9;1696:2;1782:13;;-1:-1:-1;;1778:22:1;;;1802:2;1774:31;1770:40;1758:53;;;1826:18;;;1846:22;;;1823:46;1820:72;;;1872:18;;:::i;:::-;1912:10;1908:2;1901:22;1947:2;1939:6;1932:18;1987:7;1982:2;1977;1973;1969:11;1965:20;1962:33;1959:53;;;2008:1;2005;1998:12;1959:53;2064:2;2059;2055;2051:11;2046:2;2038:6;2034:15;2021:46;2109:1;2104:2;2099;2091:6;2087:15;2083:24;2076:35;2130:6;2120:16;;;;;;;1004:1138;;;;;;;:::o;2147:347::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2312:29;2331:9;2312:29;:::i;:::-;2302:39;;2391:2;2380:9;2376:18;2363:32;2438:5;2431:13;2424:21;2417:5;2414:32;2404:60;;2460:1;2457;2450:12;2404:60;2483:5;2473:15;;;2147:347;;;;;:::o;2499:254::-;2567:6;2575;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2667:29;2686:9;2667:29;:::i;:::-;2657:39;2743:2;2728:18;;;;2715:32;;-1:-1:-1;;;2499:254:1:o;2758:245::-;2816:6;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2943:30;2967:5;2943:30;:::i;3008:249::-;3077:6;3130:2;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3178:9;3172:16;3197:30;3221:5;3197:30;:::i;3262:180::-;3321:6;3374:2;3362:9;3353:7;3349:23;3345:32;3342:52;;;3390:1;3387;3380:12;3342:52;-1:-1:-1;3413:23:1;;3262:180;-1:-1:-1;3262:180:1:o;3447:257::-;3488:3;3526:5;3520:12;3553:6;3548:3;3541:19;3569:63;3625:6;3618:4;3613:3;3609:14;3602:4;3595:5;3591:16;3569:63;:::i;:::-;3686:2;3665:15;-1:-1:-1;;3661:29:1;3652:39;;;;3693:4;3648:50;;3447:257;-1:-1:-1;;3447:257:1:o;3709:1584::-;3933:3;3971:6;3965:13;3997:4;4010:51;4054:6;4049:3;4044:2;4036:6;4032:15;4010:51;:::i;:::-;4124:13;;4083:16;;;;4146:55;4124:13;4083:16;4168:15;;;4146:55;:::i;:::-;4290:13;;4223:20;;;4263:1;;4350;4372:18;;;;4425;;;;4452:93;;4530:4;4520:8;4516:19;4504:31;;4452:93;4593:2;4583:8;4580:16;4560:18;4557:40;4554:224;;;-1:-1:-1;;;4627:3:1;4620:90;4733:4;4730:1;4723:15;4763:4;4758:3;4751:17;4554:224;4794:18;4821:110;;;;4945:1;4940:328;;;;4787:481;;4821:110;-1:-1:-1;;4856:24:1;;4842:39;;4901:20;;;;-1:-1:-1;4821:110:1;;4940:328;8532:1;8525:14;;;8569:4;8556:18;;5035:1;5049:169;5063:8;5060:1;5057:15;5049:169;;;5145:14;;5130:13;;;5123:37;5188:16;;;;5080:10;;5049:169;;;5053:3;;5249:8;5242:5;5238:20;5231:27;;4787:481;-1:-1:-1;5284:3:1;;3709:1584;-1:-1:-1;;;;;;;;;;;3709:1584:1:o;5529:511::-;5723:4;-1:-1:-1;;;;;5833:2:1;5825:6;5821:15;5810:9;5803:34;5885:2;5877:6;5873:15;5868:2;5857:9;5853:18;5846:43;;5925:6;5920:2;5909:9;5905:18;5898:34;5968:3;5963:2;5952:9;5948:18;5941:31;5989:45;6029:3;6018:9;6014:19;6006:6;5989:45;:::i;:::-;5981:53;5529:511;-1:-1:-1;;;;;;5529:511:1:o;6237:219::-;6386:2;6375:9;6368:21;6349:4;6406:44;6446:2;6435:9;6431:18;6423:6;6406:44;:::i;8585:128::-;8625:3;8656:1;8652:6;8649:1;8646:13;8643:39;;;8662:18;;:::i;:::-;-1:-1:-1;8698:9:1;;8585:128::o;8718:120::-;8758:1;8784;8774:35;;8789:18;;:::i;:::-;-1:-1:-1;8823:9:1;;8718:120::o;8843:168::-;8883:7;8949:1;8945;8941:6;8937:14;8934:1;8931:21;8926:1;8919:9;8912:17;8908:45;8905:71;;;8956:18;;:::i;:::-;-1:-1:-1;8996:9:1;;8843:168::o;9016:125::-;9056:4;9084:1;9081;9078:8;9075:34;;;9089:18;;:::i;:::-;-1:-1:-1;9126:9:1;;9016:125::o;9146:258::-;9218:1;9228:113;9242:6;9239:1;9236:13;9228:113;;;9318:11;;;9312:18;9299:11;;;9292:39;9264:2;9257:10;9228:113;;;9359:6;9356:1;9353:13;9350:48;;;-1:-1:-1;;9394:1:1;9376:16;;9369:27;9146:258::o;9409:437::-;9488:1;9484:12;;;;9531;;;9552:61;;9606:4;9598:6;9594:17;9584:27;;9552:61;9659:2;9651:6;9648:14;9628:18;9625:38;9622:218;;;-1:-1:-1;;;9693:1:1;9686:88;9797:4;9794:1;9787:15;9825:4;9822:1;9815:15;9622:218;;9409:437;;;:::o;9851:135::-;9890:3;-1:-1:-1;;9911:17:1;;9908:43;;;9931:18;;:::i;:::-;-1:-1:-1;9978:1:1;9967:13;;9851:135::o;9991:112::-;10023:1;10049;10039:35;;10054:18;;:::i;:::-;-1:-1:-1;10088:9:1;;9991:112::o;10108:184::-;-1:-1:-1;;;10157:1:1;10150:88;10257:4;10254:1;10247:15;10281:4;10278:1;10271:15;10297:184;-1:-1:-1;;;10346:1:1;10339:88;10446:4;10443:1;10436:15;10470:4;10467:1;10460:15;10486:184;-1:-1:-1;;;10535:1:1;10528:88;10635:4;10632:1;10625:15;10659:4;10656:1;10649:15;10675:184;-1:-1:-1;;;10724:1:1;10717:88;10824:4;10821:1;10814:15;10848:4;10845:1;10838:15;10864:177;-1:-1:-1;;;;;;10942:5:1;10938:78;10931:5;10928:89;10918:117;;11031:1;11028;11021:12
Swarm Source
ipfs://b8a7212fcc5c94b02913bca297ca271e2f649395f7eab9224a3dcd29821daf1d
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.