Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
98 DPunks
Holders
59
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DPunksLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DPunks
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-03 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; contract DPunks is ERC721, Ownable { uint256 public constant MAX_SUPPLY = 1000; uint256 private mintCount = 0; uint256 public price = 88000000000000000; string baseTokenURI; bool public saleOpen = false; event Minted(uint256 totalMinted); constructor(string memory baseURI) ERC721("D Punks", "DPunks") { setBaseURI(baseURI); } function totalSupply() public view returns (uint256) { return mintCount; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function changePrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function toggleSale() external onlyOwner { saleOpen = !saleOpen; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "Transfer failed."); } function mint(address _to, uint256 _count) external payable { uint256 supply = totalSupply(); require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply"); require(_count > 0, "Minimum 1 NFT has to be minted per transaction"); if (msg.sender != owner()) { require(saleOpen, "Sale is not open yet"); require( _count <= 8, "Maximum 8 NFTs can be minted per transaction" ); require( msg.value >= price * _count, "Ether sent with this transaction is not correct" ); } mintCount += _count; for (uint256 i = 0; i < _count; i++) { _safeMint(_to, ++supply); emit Minted(supply); } } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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
60806040526000600755670138a388a43c0000600855600a805460ff191690553480156200002c57600080fd5b50604051620021f9380380620021f98339810160408190526200004f9162000254565b6040805180820182526007815266442050756e6b7360c81b6020808301918252835180850190945260068452654450756e6b7360d01b9084015281519192916200009c91600091620001ae565b508051620000b2906001906020840190620001ae565b505050620000cf620000c9620000e160201b60201c565b620000e5565b620000da8162000137565b50620003ab565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000141620000e1565b6001600160a01b0316620001546200019f565b6001600160a01b031614620001865760405162461bcd60e51b81526004016200017d9062000323565b60405180910390fd5b80516200019b906009906020840190620001ae565b5050565b6006546001600160a01b031690565b828054620001bc9062000358565b90600052602060002090601f016020900481019282620001e057600085556200022b565b82601f10620001fb57805160ff19168380011785556200022b565b828001600101855582156200022b579182015b828111156200022b5782518255916020019190600101906200020e565b50620002399291506200023d565b5090565b5b808211156200023957600081556001016200023e565b6000602080838503121562000267578182fd5b82516001600160401b03808211156200027e578384fd5b818501915085601f83011262000292578384fd5b815181811115620002a757620002a762000395565b604051601f8201601f1916810185018381118282101715620002cd57620002cd62000395565b6040528181528382018501881015620002e4578586fd5b8592505b81831015620003075783830185015181840186015291840191620002e8565b818311156200031857858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200036d57607f821691505b602082108114156200038f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611e3e80620003bb6000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146103cf578063c87b56dd146103ef578063e985e9c51461040f578063f2fde38b1461042f57610166565b8063a035b1fe1461037a578063a22cb4651461038f578063a2b40d19146103af57610166565b806370a08231146102f1578063715018a6146103115780637d8966e4146103265780638da5cb5b1461033b57806395d89b411461035057806399288dbb1461036557610166565b806332cb6b0c1161012357806332cb6b0c146102545780633ccfd60b1461026957806340c10f191461027e57806342842e0e1461029157806355f804b3146102b15780636352211e146102d157610166565b806301ffc9a71461016b57806306fdde03146101a1578063081812fc146101c3578063095ea7b3146101f057806318160ddd1461021257806323b872dd14610234575b600080fd5b34801561017757600080fd5b5061018b610186366004611575565b61044f565b60405161019891906116ba565b60405180910390f35b3480156101ad57600080fd5b506101b6610497565b60405161019891906116c5565b3480156101cf57600080fd5b506101e36101de3660046115f3565b610529565b6040516101989190611669565b3480156101fc57600080fd5b5061021061020b36600461154c565b610575565b005b34801561021e57600080fd5b5061022761060d565b6040516101989190611caf565b34801561024057600080fd5b5061021061024f36600461145e565b610613565b34801561026057600080fd5b5061022761064b565b34801561027557600080fd5b50610210610651565b61021061028c36600461154c565b61070f565b34801561029d57600080fd5b506102106102ac36600461145e565b61087d565b3480156102bd57600080fd5b506102106102cc3660046115ad565b610898565b3480156102dd57600080fd5b506101e36102ec3660046115f3565b6108ee565b3480156102fd57600080fd5b5061022761030c366004611412565b610923565b34801561031d57600080fd5b50610210610967565b34801561033257600080fd5b506102106109b2565b34801561034757600080fd5b506101e3610a05565b34801561035c57600080fd5b506101b6610a14565b34801561037157600080fd5b5061018b610a23565b34801561038657600080fd5b50610227610a2c565b34801561039b57600080fd5b506102106103aa366004611512565b610a32565b3480156103bb57600080fd5b506102106103ca3660046115f3565b610b00565b3480156103db57600080fd5b506102106103ea366004611499565b610b44565b3480156103fb57600080fd5b506101b661040a3660046115f3565b610b7d565b34801561041b57600080fd5b5061018b61042a36600461142c565b610c00565b34801561043b57600080fd5b5061021061044a366004611412565b610c2e565b60006001600160e01b031982166380ac58cd60e01b148061048057506001600160e01b03198216635b5e139f60e01b145b8061048f575061048f82610c9c565b90505b919050565b6060600080546104a690611d46565b80601f01602080910402602001604051908101604052809291908181526020018280546104d290611d46565b801561051f5780601f106104f45761010080835404028352916020019161051f565b820191906000526020600020905b81548152906001019060200180831161050257829003601f168201915b5050505050905090565b600061053482610cb5565b6105595760405162461bcd60e51b815260040161055090611a0f565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610580826108ee565b9050806001600160a01b0316836001600160a01b031614156105b45760405162461bcd60e51b815260040161055090611b77565b806001600160a01b03166105c6610cd2565b6001600160a01b031614806105e257506105e28161042a610cd2565b6105fe5760405162461bcd60e51b8152600401610550906118ea565b6106088383610cd6565b505050565b60075490565b61062461061e610cd2565b82610d44565b6106405760405162461bcd60e51b815260040161055090611c12565b610608838383610dc9565b6103e881565b610659610cd2565b6001600160a01b031661066a610a05565b6001600160a01b0316146106905760405162461bcd60e51b815260040161055090611aaa565b6000336001600160a01b0316476040516106a990611666565b60006040518083038185875af1925050503d80600081146106e6576040519150601f19603f3d011682016040523d82523d6000602084013e6106eb565b606091505b505090508061070c5760405162461bcd60e51b815260040161055090611be8565b50565b600061071961060d565b90506103e86107288383611cb8565b11156107465760405162461bcd60e51b815260040161055090611bb8565b600082116107665760405162461bcd60e51b8152600401610550906116d8565b61076e610a05565b6001600160a01b0316336001600160a01b0316146107f657600a5460ff166107a85760405162461bcd60e51b815260040161055090611870565b60088211156107c95760405162461bcd60e51b815260040161055090611c63565b816008546107d79190611ce4565b3410156107f65760405162461bcd60e51b815260040161055090611a5b565b81600760008282546108089190611cb8565b90915550600090505b828110156108775761082e8461082684611d81565b935083610ef6565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a8260405161085d9190611caf565b60405180910390a18061086f81611d81565b915050610811565b50505050565b61060883838360405180602001604052806000815250610b44565b6108a0610cd2565b6001600160a01b03166108b1610a05565b6001600160a01b0316146108d75760405162461bcd60e51b815260040161055090611aaa565b80516108ea9060099060208401906112f2565b5050565b6000818152600260205260408120546001600160a01b03168061048f5760405162461bcd60e51b815260040161055090611991565b60006001600160a01b03821661094b5760405162461bcd60e51b815260040161055090611947565b506001600160a01b031660009081526003602052604090205490565b61096f610cd2565b6001600160a01b0316610980610a05565b6001600160a01b0316146109a65760405162461bcd60e51b815260040161055090611aaa565b6109b06000610f10565b565b6109ba610cd2565b6001600160a01b03166109cb610a05565b6001600160a01b0316146109f15760405162461bcd60e51b815260040161055090611aaa565b600a805460ff19811660ff90911615179055565b6006546001600160a01b031690565b6060600180546104a690611d46565b600a5460ff1681565b60085481565b610a3a610cd2565b6001600160a01b0316826001600160a01b03161415610a6b5760405162461bcd60e51b815260040161055090611839565b8060056000610a78610cd2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610abc610cd2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610af491906116ba565b60405180910390a35050565b610b08610cd2565b6001600160a01b0316610b19610a05565b6001600160a01b031614610b3f5760405162461bcd60e51b815260040161055090611aaa565b600855565b610b55610b4f610cd2565b83610d44565b610b715760405162461bcd60e51b815260040161055090611c12565b61087784848484610f62565b6060610b8882610cb5565b610ba45760405162461bcd60e51b815260040161055090611b28565b6000610bae610f95565b90506000815111610bce5760405180602001604052806000815250610bf9565b80610bd884610fa4565b604051602001610be9929190611637565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610c36610cd2565b6001600160a01b0316610c47610a05565b6001600160a01b031614610c6d5760405162461bcd60e51b815260040161055090611aaa565b6001600160a01b038116610c935760405162461bcd60e51b815260040161055090611778565b61070c81610f10565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d0b826108ee565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d4f82610cb5565b610d6b5760405162461bcd60e51b81526004016105509061189e565b6000610d76836108ee565b9050806001600160a01b0316846001600160a01b03161480610db15750836001600160a01b0316610da684610529565b6001600160a01b0316145b80610dc15750610dc18185610c00565b949350505050565b826001600160a01b0316610ddc826108ee565b6001600160a01b031614610e025760405162461bcd60e51b815260040161055090611adf565b6001600160a01b038216610e285760405162461bcd60e51b8152600401610550906117f5565b610e33838383610608565b610e3e600082610cd6565b6001600160a01b0383166000908152600360205260408120805460019290610e67908490611d03565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e95908490611cb8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108ea8282604051806020016040528060008152506110bf565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f6d848484610dc9565b610f79848484846110f2565b6108775760405162461bcd60e51b815260040161055090611726565b6060600980546104a690611d46565b606081610fc957506040805180820190915260018152600360fc1b6020820152610492565b8160005b8115610ff35780610fdd81611d81565b9150610fec9050600a83611cd0565b9150610fcd565b60008167ffffffffffffffff81111561101c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611046576020820181803683370190505b5090505b8415610dc15761105b600183611d03565b9150611068600a86611d9c565b611073906030611cb8565b60f81b81838151811061109657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506110b8600a86611cd0565b945061104a565b6110c9838361120d565b6110d660008484846110f2565b6106085760405162461bcd60e51b815260040161055090611726565b6000611106846001600160a01b03166112ec565b1561120257836001600160a01b031663150b7a02611122610cd2565b8786866040518563ffffffff1660e01b8152600401611144949392919061167d565b602060405180830381600087803b15801561115e57600080fd5b505af192505050801561118e575060408051601f3d908101601f1916820190925261118b91810190611591565b60015b6111e8573d8080156111bc576040519150601f19603f3d011682016040523d82523d6000602084013e6111c1565b606091505b5080516111e05760405162461bcd60e51b815260040161055090611726565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dc1565b506001949350505050565b6001600160a01b0382166112335760405162461bcd60e51b8152600401610550906119da565b61123c81610cb5565b156112595760405162461bcd60e51b8152600401610550906117be565b61126560008383610608565b6001600160a01b038216600090815260036020526040812080546001929061128e908490611cb8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546112fe90611d46565b90600052602060002090601f0160209004810192826113205760008555611366565b82601f1061133957805160ff1916838001178555611366565b82800160010185558215611366579182015b8281111561136657825182559160200191906001019061134b565b50611372929150611376565b5090565b5b808211156113725760008155600101611377565b600067ffffffffffffffff808411156113a6576113a6611ddc565b604051601f8501601f1916810160200182811182821017156113ca576113ca611ddc565b6040528481529150818385018610156113e257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461049257600080fd5b600060208284031215611423578081fd5b610bf9826113fb565b6000806040838503121561143e578081fd5b611447836113fb565b9150611455602084016113fb565b90509250929050565b600080600060608486031215611472578081fd5b61147b846113fb565b9250611489602085016113fb565b9150604084013590509250925092565b600080600080608085870312156114ae578081fd5b6114b7856113fb565b93506114c5602086016113fb565b925060408501359150606085013567ffffffffffffffff8111156114e7578182fd5b8501601f810187136114f7578182fd5b6115068782356020840161138b565b91505092959194509250565b60008060408385031215611524578182fd5b61152d836113fb565b915060208301358015158114611541578182fd5b809150509250929050565b6000806040838503121561155e578182fd5b611567836113fb565b946020939093013593505050565b600060208284031215611586578081fd5b8135610bf981611df2565b6000602082840312156115a2578081fd5b8151610bf981611df2565b6000602082840312156115be578081fd5b813567ffffffffffffffff8111156115d4578182fd5b8201601f810184136115e4578182fd5b610dc18482356020840161138b565b600060208284031215611604578081fd5b5035919050565b60008151808452611623816020860160208601611d1a565b601f01601f19169290920160200192915050565b60008351611649818460208801611d1a565b83519083019061165d818360208801611d1a565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116b09083018461160b565b9695505050505050565b901515815260200190565b600060208252610bf9602083018461160b565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f4d6178696d756d2038204e4654732063616e206265206d696e7465642070657260408201526b103a3930b739b0b1ba34b7b760a11b606082015260800190565b90815260200190565b60008219821115611ccb57611ccb611db0565b500190565b600082611cdf57611cdf611dc6565b500490565b6000816000190483118215151615611cfe57611cfe611db0565b500290565b600082821015611d1557611d15611db0565b500390565b60005b83811015611d35578181015183820152602001611d1d565b838111156108775750506000910152565b600281046001821680611d5a57607f821691505b60208210811415611d7b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d9557611d95611db0565b5060010190565b600082611dab57611dab611dc6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461070c57600080fdfea26469706673582212208d7806fd482f8e623b1fe686e36eb95465afd5645c609289b05783e78eb465f564736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101665760003560e01c806370a08231116100d1578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146103cf578063c87b56dd146103ef578063e985e9c51461040f578063f2fde38b1461042f57610166565b8063a035b1fe1461037a578063a22cb4651461038f578063a2b40d19146103af57610166565b806370a08231146102f1578063715018a6146103115780637d8966e4146103265780638da5cb5b1461033b57806395d89b411461035057806399288dbb1461036557610166565b806332cb6b0c1161012357806332cb6b0c146102545780633ccfd60b1461026957806340c10f191461027e57806342842e0e1461029157806355f804b3146102b15780636352211e146102d157610166565b806301ffc9a71461016b57806306fdde03146101a1578063081812fc146101c3578063095ea7b3146101f057806318160ddd1461021257806323b872dd14610234575b600080fd5b34801561017757600080fd5b5061018b610186366004611575565b61044f565b60405161019891906116ba565b60405180910390f35b3480156101ad57600080fd5b506101b6610497565b60405161019891906116c5565b3480156101cf57600080fd5b506101e36101de3660046115f3565b610529565b6040516101989190611669565b3480156101fc57600080fd5b5061021061020b36600461154c565b610575565b005b34801561021e57600080fd5b5061022761060d565b6040516101989190611caf565b34801561024057600080fd5b5061021061024f36600461145e565b610613565b34801561026057600080fd5b5061022761064b565b34801561027557600080fd5b50610210610651565b61021061028c36600461154c565b61070f565b34801561029d57600080fd5b506102106102ac36600461145e565b61087d565b3480156102bd57600080fd5b506102106102cc3660046115ad565b610898565b3480156102dd57600080fd5b506101e36102ec3660046115f3565b6108ee565b3480156102fd57600080fd5b5061022761030c366004611412565b610923565b34801561031d57600080fd5b50610210610967565b34801561033257600080fd5b506102106109b2565b34801561034757600080fd5b506101e3610a05565b34801561035c57600080fd5b506101b6610a14565b34801561037157600080fd5b5061018b610a23565b34801561038657600080fd5b50610227610a2c565b34801561039b57600080fd5b506102106103aa366004611512565b610a32565b3480156103bb57600080fd5b506102106103ca3660046115f3565b610b00565b3480156103db57600080fd5b506102106103ea366004611499565b610b44565b3480156103fb57600080fd5b506101b661040a3660046115f3565b610b7d565b34801561041b57600080fd5b5061018b61042a36600461142c565b610c00565b34801561043b57600080fd5b5061021061044a366004611412565b610c2e565b60006001600160e01b031982166380ac58cd60e01b148061048057506001600160e01b03198216635b5e139f60e01b145b8061048f575061048f82610c9c565b90505b919050565b6060600080546104a690611d46565b80601f01602080910402602001604051908101604052809291908181526020018280546104d290611d46565b801561051f5780601f106104f45761010080835404028352916020019161051f565b820191906000526020600020905b81548152906001019060200180831161050257829003601f168201915b5050505050905090565b600061053482610cb5565b6105595760405162461bcd60e51b815260040161055090611a0f565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610580826108ee565b9050806001600160a01b0316836001600160a01b031614156105b45760405162461bcd60e51b815260040161055090611b77565b806001600160a01b03166105c6610cd2565b6001600160a01b031614806105e257506105e28161042a610cd2565b6105fe5760405162461bcd60e51b8152600401610550906118ea565b6106088383610cd6565b505050565b60075490565b61062461061e610cd2565b82610d44565b6106405760405162461bcd60e51b815260040161055090611c12565b610608838383610dc9565b6103e881565b610659610cd2565b6001600160a01b031661066a610a05565b6001600160a01b0316146106905760405162461bcd60e51b815260040161055090611aaa565b6000336001600160a01b0316476040516106a990611666565b60006040518083038185875af1925050503d80600081146106e6576040519150601f19603f3d011682016040523d82523d6000602084013e6106eb565b606091505b505090508061070c5760405162461bcd60e51b815260040161055090611be8565b50565b600061071961060d565b90506103e86107288383611cb8565b11156107465760405162461bcd60e51b815260040161055090611bb8565b600082116107665760405162461bcd60e51b8152600401610550906116d8565b61076e610a05565b6001600160a01b0316336001600160a01b0316146107f657600a5460ff166107a85760405162461bcd60e51b815260040161055090611870565b60088211156107c95760405162461bcd60e51b815260040161055090611c63565b816008546107d79190611ce4565b3410156107f65760405162461bcd60e51b815260040161055090611a5b565b81600760008282546108089190611cb8565b90915550600090505b828110156108775761082e8461082684611d81565b935083610ef6565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a8260405161085d9190611caf565b60405180910390a18061086f81611d81565b915050610811565b50505050565b61060883838360405180602001604052806000815250610b44565b6108a0610cd2565b6001600160a01b03166108b1610a05565b6001600160a01b0316146108d75760405162461bcd60e51b815260040161055090611aaa565b80516108ea9060099060208401906112f2565b5050565b6000818152600260205260408120546001600160a01b03168061048f5760405162461bcd60e51b815260040161055090611991565b60006001600160a01b03821661094b5760405162461bcd60e51b815260040161055090611947565b506001600160a01b031660009081526003602052604090205490565b61096f610cd2565b6001600160a01b0316610980610a05565b6001600160a01b0316146109a65760405162461bcd60e51b815260040161055090611aaa565b6109b06000610f10565b565b6109ba610cd2565b6001600160a01b03166109cb610a05565b6001600160a01b0316146109f15760405162461bcd60e51b815260040161055090611aaa565b600a805460ff19811660ff90911615179055565b6006546001600160a01b031690565b6060600180546104a690611d46565b600a5460ff1681565b60085481565b610a3a610cd2565b6001600160a01b0316826001600160a01b03161415610a6b5760405162461bcd60e51b815260040161055090611839565b8060056000610a78610cd2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610abc610cd2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610af491906116ba565b60405180910390a35050565b610b08610cd2565b6001600160a01b0316610b19610a05565b6001600160a01b031614610b3f5760405162461bcd60e51b815260040161055090611aaa565b600855565b610b55610b4f610cd2565b83610d44565b610b715760405162461bcd60e51b815260040161055090611c12565b61087784848484610f62565b6060610b8882610cb5565b610ba45760405162461bcd60e51b815260040161055090611b28565b6000610bae610f95565b90506000815111610bce5760405180602001604052806000815250610bf9565b80610bd884610fa4565b604051602001610be9929190611637565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610c36610cd2565b6001600160a01b0316610c47610a05565b6001600160a01b031614610c6d5760405162461bcd60e51b815260040161055090611aaa565b6001600160a01b038116610c935760405162461bcd60e51b815260040161055090611778565b61070c81610f10565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d0b826108ee565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d4f82610cb5565b610d6b5760405162461bcd60e51b81526004016105509061189e565b6000610d76836108ee565b9050806001600160a01b0316846001600160a01b03161480610db15750836001600160a01b0316610da684610529565b6001600160a01b0316145b80610dc15750610dc18185610c00565b949350505050565b826001600160a01b0316610ddc826108ee565b6001600160a01b031614610e025760405162461bcd60e51b815260040161055090611adf565b6001600160a01b038216610e285760405162461bcd60e51b8152600401610550906117f5565b610e33838383610608565b610e3e600082610cd6565b6001600160a01b0383166000908152600360205260408120805460019290610e67908490611d03565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e95908490611cb8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108ea8282604051806020016040528060008152506110bf565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f6d848484610dc9565b610f79848484846110f2565b6108775760405162461bcd60e51b815260040161055090611726565b6060600980546104a690611d46565b606081610fc957506040805180820190915260018152600360fc1b6020820152610492565b8160005b8115610ff35780610fdd81611d81565b9150610fec9050600a83611cd0565b9150610fcd565b60008167ffffffffffffffff81111561101c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611046576020820181803683370190505b5090505b8415610dc15761105b600183611d03565b9150611068600a86611d9c565b611073906030611cb8565b60f81b81838151811061109657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506110b8600a86611cd0565b945061104a565b6110c9838361120d565b6110d660008484846110f2565b6106085760405162461bcd60e51b815260040161055090611726565b6000611106846001600160a01b03166112ec565b1561120257836001600160a01b031663150b7a02611122610cd2565b8786866040518563ffffffff1660e01b8152600401611144949392919061167d565b602060405180830381600087803b15801561115e57600080fd5b505af192505050801561118e575060408051601f3d908101601f1916820190925261118b91810190611591565b60015b6111e8573d8080156111bc576040519150601f19603f3d011682016040523d82523d6000602084013e6111c1565b606091505b5080516111e05760405162461bcd60e51b815260040161055090611726565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dc1565b506001949350505050565b6001600160a01b0382166112335760405162461bcd60e51b8152600401610550906119da565b61123c81610cb5565b156112595760405162461bcd60e51b8152600401610550906117be565b61126560008383610608565b6001600160a01b038216600090815260036020526040812080546001929061128e908490611cb8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546112fe90611d46565b90600052602060002090601f0160209004810192826113205760008555611366565b82601f1061133957805160ff1916838001178555611366565b82800160010185558215611366579182015b8281111561136657825182559160200191906001019061134b565b50611372929150611376565b5090565b5b808211156113725760008155600101611377565b600067ffffffffffffffff808411156113a6576113a6611ddc565b604051601f8501601f1916810160200182811182821017156113ca576113ca611ddc565b6040528481529150818385018610156113e257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461049257600080fd5b600060208284031215611423578081fd5b610bf9826113fb565b6000806040838503121561143e578081fd5b611447836113fb565b9150611455602084016113fb565b90509250929050565b600080600060608486031215611472578081fd5b61147b846113fb565b9250611489602085016113fb565b9150604084013590509250925092565b600080600080608085870312156114ae578081fd5b6114b7856113fb565b93506114c5602086016113fb565b925060408501359150606085013567ffffffffffffffff8111156114e7578182fd5b8501601f810187136114f7578182fd5b6115068782356020840161138b565b91505092959194509250565b60008060408385031215611524578182fd5b61152d836113fb565b915060208301358015158114611541578182fd5b809150509250929050565b6000806040838503121561155e578182fd5b611567836113fb565b946020939093013593505050565b600060208284031215611586578081fd5b8135610bf981611df2565b6000602082840312156115a2578081fd5b8151610bf981611df2565b6000602082840312156115be578081fd5b813567ffffffffffffffff8111156115d4578182fd5b8201601f810184136115e4578182fd5b610dc18482356020840161138b565b600060208284031215611604578081fd5b5035919050565b60008151808452611623816020860160208601611d1a565b601f01601f19169290920160200192915050565b60008351611649818460208801611d1a565b83519083019061165d818360208801611d1a565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116b09083018461160b565b9695505050505050565b901515815260200190565b600060208252610bf9602083018461160b565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f4d6178696d756d2038204e4654732063616e206265206d696e7465642070657260408201526b103a3930b739b0b1ba34b7b760a11b606082015260800190565b90815260200190565b60008219821115611ccb57611ccb611db0565b500190565b600082611cdf57611cdf611dc6565b500490565b6000816000190483118215151615611cfe57611cfe611db0565b500290565b600082821015611d1557611d15611db0565b500390565b60005b83811015611d35578181015183820152602001611d1d565b838111156108775750506000910152565b600281046001821680611d5a57607f821691505b60208210811415611d7b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d9557611d95611db0565b5060010190565b600082611dab57611dab611dc6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461070c57600080fdfea26469706673582212208d7806fd482f8e623b1fe686e36eb95465afd5645c609289b05783e78eb465f564736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
36559:1945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23445:355;;;;;;;;;;-1:-1:-1;23445:355:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24614:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26307:308::-;;;;;;;;;;-1:-1:-1;26307:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25830:411::-;;;;;;;;;;-1:-1:-1;25830:411:0;;;;;:::i;:::-;;:::i;:::-;;36948:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27366:376::-;;;;;;;;;;-1:-1:-1;27366:376:0;;;;;:::i;:::-;;:::i;36601:41::-;;;;;;;;;;;;;:::i;37344:206::-;;;;;;;;;;;;;:::i;37558:822::-;;;;;;:::i;:::-;;:::i;27813:185::-;;;;;;;;;;-1:-1:-1;27813:185:0;;;;;:::i;:::-;;:::i;37044:101::-;;;;;;;;;;-1:-1:-1;37044:101:0;;;;;:::i;:::-;;:::i;24221:326::-;;;;;;;;;;-1:-1:-1;24221:326:0;;;;;:::i;:::-;;:::i;23864:295::-;;;;;;;;;;-1:-1:-1;23864:295:0;;;;;:::i;:::-;;:::i;8333:94::-;;;;;;;;;;;;;:::i;37256:80::-;;;;;;;;;;;;;:::i;7682:87::-;;;;;;;;;;;;;:::i;24783:104::-;;;;;;;;;;;;;:::i;36760:28::-;;;;;;;;;;;;;:::i;36687:40::-;;;;;;;;;;;;;:::i;26687:327::-;;;;;;;;;;-1:-1:-1;26687:327:0;;;;;:::i;:::-;;:::i;37153:95::-;;;;;;;;;;-1:-1:-1;37153:95:0;;;;;:::i;:::-;;:::i;28069:365::-;;;;;;;;;;-1:-1:-1;28069:365:0;;;;;:::i;:::-;;:::i;24958:468::-;;;;;;;;;;-1:-1:-1;24958:468:0;;;;;:::i;:::-;;:::i;27085:214::-;;;;;;;;;;-1:-1:-1;27085:214:0;;;;;:::i;:::-;;:::i;8582:229::-;;;;;;;;;;-1:-1:-1;8582:229:0;;;;;:::i;:::-;;:::i;23445:355::-;23592:4;-1:-1:-1;;;;;;23634:40:0;;-1:-1:-1;;;23634:40:0;;:105;;-1:-1:-1;;;;;;;23691:48:0;;-1:-1:-1;;;23691:48:0;23634:105;:158;;;;23756:36;23780:11;23756:23;:36::i;:::-;23614:178;;23445:355;;;;:::o;24614:100::-;24668:13;24701:5;24694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24614:100;:::o;26307:308::-;26428:7;26475:16;26483:7;26475;:16::i;:::-;26453:110;;;;-1:-1:-1;;;26453:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26583:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26583:24:0;;26307:308::o;25830:411::-;25911:13;25927:23;25942:7;25927:14;:23::i;:::-;25911:39;;25975:5;-1:-1:-1;;;;;25969:11:0;:2;-1:-1:-1;;;;;25969:11:0;;;25961:57;;;;-1:-1:-1;;;25961:57:0;;;;;;;:::i;:::-;26069:5;-1:-1:-1;;;;;26053:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26053:21:0;;:62;;;;26078:37;26095:5;26102:12;:10;:12::i;26078:37::-;26031:168;;;;-1:-1:-1;;;26031:168:0;;;;;;;:::i;:::-;26212:21;26221:2;26225:7;26212:8;:21::i;:::-;25830:411;;;:::o;36948:88::-;37019:9;;36948:88;:::o;27366:376::-;27575:41;27594:12;:10;:12::i;:::-;27608:7;27575:18;:41::i;:::-;27553:140;;;;-1:-1:-1;;;27553:140:0;;;;;;;:::i;:::-;27706:28;27716:4;27722:2;27726:7;27706:9;:28::i;36601:41::-;36638:4;36601:41;:::o;37344:206::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37395:12:::1;37421:10;-1:-1:-1::0;;;;;37413:24:0::1;37459:21;37413:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37394:101;;;37514:7;37506:36;;;;-1:-1:-1::0;;;37506:36:0::1;;;;;;;:::i;:::-;7973:1;37344:206::o:0;37558:822::-;37629:14;37646:13;:11;:13::i;:::-;37629:30;-1:-1:-1;36638:4:0;37680:15;37689:6;37629:30;37680:15;:::i;:::-;:29;;37672:64;;;;-1:-1:-1;;;37672:64:0;;;;;;;:::i;:::-;37764:1;37755:6;:10;37747:69;;;;-1:-1:-1;;;37747:69:0;;;;;;;:::i;:::-;37847:7;:5;:7::i;:::-;-1:-1:-1;;;;;37833:21:0;:10;-1:-1:-1;;;;;37833:21:0;;37829:378;;37879:8;;;;37871:41;;;;-1:-1:-1;;;37871:41:0;;;;;;;:::i;:::-;37963:1;37953:6;:11;;37927:117;;;;-1:-1:-1;;;37927:117:0;;;;;;;:::i;:::-;38106:6;38098:5;;:14;;;;:::i;:::-;38085:9;:27;;38059:136;;;;-1:-1:-1;;;38059:136:0;;;;;;;:::i;:::-;38232:6;38219:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;38256:9:0;;-1:-1:-1;38251:122:0;38275:6;38271:1;:10;38251:122;;;38303:24;38313:3;38318:8;;;:::i;:::-;;;;38303:9;:24::i;:::-;38347:14;38354:6;38347:14;;;;;;:::i;:::-;;;;;;;;38283:3;;;;:::i;:::-;;;;38251:122;;;;37558:822;;;:::o;27813:185::-;27951:39;27968:4;27974:2;27978:7;27951:39;;;;;;;;;;;;:16;:39::i;37044:101::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37115:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37044:101:::0;:::o;24221:326::-;24338:7;24379:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24379:16:0;24428:19;24406:110;;;;-1:-1:-1;;;24406:110:0;;;;;;;:::i;23864:295::-;23981:7;-1:-1:-1;;;;;24028:19:0;;24006:111;;;;-1:-1:-1;;;24006:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24135:16:0;;;;;:9;:16;;;;;;;23864:295::o;8333:94::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;8398:21:::1;8416:1;8398:9;:21::i;:::-;8333:94::o:0;37256:80::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37320:8:::1;::::0;;-1:-1:-1;;37308:20:0;::::1;37320:8;::::0;;::::1;37319:9;37308:20;::::0;;37256:80::o;7682:87::-;7755:6;;-1:-1:-1;;;;;7755:6:0;7682:87;:::o;24783:104::-;24839:13;24872:7;24865:14;;;;;:::i;36760:28::-;;;;;;:::o;36687:40::-;;;;:::o;26687:327::-;26834:12;:10;:12::i;:::-;-1:-1:-1;;;;;26822:24:0;:8;-1:-1:-1;;;;;26822:24:0;;;26814:62;;;;-1:-1:-1;;;26814:62:0;;;;;;;:::i;:::-;26934:8;26889:18;:32;26908:12;:10;:12::i;:::-;-1:-1:-1;;;;;26889:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26889:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26889:53:0;;;;;;;;;;;26973:12;:10;:12::i;:::-;-1:-1:-1;;;;;26958:48:0;;26997:8;26958:48;;;;;;:::i;:::-;;;;;;;;26687:327;;:::o;37153:95::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37223:5:::1;:17:::0;37153:95::o;28069:365::-;28258:41;28277:12;:10;:12::i;:::-;28291:7;28258:18;:41::i;:::-;28236:140;;;;-1:-1:-1;;;28236:140:0;;;;;;;:::i;:::-;28387:39;28401:4;28407:2;28411:7;28420:5;28387:13;:39::i;24958:468::-;25076:13;25129:16;25137:7;25129;:16::i;:::-;25107:113;;;;-1:-1:-1;;;25107:113:0;;;;;;;:::i;:::-;25233:21;25257:10;:8;:10::i;:::-;25233:34;;25322:1;25304:7;25298:21;:25;:120;;;;;;;;;;;;;;;;;25367:7;25376:18;:7;:16;:18::i;:::-;25350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25298:120;25278:140;24958:468;-1:-1:-1;;;24958:468:0:o;27085:214::-;-1:-1:-1;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27085:214::o;8582:229::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8685:22:0;::::1;8663:110;;;;-1:-1:-1::0;;;8663:110:0::1;;;;;;;:::i;:::-;8784:19;8794:8;8784:9;:19::i;9791:207::-:0;-1:-1:-1;;;;;;9950:40:0;;-1:-1:-1;;;9950:40:0;9791:207;;;:::o;29981:127::-;30046:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;:30;;;29981:127::o;655:98::-;735:10;655:98;:::o;34104:174::-;34179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34179:29:0;-1:-1:-1;;;;;34179:29:0;;;;;;;;:24;;34233:23;34179:24;34233:14;:23::i;:::-;-1:-1:-1;;;;;34224:46:0;;;;;;;;;;;34104:174;;:::o;30275:452::-;30404:4;30448:16;30456:7;30448;:16::i;:::-;30426:110;;;;-1:-1:-1;;;30426:110:0;;;;;;;:::i;:::-;30547:13;30563:23;30578:7;30563:14;:23::i;:::-;30547:39;;30616:5;-1:-1:-1;;;;;30605:16:0;:7;-1:-1:-1;;;;;30605:16:0;;:64;;;;30662:7;-1:-1:-1;;;;;30638:31:0;:20;30650:7;30638:11;:20::i;:::-;-1:-1:-1;;;;;30638:31:0;;30605:64;:113;;;;30686:32;30703:5;30710:7;30686:16;:32::i;:::-;30597:122;30275:452;-1:-1:-1;;;;30275:452:0:o;33371:615::-;33544:4;-1:-1:-1;;;;;33517:31:0;:23;33532:7;33517:14;:23::i;:::-;-1:-1:-1;;;;;33517:31:0;;33495:122;;;;-1:-1:-1;;;33495:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33636:16:0;;33628:65;;;;-1:-1:-1;;;33628:65:0;;;;;;;:::i;:::-;33706:39;33727:4;33733:2;33737:7;33706:20;:39::i;:::-;33810:29;33827:1;33831:7;33810:8;:29::i;:::-;-1:-1:-1;;;;;33852:15:0;;;;;;:9;:15;;;;;:20;;33871:1;;33852:15;:20;;33871:1;;33852:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33883:13:0;;;;;;:9;:13;;;;;:18;;33900:1;;33883:13;:18;;33900:1;;33883:18;:::i;:::-;;;;-1:-1:-1;;33912:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33912:21:0;-1:-1:-1;;;;;33912:21:0;;;;;;;;;33951:27;;33912:16;;33951:27;;;;;;;33371:615;;;:::o;31069:110::-;31145:26;31155:2;31159:7;31145:26;;;;;;;;;;;;:9;:26::i;8819:173::-;8894:6;;;-1:-1:-1;;;;;8911:17:0;;;-1:-1:-1;;;;;;8911:17:0;;;;;;;8944:40;;8894:6;;;8911:17;8894:6;;8944:40;;8875:16;;8944:40;8819:173;;:::o;29316:352::-;29473:28;29483:4;29489:2;29493:7;29473:9;:28::i;:::-;29534:48;29557:4;29563:2;29567:7;29576:5;29534:22;:48::i;:::-;29512:148;;;;-1:-1:-1;;;29512:148:0;;;;;;;:::i;38388:113::-;38448:13;38481:12;38474:19;;;;;:::i;10312:723::-;10368:13;10589:10;10585:53;;-1:-1:-1;10616:10:0;;;;;;;;;;;;-1:-1:-1;;;10616:10:0;;;;;;10585:53;10663:5;10648:12;10704:78;10711:9;;10704:78;;10737:8;;;;:::i;:::-;;-1:-1:-1;10760:10:0;;-1:-1:-1;10768:2:0;10760:10;;:::i;:::-;;;10704:78;;;10792:19;10824:6;10814:17;;;;;;-1:-1:-1;;;10814:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10814:17:0;;10792:39;;10842:154;10849:10;;10842:154;;10876:11;10886:1;10876:11;;:::i;:::-;;-1:-1:-1;10945:10:0;10953:2;10945:5;:10;:::i;:::-;10932:24;;:2;:24;:::i;:::-;10919:39;;10902:6;10909;10902:14;;;;;;-1:-1:-1;;;10902:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;10902:56:0;;;;;;;;-1:-1:-1;10973:11:0;10982:2;10973:11;;:::i;:::-;;;10842:154;;31406:321;31536:18;31542:2;31546:7;31536:5;:18::i;:::-;31587:54;31618:1;31622:2;31626:7;31635:5;31587:22;:54::i;:::-;31565:154;;;;-1:-1:-1;;;31565:154:0;;;;;;;:::i;34843:984::-;34998:4;35019:15;:2;-1:-1:-1;;;;;35019:13:0;;:15::i;:::-;35015:805;;;35088:2;-1:-1:-1;;;;;35072:36:0;;35131:12;:10;:12::i;:::-;35166:4;35193:7;35223:5;35072:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35072:175:0;;;;;;;;-1:-1:-1;;35072:175:0;;;;;;;;;;;;:::i;:::-;;;35051:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35434:13:0;;35430:320;;35477:108;;-1:-1:-1;;;35477:108:0;;;;;;;:::i;35430:320::-;35700:6;35694:13;35685:6;35681:2;35677:15;35670:38;35051:714;-1:-1:-1;;;;;;35311:55:0;-1:-1:-1;;;35311:55:0;;-1:-1:-1;35304:62:0;;35015:805;-1:-1:-1;35804:4:0;34843:984;;;;;;:::o;32063:382::-;-1:-1:-1;;;;;32143:16:0;;32135:61;;;;-1:-1:-1;;;32135:61:0;;;;;;;:::i;:::-;32216:16;32224:7;32216;:16::i;:::-;32215:17;32207:58;;;;-1:-1:-1;;;32207:58:0;;;;;;;:::i;:::-;32278:45;32307:1;32311:2;32315:7;32278:20;:45::i;:::-;-1:-1:-1;;;;;32336:13:0;;;;;;:9;:13;;;;;:18;;32353:1;;32336:13;:18;;32353:1;;32336:18;:::i;:::-;;;;-1:-1:-1;;32365:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32365:21:0;-1:-1:-1;;;;;32365:21:0;;;;;;;;32404:33;;32365:16;;;32404:33;;32365:16;;32404:33;32063:382;;:::o;12865:387::-;13188:20;13236:8;;;12865:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:470::-;;4678:6;4672:13;4694:53;4740:6;4735:3;4728:4;4720:6;4716:17;4694:53;:::i;:::-;4810:13;;4769:16;;;;4832:57;4810:13;4769:16;4866:4;4854:17;;4832:57;:::i;:::-;4905:20;;4648:283;-1:-1:-1;;;;4648:283:1:o;4936:205::-;5136:3;5127:14::o;5146:203::-;-1:-1:-1;;;;;5310:32:1;;;;5292:51;;5280:2;5265:18;;5247:102::o;5354:490::-;-1:-1:-1;;;;;5623:15:1;;;5605:34;;5675:15;;5670:2;5655:18;;5648:43;5722:2;5707:18;;5700:34;;;5770:3;5765:2;5750:18;;5743:31;;;5354:490;;5791:47;;5818:19;;5810:6;5791:47;:::i;:::-;5783:55;5557:287;-1:-1:-1;;;;;;5557:287:1:o;5849:187::-;6014:14;;6007:22;5989:41;;5977:2;5962:18;;5944:92::o;6041:221::-;;6190:2;6179:9;6172:21;6210:46;6252:2;6241:9;6237:18;6229:6;6210:46;:::i;6267:410::-;6469:2;6451:21;;;6508:2;6488:18;;;6481:30;6547:34;6542:2;6527:18;;6520:62;-1:-1:-1;;;6613:2:1;6598:18;;6591:44;6667:3;6652:19;;6441:236::o;6682:414::-;6884:2;6866:21;;;6923:2;6903:18;;;6896:30;6962:34;6957:2;6942:18;;6935:62;-1:-1:-1;;;7028:2:1;7013:18;;7006:48;7086:3;7071:19;;6856:240::o;7101:402::-;7303:2;7285:21;;;7342:2;7322:18;;;7315:30;7381:34;7376:2;7361:18;;7354:62;-1:-1:-1;;;7447:2:1;7432:18;;7425:36;7493:3;7478:19;;7275:228::o;7508:352::-;7710:2;7692:21;;;7749:2;7729:18;;;7722:30;7788;7783:2;7768:18;;7761:58;7851:2;7836:18;;7682:178::o;7865:400::-;8067:2;8049:21;;;8106:2;8086:18;;;8079:30;8145:34;8140:2;8125:18;;8118:62;-1:-1:-1;;;8211:2:1;8196:18;;8189:34;8255:3;8240:19;;8039:226::o;8270:349::-;8472:2;8454:21;;;8511:2;8491:18;;;8484:30;8550:27;8545:2;8530:18;;8523:55;8610:2;8595:18;;8444:175::o;8624:344::-;8826:2;8808:21;;;8865:2;8845:18;;;8838:30;-1:-1:-1;;;8899:2:1;8884:18;;8877:50;8959:2;8944:18;;8798:170::o;8973:408::-;9175:2;9157:21;;;9214:2;9194:18;;;9187:30;9253:34;9248:2;9233:18;;9226:62;-1:-1:-1;;;9319:2:1;9304:18;;9297:42;9371:3;9356:19;;9147:234::o;9386:420::-;9588:2;9570:21;;;9627:2;9607:18;;;9600:30;9666:34;9661:2;9646:18;;9639:62;9737:26;9732:2;9717:18;;9710:54;9796:3;9781:19;;9560:246::o;9811:406::-;10013:2;9995:21;;;10052:2;10032:18;;;10025:30;10091:34;10086:2;10071:18;;10064:62;-1:-1:-1;;;10157:2:1;10142:18;;10135:40;10207:3;10192:19;;9985:232::o;10222:405::-;10424:2;10406:21;;;10463:2;10443:18;;;10436:30;10502:34;10497:2;10482:18;;10475:62;-1:-1:-1;;;10568:2:1;10553:18;;10546:39;10617:3;10602:19;;10396:231::o;10632:356::-;10834:2;10816:21;;;10853:18;;;10846:30;10912:34;10907:2;10892:18;;10885:62;10979:2;10964:18;;10806:182::o;10993:408::-;11195:2;11177:21;;;11234:2;11214:18;;;11207:30;11273:34;11268:2;11253:18;;11246:62;-1:-1:-1;;;11339:2:1;11324:18;;11317:42;11391:3;11376:19;;11167:234::o;11406:411::-;11608:2;11590:21;;;11647:2;11627:18;;;11620:30;11686:34;11681:2;11666:18;;11659:62;-1:-1:-1;;;11752:2:1;11737:18;;11730:45;11807:3;11792:19;;11580:237::o;11822:356::-;12024:2;12006:21;;;12043:18;;;12036:30;12102:34;12097:2;12082:18;;12075:62;12169:2;12154:18;;11996:182::o;12183:405::-;12385:2;12367:21;;;12424:2;12404:18;;;12397:30;12463:34;12458:2;12443:18;;12436:62;-1:-1:-1;;;12529:2:1;12514:18;;12507:39;12578:3;12563:19;;12357:231::o;12593:411::-;12795:2;12777:21;;;12834:2;12814:18;;;12807:30;12873:34;12868:2;12853:18;;12846:62;-1:-1:-1;;;12939:2:1;12924:18;;12917:45;12994:3;12979:19;;12767:237::o;13009:397::-;13211:2;13193:21;;;13250:2;13230:18;;;13223:30;13289:34;13284:2;13269:18;;13262:62;-1:-1:-1;;;13355:2:1;13340:18;;13333:31;13396:3;13381:19;;13183:223::o;13411:346::-;13613:2;13595:21;;;13652:2;13632:18;;;13625:30;-1:-1:-1;;;13686:2:1;13671:18;;13664:52;13748:2;13733:18;;13585:172::o;13762:340::-;13964:2;13946:21;;;14003:2;13983:18;;;13976:30;-1:-1:-1;;;14037:2:1;14022:18;;14015:46;14093:2;14078:18;;13936:166::o;14107:413::-;14309:2;14291:21;;;14348:2;14328:18;;;14321:30;14387:34;14382:2;14367:18;;14360:62;-1:-1:-1;;;14453:2:1;14438:18;;14431:47;14510:3;14495:19;;14281:239::o;14525:408::-;14727:2;14709:21;;;14766:2;14746:18;;;14739:30;14805:34;14800:2;14785:18;;14778:62;-1:-1:-1;;;14871:2:1;14856:18;;14849:42;14923:3;14908:19;;14699:234::o;14938:177::-;15084:25;;;15072:2;15057:18;;15039:76::o;15120:128::-;;15191:1;15187:6;15184:1;15181:13;15178:2;;;15197:18;;:::i;:::-;-1:-1:-1;15233:9:1;;15168:80::o;15253:120::-;;15319:1;15309:2;;15324:18;;:::i;:::-;-1:-1:-1;15358:9:1;;15299:74::o;15378:168::-;;15484:1;15480;15476:6;15472:14;15469:1;15466:21;15461:1;15454:9;15447:17;15443:45;15440:2;;;15491:18;;:::i;:::-;-1:-1:-1;15531:9:1;;15430:116::o;15551:125::-;;15619:1;15616;15613:8;15610:2;;;15624:18;;:::i;:::-;-1:-1:-1;15661:9:1;;15600:76::o;15681:258::-;15753:1;15763:113;15777:6;15774:1;15771:13;15763:113;;;15853:11;;;15847:18;15834:11;;;15827:39;15799:2;15792:10;15763:113;;;15894:6;15891:1;15888:13;15885:2;;;-1:-1:-1;;15929:1:1;15911:16;;15904:27;15734:205::o;15944:380::-;16029:1;16019:12;;16076:1;16066:12;;;16087:2;;16141:4;16133:6;16129:17;16119:27;;16087:2;16194;16186:6;16183:14;16163:18;16160:38;16157:2;;;16240:10;16235:3;16231:20;16228:1;16221:31;16275:4;16272:1;16265:15;16303:4;16300:1;16293:15;16157:2;;15999:325;;;:::o;16329:135::-;;-1:-1:-1;;16389:17:1;;16386:2;;;16409:18;;:::i;:::-;-1:-1:-1;16456:1:1;16445:13;;16376:88::o;16469:112::-;;16527:1;16517:2;;16532:18;;:::i;:::-;-1:-1:-1;16566:9:1;;16507:74::o;16586:127::-;16647:10;16642:3;16638:20;16635:1;16628:31;16678:4;16675:1;16668:15;16702:4;16699:1;16692:15;16718:127;16779:10;16774:3;16770:20;16767:1;16760:31;16810:4;16807:1;16800:15;16834:4;16831:1;16824:15;16850:127;16911:10;16906:3;16902:20;16899:1;16892:31;16942:4;16939:1;16932:15;16966:4;16963:1;16956:15;16982:133;-1:-1:-1;;;;;;17058:32:1;;17048:43;;17038:2;;17105:1;17102;17095:12
Swarm Source
ipfs://8d7806fd482f8e623b1fe686e36eb95465afd5645c609289b05783e78eb465f5
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.