ERC-721
Overview
Max Total Supply
1,294 DABC
Holders
174
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
dabc
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-05 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (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); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.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/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (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/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (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 { _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); } contract dabc is ERC721, Ownable, IERC721Enumerable { mapping (address => bool) public _whitelisted; mapping (address => uint) public _minted; uint public salePrice; uint public whitelistPrice; uint public maxSupply; uint public maxPerTx; uint public maxPerWallet; uint public counter = 1; bool public publicMintStatus; string public baseURI; function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function setSalePrice(uint price) external onlyOwner { salePrice = price; } function setWhitelistPrice(uint price) external onlyOwner { whitelistPrice = price; } function setMaxSupply(uint supply) external onlyOwner { maxSupply = supply; } function addToWhitelist(address[] memory whitelisted) external onlyOwner { for(uint i=0; i < whitelisted.length; i++){ _whitelisted[whitelisted[i]] = !_whitelisted[whitelisted[i]]; } } function setMaxPerTx(uint max) external onlyOwner { maxPerTx = max; } function setMaxPerWallet(uint max) external onlyOwner { maxPerWallet = max; } function setPublicMintStatus() external onlyOwner { publicMintStatus = !publicMintStatus; } function totalSupply() public view virtual override returns(uint) { return counter - 1; } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } constructor() ERC721("Doodle Apes Billionaire Club", "DABC") {} function publicMint(uint amount) external payable { require(publicMintStatus, "Sale not active!"); require(counter + amount <= maxSupply + 1, "Not enough tokens to sell!"); require(amount <= maxPerTx, "Incorrect amount!"); require(_minted[msg.sender] + amount <= maxPerWallet, "Incorrect amount!"); if(_whitelisted[msg.sender]){ require(msg.value == whitelistPrice * amount, "Incorrect amount!"); for(uint i=0; i < amount; i++){ _safeMint(msg.sender, counter++); _minted[msg.sender]++; } }else{ require(msg.value == salePrice * amount, "Incorrect amount!"); for(uint i=0; i < amount; i++){ _safeMint(msg.sender, counter++); _minted[msg.sender]++; } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelisted","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600e553480156200001657600080fd5b50604080518082018252601c81527f446f6f646c6520417065732042696c6c696f6e6169726520436c7562000000006020808301918252835180850190945260048452634441424360e01b908401528151919291620000789160009162000107565b5080516200008e90600190602084019062000107565b505050620000ab620000a5620000b160201b60201c565b620000b5565b620001ea565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011590620001ad565b90600052602060002090601f01602090048101928262000139576000855562000184565b82601f106200015457805160ff191683800117855562000184565b8280016001018555821562000184579182015b828111156200018457825182559160200191906001019062000167565b506200019292915062000196565b5090565b5b8082111562000192576000815560010162000197565b600181811c90821680620001c257607f821691505b60208210811415620001e457634e487b7160e01b600052602260045260246000fd5b50919050565b61215080620001fa6000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063c219c2ef116100ab578063e985e9c51161006f578063e985e9c514610606578063f2fde38b1461064f578063f51f96dd1461066f578063f968adbe14610685578063fc1a1c361461069b57600080fd5b8063c219c2ef1461057b578063c6f6f21614610590578063c87b56dd146105b0578063d5abeb01146105d0578063e268e4d3146105e657600080fd5b80637f649783116100f25780637f649783146104e85780638da5cb5b1461050857806395d89b4114610526578063a22cb4651461053b578063b88d4fde1461055b57600080fd5b806370a0823114610466578063715018a614610486578063717d57d31461049b5780637de77ecc146104bb57600080fd5b80632db11544116101a657806355f804b31161017557806355f804b3146103db57806361bc221a146103fb5780636352211e146104115780636c0360eb146104315780636f8b44b01461044657600080fd5b80632db115441461037d5780633ccfd60b1461039057806342842e0e146103a5578063453c2310146103c557600080fd5b8063095ea7b3116101ed578063095ea7b3146102de57806318160ddd146103005780631919fed71461032357806323b872dd14610343578063262023701461036357600080fd5b806301c4b3161461021f57806301ffc9a71461026457806306fdde0314610284578063081812fc146102a6575b600080fd5b34801561022b57600080fd5b5061024f61023a366004611b43565b60076020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561027057600080fd5b5061024f61027f366004611d55565b6106b1565b34801561029057600080fd5b50610299610703565b60405161025b9190611e83565b3480156102b257600080fd5b506102c66102c1366004611dd3565b610795565b6040516001600160a01b03909116815260200161025b565b3480156102ea57600080fd5b506102fe6102f9366004611c7d565b61082f565b005b34801561030c57600080fd5b50610315610945565b60405190815260200161025b565b34801561032f57600080fd5b506102fe61033e366004611dd3565b61095b565b34801561034f57600080fd5b506102fe61035e366004611b8f565b61098a565b34801561036f57600080fd5b50600f5461024f9060ff1681565b6102fe61038b366004611dd3565b6109bb565b34801561039c57600080fd5b506102fe610bf0565b3480156103b157600080fd5b506102fe6103c0366004611b8f565b610c46565b3480156103d157600080fd5b50610315600d5481565b3480156103e757600080fd5b506102fe6103f6366004611d8d565b610c61565b34801561040757600080fd5b50610315600e5481565b34801561041d57600080fd5b506102c661042c366004611dd3565b610c9e565b34801561043d57600080fd5b50610299610d15565b34801561045257600080fd5b506102fe610461366004611dd3565b610da3565b34801561047257600080fd5b50610315610481366004611b43565b610dd2565b34801561049257600080fd5b506102fe610e59565b3480156104a757600080fd5b506102fe6104b6366004611dd3565b610e8f565b3480156104c757600080fd5b506103156104d6366004611b43565b60086020526000908152604090205481565b3480156104f457600080fd5b506102fe610503366004611ca6565b610ebe565b34801561051457600080fd5b506006546001600160a01b03166102c6565b34801561053257600080fd5b50610299610fb7565b34801561054757600080fd5b506102fe610556366004611c43565b610fc6565b34801561056757600080fd5b506102fe610576366004611bca565b610fd1565b34801561058757600080fd5b506102fe611009565b34801561059c57600080fd5b506102fe6105ab366004611dd3565b611047565b3480156105bc57600080fd5b506102996105cb366004611dd3565b611076565b3480156105dc57600080fd5b50610315600b5481565b3480156105f257600080fd5b506102fe610601366004611dd3565b611151565b34801561061257600080fd5b5061024f610621366004611b5d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065b57600080fd5b506102fe61066a366004611b43565b611180565b34801561067b57600080fd5b5061031560095481565b34801561069157600080fd5b50610315600c5481565b3480156106a757600080fd5b50610315600a5481565b60006001600160e01b031982166380ac58cd60e01b14806106e257506001600160e01b03198216635b5e139f60e01b145b806106fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461071290612058565b80601f016020809104026020016040519081016040528092919081815260200182805461073e90612058565b801561078b5780601f106107605761010080835404028352916020019161078b565b820191906000526020600020905b81548152906001019060200180831161076e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083a82610c9e565b9050806001600160a01b0316836001600160a01b031614156108a85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161080a565b336001600160a01b03821614806108c457506108c48133610621565b6109365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161080a565b6109408383611218565b505050565b60006001600e546109569190612015565b905090565b6006546001600160a01b031633146109855760405162461bcd60e51b815260040161080a90611f13565b600955565b6109943382611286565b6109b05760405162461bcd60e51b815260040161080a90611f48565b61094083838361137d565b600f5460ff16610a005760405162461bcd60e51b815260206004820152601060248201526f53616c65206e6f74206163746976652160801b604482015260640161080a565b600b54610a0e906001611fca565b81600e54610a1c9190611fca565b1115610a6a5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c21000000000000604482015260640161080a565b600c54811115610a8c5760405162461bcd60e51b815260040161080a90611ee8565b600d5433600090815260086020526040902054610aaa908390611fca565b1115610ac85760405162461bcd60e51b815260040161080a90611ee8565b3360009081526007602052604090205460ff1615610b6d5780600a54610aee9190611ff6565b3414610b0c5760405162461bcd60e51b815260040161080a90611ee8565b60005b81811015610b6957600e8054610b36913391906000610b2d83612093565b9190505561151d565b336000908152600860205260408120805491610b5183612093565b91905055508080610b6190612093565b915050610b0f565b5050565b80600954610b7b9190611ff6565b3414610b995760405162461bcd60e51b815260040161080a90611ee8565b60005b81811015610b6957600e8054610bba913391906000610b2d83612093565b336000908152600860205260408120805491610bd583612093565b91905055508080610be590612093565b915050610b9c565b50565b6006546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161080a90611f13565b60405133904780156108fc02916000818181858888f19350505050158015610bed573d6000803e3d6000fd5b61094083838360405180602001604052806000815250610fd1565b6006546001600160a01b03163314610c8b5760405162461bcd60e51b815260040161080a90611f13565b8051610b69906010906020840190611a36565b6000818152600260205260408120546001600160a01b0316806106fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161080a565b60108054610d2290612058565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4e90612058565b8015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b505050505081565b6006546001600160a01b03163314610dcd5760405162461bcd60e51b815260040161080a90611f13565b600b55565b60006001600160a01b038216610e3d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161080a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e835760405162461bcd60e51b815260040161080a90611f13565b610e8d6000611537565b565b6006546001600160a01b03163314610eb95760405162461bcd60e51b815260040161080a90611f13565b600a55565b6006546001600160a01b03163314610ee85760405162461bcd60e51b815260040161080a90611f13565b60005b8151811015610b695760076000838381518110610f1857634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a900460ff161560076000848481518110610f7357634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610faf81612093565b915050610eeb565b60606001805461071290612058565b610b69338383611589565b610fdb3383611286565b610ff75760405162461bcd60e51b815260040161080a90611f48565b61100384848484611658565b50505050565b6006546001600160a01b031633146110335760405162461bcd60e51b815260040161080a90611f13565b600f805460ff19811660ff90911615179055565b6006546001600160a01b031633146110715760405162461bcd60e51b815260040161080a90611f13565b600c55565b6000818152600260205260409020546060906001600160a01b03166110f55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080a565b60006110ff61168b565b9050600081511161111f576040518060200160405280600081525061114a565b806111298461169a565b60405160200161113a929190611e17565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461117b5760405162461bcd60e51b815260040161080a90611f13565b600d55565b6006546001600160a01b031633146111aa5760405162461bcd60e51b815260040161080a90611f13565b6001600160a01b03811661120f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080a565b610bed81611537565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061124d82610c9e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112ff5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161080a565b600061130a83610c9e565b9050806001600160a01b0316846001600160a01b031614806113455750836001600160a01b031661133a84610795565b6001600160a01b0316145b8061137557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661139082610c9e565b6001600160a01b0316146113f85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161080a565b6001600160a01b03821661145a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161080a565b611465600082611218565b6001600160a01b038316600090815260036020526040812080546001929061148e908490612015565b90915550506001600160a01b03821660009081526003602052604081208054600192906114bc908490611fca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b698282604051806020016040528060008152506117b4565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115eb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161080a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61166384848461137d565b61166f848484846117e7565b6110035760405162461bcd60e51b815260040161080a90611e96565b60606010805461071290612058565b6060816116be5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116e857806116d281612093565b91506116e19050600a83611fe2565b91506116c2565b60008167ffffffffffffffff81111561171157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561173b576020820181803683370190505b5090505b841561137557611750600183612015565b915061175d600a866120ae565b611768906030611fca565b60f81b81838151811061178b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117ad600a86611fe2565b945061173f565b6117be83836118f4565b6117cb60008484846117e7565b6109405760405162461bcd60e51b815260040161080a90611e96565b60006001600160a01b0384163b156118e957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061182b903390899088908890600401611e46565b602060405180830381600087803b15801561184557600080fd5b505af1925050508015611875575060408051601f3d908101601f1916820190925261187291810190611d71565b60015b6118cf573d8080156118a3576040519150601f19603f3d011682016040523d82523d6000602084013e6118a8565b606091505b5080516118c75760405162461bcd60e51b815260040161080a90611e96565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611375565b506001949350505050565b6001600160a01b03821661194a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161080a565b6000818152600260205260409020546001600160a01b0316156119af5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161080a565b6001600160a01b03821660009081526003602052604081208054600192906119d8908490611fca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a4290612058565b90600052602060002090601f016020900481019282611a645760008555611aaa565b82601f10611a7d57805160ff1916838001178555611aaa565b82800160010185558215611aaa579182015b82811115611aaa578251825591602001919060010190611a8f565b50611ab6929150611aba565b5090565b5b80821115611ab65760008155600101611abb565b600067ffffffffffffffff831115611ae957611ae96120ee565b611afc601f8401601f1916602001611f99565b9050828152838383011115611b1057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611b3e57600080fd5b919050565b600060208284031215611b54578081fd5b61114a82611b27565b60008060408385031215611b6f578081fd5b611b7883611b27565b9150611b8660208401611b27565b90509250929050565b600080600060608486031215611ba3578081fd5b611bac84611b27565b9250611bba60208501611b27565b9150604084013590509250925092565b60008060008060808587031215611bdf578081fd5b611be885611b27565b9350611bf660208601611b27565b925060408501359150606085013567ffffffffffffffff811115611c18578182fd5b8501601f81018713611c28578182fd5b611c3787823560208401611acf565b91505092959194509250565b60008060408385031215611c55578182fd5b611c5e83611b27565b915060208301358015158114611c72578182fd5b809150509250929050565b60008060408385031215611c8f578182fd5b611c9883611b27565b946020939093013593505050565b60006020808385031215611cb8578182fd5b823567ffffffffffffffff80821115611ccf578384fd5b818501915085601f830112611ce2578384fd5b813581811115611cf457611cf46120ee565b8060051b9150611d05848301611f99565b8181528481019084860184860187018a1015611d1f578788fd5b8795505b83861015611d4857611d3481611b27565b835260019590950194918601918601611d23565b5098975050505050505050565b600060208284031215611d66578081fd5b813561114a81612104565b600060208284031215611d82578081fd5b815161114a81612104565b600060208284031215611d9e578081fd5b813567ffffffffffffffff811115611db4578182fd5b8201601f81018413611dc4578182fd5b61137584823560208401611acf565b600060208284031215611de4578081fd5b5035919050565b60008151808452611e0381602086016020860161202c565b601f01601f19169290920160200192915050565b60008351611e2981846020880161202c565b835190830190611e3d81836020880161202c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e7990830184611deb565b9695505050505050565b60208152600061114a6020830184611deb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260119082015270496e636f727265637420616d6f756e742160781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611fc257611fc26120ee565b604052919050565b60008219821115611fdd57611fdd6120c2565b500190565b600082611ff157611ff16120d8565b500490565b6000816000190483118215151615612010576120106120c2565b500290565b600082821015612027576120276120c2565b500390565b60005b8381101561204757818101518382015260200161202f565b838111156110035750506000910152565b600181811c9082168061206c57607f821691505b6020821081141561208d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120a7576120a76120c2565b5060010190565b6000826120bd576120bd6120d8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bed57600080fdfea26469706673582212200e357ef0abdbba1398aedeff71580fe19a6a9e0fe4289048268cd18882bed68864736f6c63430008040033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063c219c2ef116100ab578063e985e9c51161006f578063e985e9c514610606578063f2fde38b1461064f578063f51f96dd1461066f578063f968adbe14610685578063fc1a1c361461069b57600080fd5b8063c219c2ef1461057b578063c6f6f21614610590578063c87b56dd146105b0578063d5abeb01146105d0578063e268e4d3146105e657600080fd5b80637f649783116100f25780637f649783146104e85780638da5cb5b1461050857806395d89b4114610526578063a22cb4651461053b578063b88d4fde1461055b57600080fd5b806370a0823114610466578063715018a614610486578063717d57d31461049b5780637de77ecc146104bb57600080fd5b80632db11544116101a657806355f804b31161017557806355f804b3146103db57806361bc221a146103fb5780636352211e146104115780636c0360eb146104315780636f8b44b01461044657600080fd5b80632db115441461037d5780633ccfd60b1461039057806342842e0e146103a5578063453c2310146103c557600080fd5b8063095ea7b3116101ed578063095ea7b3146102de57806318160ddd146103005780631919fed71461032357806323b872dd14610343578063262023701461036357600080fd5b806301c4b3161461021f57806301ffc9a71461026457806306fdde0314610284578063081812fc146102a6575b600080fd5b34801561022b57600080fd5b5061024f61023a366004611b43565b60076020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561027057600080fd5b5061024f61027f366004611d55565b6106b1565b34801561029057600080fd5b50610299610703565b60405161025b9190611e83565b3480156102b257600080fd5b506102c66102c1366004611dd3565b610795565b6040516001600160a01b03909116815260200161025b565b3480156102ea57600080fd5b506102fe6102f9366004611c7d565b61082f565b005b34801561030c57600080fd5b50610315610945565b60405190815260200161025b565b34801561032f57600080fd5b506102fe61033e366004611dd3565b61095b565b34801561034f57600080fd5b506102fe61035e366004611b8f565b61098a565b34801561036f57600080fd5b50600f5461024f9060ff1681565b6102fe61038b366004611dd3565b6109bb565b34801561039c57600080fd5b506102fe610bf0565b3480156103b157600080fd5b506102fe6103c0366004611b8f565b610c46565b3480156103d157600080fd5b50610315600d5481565b3480156103e757600080fd5b506102fe6103f6366004611d8d565b610c61565b34801561040757600080fd5b50610315600e5481565b34801561041d57600080fd5b506102c661042c366004611dd3565b610c9e565b34801561043d57600080fd5b50610299610d15565b34801561045257600080fd5b506102fe610461366004611dd3565b610da3565b34801561047257600080fd5b50610315610481366004611b43565b610dd2565b34801561049257600080fd5b506102fe610e59565b3480156104a757600080fd5b506102fe6104b6366004611dd3565b610e8f565b3480156104c757600080fd5b506103156104d6366004611b43565b60086020526000908152604090205481565b3480156104f457600080fd5b506102fe610503366004611ca6565b610ebe565b34801561051457600080fd5b506006546001600160a01b03166102c6565b34801561053257600080fd5b50610299610fb7565b34801561054757600080fd5b506102fe610556366004611c43565b610fc6565b34801561056757600080fd5b506102fe610576366004611bca565b610fd1565b34801561058757600080fd5b506102fe611009565b34801561059c57600080fd5b506102fe6105ab366004611dd3565b611047565b3480156105bc57600080fd5b506102996105cb366004611dd3565b611076565b3480156105dc57600080fd5b50610315600b5481565b3480156105f257600080fd5b506102fe610601366004611dd3565b611151565b34801561061257600080fd5b5061024f610621366004611b5d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065b57600080fd5b506102fe61066a366004611b43565b611180565b34801561067b57600080fd5b5061031560095481565b34801561069157600080fd5b50610315600c5481565b3480156106a757600080fd5b50610315600a5481565b60006001600160e01b031982166380ac58cd60e01b14806106e257506001600160e01b03198216635b5e139f60e01b145b806106fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461071290612058565b80601f016020809104026020016040519081016040528092919081815260200182805461073e90612058565b801561078b5780601f106107605761010080835404028352916020019161078b565b820191906000526020600020905b81548152906001019060200180831161076e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083a82610c9e565b9050806001600160a01b0316836001600160a01b031614156108a85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161080a565b336001600160a01b03821614806108c457506108c48133610621565b6109365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161080a565b6109408383611218565b505050565b60006001600e546109569190612015565b905090565b6006546001600160a01b031633146109855760405162461bcd60e51b815260040161080a90611f13565b600955565b6109943382611286565b6109b05760405162461bcd60e51b815260040161080a90611f48565b61094083838361137d565b600f5460ff16610a005760405162461bcd60e51b815260206004820152601060248201526f53616c65206e6f74206163746976652160801b604482015260640161080a565b600b54610a0e906001611fca565b81600e54610a1c9190611fca565b1115610a6a5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c21000000000000604482015260640161080a565b600c54811115610a8c5760405162461bcd60e51b815260040161080a90611ee8565b600d5433600090815260086020526040902054610aaa908390611fca565b1115610ac85760405162461bcd60e51b815260040161080a90611ee8565b3360009081526007602052604090205460ff1615610b6d5780600a54610aee9190611ff6565b3414610b0c5760405162461bcd60e51b815260040161080a90611ee8565b60005b81811015610b6957600e8054610b36913391906000610b2d83612093565b9190505561151d565b336000908152600860205260408120805491610b5183612093565b91905055508080610b6190612093565b915050610b0f565b5050565b80600954610b7b9190611ff6565b3414610b995760405162461bcd60e51b815260040161080a90611ee8565b60005b81811015610b6957600e8054610bba913391906000610b2d83612093565b336000908152600860205260408120805491610bd583612093565b91905055508080610be590612093565b915050610b9c565b50565b6006546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161080a90611f13565b60405133904780156108fc02916000818181858888f19350505050158015610bed573d6000803e3d6000fd5b61094083838360405180602001604052806000815250610fd1565b6006546001600160a01b03163314610c8b5760405162461bcd60e51b815260040161080a90611f13565b8051610b69906010906020840190611a36565b6000818152600260205260408120546001600160a01b0316806106fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161080a565b60108054610d2290612058565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4e90612058565b8015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b505050505081565b6006546001600160a01b03163314610dcd5760405162461bcd60e51b815260040161080a90611f13565b600b55565b60006001600160a01b038216610e3d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161080a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e835760405162461bcd60e51b815260040161080a90611f13565b610e8d6000611537565b565b6006546001600160a01b03163314610eb95760405162461bcd60e51b815260040161080a90611f13565b600a55565b6006546001600160a01b03163314610ee85760405162461bcd60e51b815260040161080a90611f13565b60005b8151811015610b695760076000838381518110610f1857634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a900460ff161560076000848481518110610f7357634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610faf81612093565b915050610eeb565b60606001805461071290612058565b610b69338383611589565b610fdb3383611286565b610ff75760405162461bcd60e51b815260040161080a90611f48565b61100384848484611658565b50505050565b6006546001600160a01b031633146110335760405162461bcd60e51b815260040161080a90611f13565b600f805460ff19811660ff90911615179055565b6006546001600160a01b031633146110715760405162461bcd60e51b815260040161080a90611f13565b600c55565b6000818152600260205260409020546060906001600160a01b03166110f55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080a565b60006110ff61168b565b9050600081511161111f576040518060200160405280600081525061114a565b806111298461169a565b60405160200161113a929190611e17565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461117b5760405162461bcd60e51b815260040161080a90611f13565b600d55565b6006546001600160a01b031633146111aa5760405162461bcd60e51b815260040161080a90611f13565b6001600160a01b03811661120f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080a565b610bed81611537565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061124d82610c9e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112ff5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161080a565b600061130a83610c9e565b9050806001600160a01b0316846001600160a01b031614806113455750836001600160a01b031661133a84610795565b6001600160a01b0316145b8061137557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661139082610c9e565b6001600160a01b0316146113f85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161080a565b6001600160a01b03821661145a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161080a565b611465600082611218565b6001600160a01b038316600090815260036020526040812080546001929061148e908490612015565b90915550506001600160a01b03821660009081526003602052604081208054600192906114bc908490611fca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b698282604051806020016040528060008152506117b4565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115eb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161080a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61166384848461137d565b61166f848484846117e7565b6110035760405162461bcd60e51b815260040161080a90611e96565b60606010805461071290612058565b6060816116be5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116e857806116d281612093565b91506116e19050600a83611fe2565b91506116c2565b60008167ffffffffffffffff81111561171157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561173b576020820181803683370190505b5090505b841561137557611750600183612015565b915061175d600a866120ae565b611768906030611fca565b60f81b81838151811061178b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117ad600a86611fe2565b945061173f565b6117be83836118f4565b6117cb60008484846117e7565b6109405760405162461bcd60e51b815260040161080a90611e96565b60006001600160a01b0384163b156118e957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061182b903390899088908890600401611e46565b602060405180830381600087803b15801561184557600080fd5b505af1925050508015611875575060408051601f3d908101601f1916820190925261187291810190611d71565b60015b6118cf573d8080156118a3576040519150601f19603f3d011682016040523d82523d6000602084013e6118a8565b606091505b5080516118c75760405162461bcd60e51b815260040161080a90611e96565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611375565b506001949350505050565b6001600160a01b03821661194a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161080a565b6000818152600260205260409020546001600160a01b0316156119af5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161080a565b6001600160a01b03821660009081526003602052604081208054600192906119d8908490611fca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a4290612058565b90600052602060002090601f016020900481019282611a645760008555611aaa565b82601f10611a7d57805160ff1916838001178555611aaa565b82800160010185558215611aaa579182015b82811115611aaa578251825591602001919060010190611a8f565b50611ab6929150611aba565b5090565b5b80821115611ab65760008155600101611abb565b600067ffffffffffffffff831115611ae957611ae96120ee565b611afc601f8401601f1916602001611f99565b9050828152838383011115611b1057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611b3e57600080fd5b919050565b600060208284031215611b54578081fd5b61114a82611b27565b60008060408385031215611b6f578081fd5b611b7883611b27565b9150611b8660208401611b27565b90509250929050565b600080600060608486031215611ba3578081fd5b611bac84611b27565b9250611bba60208501611b27565b9150604084013590509250925092565b60008060008060808587031215611bdf578081fd5b611be885611b27565b9350611bf660208601611b27565b925060408501359150606085013567ffffffffffffffff811115611c18578182fd5b8501601f81018713611c28578182fd5b611c3787823560208401611acf565b91505092959194509250565b60008060408385031215611c55578182fd5b611c5e83611b27565b915060208301358015158114611c72578182fd5b809150509250929050565b60008060408385031215611c8f578182fd5b611c9883611b27565b946020939093013593505050565b60006020808385031215611cb8578182fd5b823567ffffffffffffffff80821115611ccf578384fd5b818501915085601f830112611ce2578384fd5b813581811115611cf457611cf46120ee565b8060051b9150611d05848301611f99565b8181528481019084860184860187018a1015611d1f578788fd5b8795505b83861015611d4857611d3481611b27565b835260019590950194918601918601611d23565b5098975050505050505050565b600060208284031215611d66578081fd5b813561114a81612104565b600060208284031215611d82578081fd5b815161114a81612104565b600060208284031215611d9e578081fd5b813567ffffffffffffffff811115611db4578182fd5b8201601f81018413611dc4578182fd5b61137584823560208401611acf565b600060208284031215611de4578081fd5b5035919050565b60008151808452611e0381602086016020860161202c565b601f01601f19169290920160200192915050565b60008351611e2981846020880161202c565b835190830190611e3d81836020880161202c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e7990830184611deb565b9695505050505050565b60208152600061114a6020830184611deb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260119082015270496e636f727265637420616d6f756e742160781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611fc257611fc26120ee565b604052919050565b60008219821115611fdd57611fdd6120c2565b500190565b600082611ff157611ff16120d8565b500490565b6000816000190483118215151615612010576120106120c2565b500290565b600082821015612027576120276120c2565b500390565b60005b8381101561204757818101518382015260200161202f565b838111156110035750506000910152565b600181811c9082168061206c57607f821691505b6020821081141561208d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120a7576120a76120c2565b5060010190565b6000826120bd576120bd6120d8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bed57600080fdfea26469706673582212200e357ef0abdbba1398aedeff71580fe19a6a9e0fe4289048268cd18882bed68864736f6c63430008040033
Deployed Bytecode Sourcemap
36442:2636:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36503:45;;;;;;;;;;-1:-1:-1;36503:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6584:14:1;;6577:22;6559:41;;6547:2;6532:18;36503:45:0;;;;;;;;23663:305;;;;;;;;;;-1:-1:-1;23663:305:0;;;;;:::i;:::-;;:::i;24608:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26167:221::-;;;;;;;;;;-1:-1:-1;26167:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5882:32:1;;;5864:51;;5852:2;5837:18;26167:221:0;5819:102:1;25690:411:0;;;;;;;;;;-1:-1:-1;25690:411:0;;;;;:::i;:::-;;:::i;:::-;;37910:103;;;;;;;;;;;;;:::i;:::-;;;14409:25:1;;;14397:2;14382:18;37910:103:0;14364:76:1;37076:89:0;;;;;;;;;;-1:-1:-1;37076:89:0;;;;;:::i;:::-;;:::i;26917:339::-;;;;;;;;;;-1:-1:-1;26917:339:0;;;;;:::i;:::-;;:::i;36783:28::-;;;;;;;;;;-1:-1:-1;36783:28:0;;;;;;;;38209:866;;;;;;:::i;:::-;;:::i;38021:109::-;;;;;;;;;;;;;:::i;27327:185::-;;;;;;;;;;-1:-1:-1;27327:185:0;;;;;:::i;:::-;;:::i;36720:24::-;;;;;;;;;;;;;;;;36962:106;;;;;;;;;;-1:-1:-1;36962:106:0;;;;;:::i;:::-;;:::i;36751:23::-;;;;;;;;;;;;;;;;24302:239;;;;;;;;;;-1:-1:-1;24302:239:0;;;;;:::i;:::-;;:::i;36820:21::-;;;;;;;;;;;;;:::i;37280:91::-;;;;;;;;;;-1:-1:-1;37280:91:0;;;;;:::i;:::-;;:::i;24032:208::-;;;;;;;;;;-1:-1:-1;24032:208:0;;;;;:::i;:::-;;:::i;4651:103::-;;;;;;;;;;;;;:::i;37173:99::-;;;;;;;;;;-1:-1:-1;37173:99:0;;;;;:::i;:::-;;:::i;36555:40::-;;;;;;;;;;-1:-1:-1;36555:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;37379:220;;;;;;;;;;-1:-1:-1;37379:220:0;;;;;:::i;:::-;;:::i;4000:87::-;;;;;;;;;;-1:-1:-1;4073:6:0;;-1:-1:-1;;;;;4073:6:0;4000:87;;24777:104;;;;;;;;;;;;;:::i;26460:155::-;;;;;;;;;;-1:-1:-1;26460:155:0;;;;;:::i;:::-;;:::i;27583:328::-;;;;;;;;;;-1:-1:-1;27583:328:0;;;;;:::i;:::-;;:::i;37797:105::-;;;;;;;;;;;;;:::i;37607:83::-;;;;;;;;;;-1:-1:-1;37607:83:0;;;;;:::i;:::-;;:::i;24952:334::-;;;;;;;;;;-1:-1:-1;24952:334:0;;;;;:::i;:::-;;:::i;36665:21::-;;;;;;;;;;;;;;;;37698:91;;;;;;;;;;-1:-1:-1;37698:91:0;;;;;:::i;:::-;;:::i;26686:164::-;;;;;;;;;;-1:-1:-1;26686:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26807:25:0;;;26783:4;26807:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26686:164;4909:201;;;;;;;;;;-1:-1:-1;4909:201:0;;;;;:::i;:::-;;:::i;36604:21::-;;;;;;;;;;;;;;;;36693:20;;;;;;;;;;;;;;;;36632:26;;;;;;;;;;;;;;;;23663:305;23765:4;-1:-1:-1;;;;;;23802:40:0;;-1:-1:-1;;;23802:40:0;;:105;;-1:-1:-1;;;;;;;23859:48:0;;-1:-1:-1;;;23859:48:0;23802:105;:158;;;-1:-1:-1;;;;;;;;;;16541:40:0;;;23924:36;23782:178;23663:305;-1:-1:-1;;23663:305:0:o;24608:100::-;24662:13;24695:5;24688:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24608:100;:::o;26167:221::-;26243:7;29510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29510:16:0;26263:73;;;;-1:-1:-1;;;26263:73:0;;12045:2:1;26263:73:0;;;12027:21:1;12084:2;12064:18;;;12057:30;12123:34;12103:18;;;12096:62;-1:-1:-1;;;12174:18:1;;;12167:42;12226:19;;26263:73:0;;;;;;;;;-1:-1:-1;26356:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26356:24:0;;26167:221::o;25690:411::-;25771:13;25787:23;25802:7;25787:14;:23::i;:::-;25771:39;;25835:5;-1:-1:-1;;;;;25829:11:0;:2;-1:-1:-1;;;;;25829:11:0;;;25821:57;;;;-1:-1:-1;;;25821:57:0;;13645:2:1;25821:57:0;;;13627:21:1;13684:2;13664:18;;;13657:30;13723:34;13703:18;;;13696:62;-1:-1:-1;;;13774:18:1;;;13767:31;13815:19;;25821:57:0;13617:223:1;25821:57:0;2804:10;-1:-1:-1;;;;;25913:21:0;;;;:62;;-1:-1:-1;25938:37:0;25955:5;2804:10;26686:164;:::i;25938:37::-;25891:168;;;;-1:-1:-1;;;25891:168:0;;10438:2:1;25891:168:0;;;10420:21:1;10477:2;10457:18;;;10450:30;10516:34;10496:18;;;10489:62;10587:26;10567:18;;;10560:54;10631:19;;25891:168:0;10410:246:1;25891:168:0;26072:21;26081:2;26085:7;26072:8;:21::i;:::-;25690:411;;;:::o;37910:103::-;37970:4;38004:1;37994:7;;:11;;;;:::i;:::-;37987:18;;37910:103;:::o;37076:89::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;37140:9:::1;:17:::0;37076:89::o;26917:339::-;27112:41;2804:10;27145:7;27112:18;:41::i;:::-;27104:103;;;;-1:-1:-1;;;27104:103:0;;;;;;;:::i;:::-;27220:28;27230:4;27236:2;27240:7;27220:9;:28::i;38209:866::-;38278:16;;;;38270:45;;;;-1:-1:-1;;;38270:45:0;;9680:2:1;38270:45:0;;;9662:21:1;9719:2;9699:18;;;9692:30;-1:-1:-1;;;9738:18:1;;;9731:46;9794:18;;38270:45:0;9652:166:1;38270:45:0;38354:9;;:13;;38366:1;38354:13;:::i;:::-;38344:6;38334:7;;:16;;;;:::i;:::-;:33;;38326:72;;;;-1:-1:-1;;;38326:72:0;;8220:2:1;38326:72:0;;;8202:21:1;8259:2;8239:18;;;8232:30;8298:28;8278:18;;;8271:56;8344:18;;38326:72:0;8192:176:1;38326:72:0;38427:8;;38417:6;:18;;38409:48;;;;-1:-1:-1;;;38409:48:0;;;;;;;:::i;:::-;38508:12;;38484:10;38476:19;;;;:7;:19;;;;;;:28;;38498:6;;38476:28;:::i;:::-;:44;;38468:74;;;;-1:-1:-1;;;38468:74:0;;;;;;;:::i;:::-;38569:10;38556:24;;;;:12;:24;;;;;;;;38553:515;;;38634:6;38617:14;;:23;;;;:::i;:::-;38604:9;:36;38596:66;;;;-1:-1:-1;;;38596:66:0;;;;;;;:::i;:::-;38681:6;38677:137;38695:6;38691:1;:10;38677:137;;;38748:7;:9;;38726:32;;38736:10;;38748:9;:7;:9;;;:::i;:::-;;;;;38726;:32::i;:::-;38785:10;38777:19;;;;:7;:19;;;;;:21;;;;;;:::i;:::-;;;;;;38703:3;;;;;:::i;:::-;;;;38677:137;;;;38209:866;:::o;38553:515::-;38877:6;38865:9;;:18;;;;:::i;:::-;38852:9;:31;38844:61;;;;-1:-1:-1;;;38844:61:0;;;;;;;:::i;:::-;38924:6;38920:137;38938:6;38934:1;:10;38920:137;;;38991:7;:9;;38969:32;;38979:10;;38991:9;:7;:9;;;:::i;38969:32::-;39028:10;39020:19;;;;:7;:19;;;;;:21;;;;;;:::i;:::-;;;;;;38946:3;;;;;:::i;:::-;;;;38920:137;;38553:515;38209:866;:::o;38021:109::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;38071:51:::1;::::0;38079:10:::1;::::0;38100:21:::1;38071:51:::0;::::1;;;::::0;::::1;::::0;;;38100:21;38079:10;38071:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;27327:185:::0;27465:39;27482:4;27488:2;27492:7;27465:39;;;;;;;;;;;;:16;:39::i;36962:106::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;37039:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;24302:239::-:0;24374:7;24410:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24410:16:0;24445:19;24437:73;;;;-1:-1:-1;;;24437:73:0;;11274:2:1;24437:73:0;;;11256:21:1;11313:2;11293:18;;;11286:30;11352:34;11332:18;;;11325:62;-1:-1:-1;;;11403:18:1;;;11396:39;11452:19;;24437:73:0;11246:231:1;36820:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37280:91::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;37345:9:::1;:18:::0;37280:91::o;24032:208::-;24104:7;-1:-1:-1;;;;;24132:19:0;;24124:74;;;;-1:-1:-1;;;24124:74:0;;10863:2:1;24124:74:0;;;10845:21:1;10902:2;10882:18;;;10875:30;10941:34;10921:18;;;10914:62;-1:-1:-1;;;10992:18:1;;;10985:40;11042:19;;24124:74:0;10835:232:1;24124:74:0;-1:-1:-1;;;;;;24216:16:0;;;;;:9;:16;;;;;;;24032:208::o;4651:103::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;4716:30:::1;4743:1;4716:18;:30::i;:::-;4651:103::o:0;37173:99::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;37242:14:::1;:22:::0;37173:99::o;37379:220::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;37467:6:::1;37463:129;37481:11;:18;37477:1;:22;37463:129;;;37552:12;:28;37565:11;37577:1;37565:14;;;;;;-1:-1:-1::0;;;37565:14:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;37552:28:0::1;-1:-1:-1::0;;;;;37552:28:0::1;;;;;;;;;;;;;;;;;;;;;;37551:29;37520:12;:28;37533:11;37545:1;37533:14;;;;;;-1:-1:-1::0;;;37533:14:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;37520:28:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;37520:28:0;:60;;-1:-1:-1;;37520:60:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37501:3;::::1;::::0;::::1;:::i;:::-;;;;37463:129;;24777:104:::0;24833:13;24866:7;24859:14;;;;;:::i;26460:155::-;26555:52;2804:10;26588:8;26598;26555:18;:52::i;27583:328::-;27758:41;2804:10;27791:7;27758:18;:41::i;:::-;27750:103;;;;-1:-1:-1;;;27750:103:0;;;;;;;:::i;:::-;27864:39;27878:4;27884:2;27888:7;27897:5;27864:13;:39::i;:::-;27583:328;;;;:::o;37797:105::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;37878:16:::1;::::0;;-1:-1:-1;;37858:36:0;::::1;37878:16;::::0;;::::1;37877:17;37858:36;::::0;;37797:105::o;37607:83::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;37668:8:::1;:14:::0;37607:83::o;24952:334::-;29486:4;29510:16;;;:7;:16;;;;;;25025:13;;-1:-1:-1;;;;;29510:16:0;25051:76;;;;-1:-1:-1;;;25051:76:0;;13229:2:1;25051:76:0;;;13211:21:1;13268:2;13248:18;;;13241:30;13307:34;13287:18;;;13280:62;-1:-1:-1;;;13358:18:1;;;13351:45;13413:19;;25051:76:0;13201:237:1;25051:76:0;25140:21;25164:10;:8;:10::i;:::-;25140:34;;25216:1;25198:7;25192:21;:25;:86;;;;;;;;;;;;;;;;;25244:7;25253:18;:7;:16;:18::i;:::-;25227:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25192:86;25185:93;24952:334;-1:-1:-1;;;24952:334:0:o;37698:91::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;37763:12:::1;:18:::0;37698:91::o;4909:201::-;4073:6;;-1:-1:-1;;;;;4073:6:0;2804:10;4220:23;4212:68;;;;-1:-1:-1;;;4212:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4998:22:0;::::1;4990:73;;;::::0;-1:-1:-1;;;4990:73:0;;7456:2:1;4990:73:0::1;::::0;::::1;7438:21:1::0;7495:2;7475:18;;;7468:30;7534:34;7514:18;;;7507:62;-1:-1:-1;;;7585:18:1;;;7578:36;7631:19;;4990:73:0::1;7428:228:1::0;4990:73:0::1;5074:28;5093:8;5074:18;:28::i;33403:174::-:0;33478:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33478:29:0;-1:-1:-1;;;;;33478:29:0;;;;;;;;:24;;33532:23;33478:24;33532:14;:23::i;:::-;-1:-1:-1;;;;;33523:46:0;;;;;;;;;;;33403:174;;:::o;29715:348::-;29808:4;29510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29510:16:0;29825:73;;;;-1:-1:-1;;;29825:73:0;;10025:2:1;29825:73:0;;;10007:21:1;10064:2;10044:18;;;10037:30;10103:34;10083:18;;;10076:62;-1:-1:-1;;;10154:18:1;;;10147:42;10206:19;;29825:73:0;9997:234:1;29825:73:0;29909:13;29925:23;29940:7;29925:14;:23::i;:::-;29909:39;;29978:5;-1:-1:-1;;;;;29967:16:0;:7;-1:-1:-1;;;;;29967:16:0;;:51;;;;30011:7;-1:-1:-1;;;;;29987:31:0;:20;29999:7;29987:11;:20::i;:::-;-1:-1:-1;;;;;29987:31:0;;29967:51;:87;;;-1:-1:-1;;;;;;26807:25:0;;;26783:4;26807:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30022:32;29959:96;29715:348;-1:-1:-1;;;;29715:348:0:o;32707:578::-;32866:4;-1:-1:-1;;;;;32839:31:0;:23;32854:7;32839:14;:23::i;:::-;-1:-1:-1;;;;;32839:31:0;;32831:85;;;;-1:-1:-1;;;32831:85:0;;12819:2:1;32831:85:0;;;12801:21:1;12858:2;12838:18;;;12831:30;12897:34;12877:18;;;12870:62;-1:-1:-1;;;12948:18:1;;;12941:39;12997:19;;32831:85:0;12791:231:1;32831:85:0;-1:-1:-1;;;;;32935:16:0;;32927:65;;;;-1:-1:-1;;;32927:65:0;;8575:2:1;32927:65:0;;;8557:21:1;8614:2;8594:18;;;8587:30;8653:34;8633:18;;;8626:62;-1:-1:-1;;;8704:18:1;;;8697:34;8748:19;;32927:65:0;8547:226:1;32927:65:0;33109:29;33126:1;33130:7;33109:8;:29::i;:::-;-1:-1:-1;;;;;33151:15:0;;;;;;:9;:15;;;;;:20;;33170:1;;33151:15;:20;;33170:1;;33151:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33182:13:0;;;;;;:9;:13;;;;;:18;;33199:1;;33182:13;:18;;33199:1;;33182:18;:::i;:::-;;;;-1:-1:-1;;33211:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33211:21:0;-1:-1:-1;;;;;33211:21:0;;;;;;;;;33250:27;;33211:16;;33250:27;;;;;;;32707:578;;;:::o;30405:110::-;30481:26;30491:2;30495:7;30481:26;;;;;;;;;;;;:9;:26::i;5270:191::-;5363:6;;;-1:-1:-1;;;;;5380:17:0;;;-1:-1:-1;;;;;;5380:17:0;;;;;;;5413:40;;5363:6;;;5380:17;5363:6;;5413:40;;5344:16;;5413:40;5270:191;;:::o;33719:315::-;33874:8;-1:-1:-1;;;;;33865:17:0;:5;-1:-1:-1;;;;;33865:17:0;;;33857:55;;;;-1:-1:-1;;;33857:55:0;;8980:2:1;33857:55:0;;;8962:21:1;9019:2;8999:18;;;8992:30;9058:27;9038:18;;;9031:55;9103:18;;33857:55:0;8952:175:1;33857:55:0;-1:-1:-1;;;;;33923:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33923:46:0;;;;;;;;;;33985:41;;6559::1;;;33985::0;;6532:18:1;33985:41:0;;;;;;;33719:315;;;:::o;28793:::-;28950:28;28960:4;28966:2;28970:7;28950:9;:28::i;:::-;28997:48;29020:4;29026:2;29030:7;29039:5;28997:22;:48::i;:::-;28989:111;;;;-1:-1:-1;;;28989:111:0;;;;;;;:::i;36850:100::-;36902:13;36935:7;36928:14;;;;;:::i;288:721::-;344:13;565:10;561:53;;-1:-1:-1;;592:10:0;;;;;;;;;;;;-1:-1:-1;;;592:10:0;;;;;288:721::o;561:53::-;639:5;624:12;680:76;687:9;;680:76;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:0;;-1:-1:-1;744:2:0;736:10;;:::i;:::-;;;680:76;;;766:19;798:6;788:17;;;;;;-1:-1:-1;;;788:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;788:17:0;;766:39;;816:154;823:10;;816:154;;850:11;860:1;850:11;;:::i;:::-;;-1:-1:-1;919:10:0;927:2;919:5;:10;:::i;:::-;906:24;;:2;:24;:::i;:::-;893:39;;876:6;883;876:14;;;;;;-1:-1:-1;;;876:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;876:56:0;;;;;;;;-1:-1:-1;947:11:0;956:2;947:11;;:::i;:::-;;;816:154;;30742:321;30872:18;30878:2;30882:7;30872:5;:18::i;:::-;30923:54;30954:1;30958:2;30962:7;30971:5;30923:22;:54::i;:::-;30901:154;;;;-1:-1:-1;;;30901:154:0;;;;;;;:::i;34599:799::-;34754:4;-1:-1:-1;;;;;34775:13:0;;6611:20;6659:8;34771:620;;34811:72;;-1:-1:-1;;;34811:72:0;;-1:-1:-1;;;;;34811:36:0;;;;;:72;;2804:10;;34862:4;;34868:7;;34877:5;;34811:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34811:72:0;;;;;;;;-1:-1:-1;;34811:72:0;;;;;;;;;;;;:::i;:::-;;;34807:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35053:13:0;;35049:272;;35096:60;;-1:-1:-1;;;35096:60:0;;;;;;;:::i;35049:272::-;35271:6;35265:13;35256:6;35252:2;35248:15;35241:38;34807:529;-1:-1:-1;;;;;;34934:51:0;-1:-1:-1;;;34934:51:0;;-1:-1:-1;34927:58:0;;34771:620;-1:-1:-1;35375:4:0;34599:799;;;;;;:::o;31399:382::-;-1:-1:-1;;;;;31479:16:0;;31471:61;;;;-1:-1:-1;;;31471:61:0;;11684:2:1;31471:61:0;;;11666:21:1;;;11703:18;;;11696:30;11762:34;11742:18;;;11735:62;11814:18;;31471:61:0;11656:182:1;31471:61:0;29486:4;29510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29510:16:0;:30;31543:58;;;;-1:-1:-1;;;31543:58:0;;7863:2:1;31543:58:0;;;7845:21:1;7902:2;7882:18;;;7875:30;7941;7921:18;;;7914:58;7989:18;;31543:58:0;7835:178:1;31543:58:0;-1:-1:-1;;;;;31672:13:0;;;;;;:9;:13;;;;;:18;;31689:1;;31672:13;:18;;31689:1;;31672:18;:::i;:::-;;;;-1:-1:-1;;31701:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31701:21:0;-1:-1:-1;;;;;31701:21:0;;;;;;;;31740:33;;31701:16;;;31740:33;;31701:16;;31740:33;31399:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:196::-;662:6;715:2;703:9;694:7;690:23;686:32;683:2;;;736:6;728;721:22;683:2;764:29;783:9;764:29;:::i;804:270::-;872:6;880;933:2;921:9;912:7;908:23;904:32;901:2;;;954:6;946;939:22;901:2;982:29;1001:9;982:29;:::i;:::-;972:39;;1030:38;1064:2;1053:9;1049:18;1030:38;:::i;:::-;1020:48;;891:183;;;;;:::o;1079:338::-;1156:6;1164;1172;1225:2;1213:9;1204:7;1200:23;1196:32;1193:2;;;1246:6;1238;1231:22;1193:2;1274:29;1293:9;1274:29;:::i;:::-;1264:39;;1322:38;1356:2;1345:9;1341:18;1322:38;:::i;:::-;1312:48;;1407:2;1396:9;1392:18;1379:32;1369:42;;1183:234;;;;;:::o;1422:696::-;1517:6;1525;1533;1541;1594:3;1582:9;1573:7;1569:23;1565:33;1562:2;;;1616:6;1608;1601:22;1562:2;1644:29;1663:9;1644:29;:::i;:::-;1634:39;;1692:38;1726:2;1715:9;1711:18;1692:38;:::i;:::-;1682:48;;1777:2;1766:9;1762:18;1749:32;1739:42;;1832:2;1821:9;1817:18;1804:32;1859:18;1851:6;1848:30;1845:2;;;1896:6;1888;1881:22;1845:2;1924:22;;1977:4;1969:13;;1965:27;-1:-1:-1;1955:2:1;;2011:6;2003;1996:22;1955:2;2039:73;2104:7;2099:2;2086:16;2081:2;2077;2073:11;2039:73;:::i;:::-;2029:83;;;1552:566;;;;;;;:::o;2123:367::-;2188:6;2196;2249:2;2237:9;2228:7;2224:23;2220:32;2217:2;;;2270:6;2262;2255:22;2217:2;2298:29;2317:9;2298:29;:::i;:::-;2288:39;;2377:2;2366:9;2362:18;2349:32;2424:5;2417:13;2410:21;2403:5;2400:32;2390:2;;2451:6;2443;2436:22;2390:2;2479:5;2469:15;;;2207:283;;;;;:::o;2495:264::-;2563:6;2571;2624:2;2612:9;2603:7;2599:23;2595:32;2592:2;;;2645:6;2637;2630:22;2592:2;2673:29;2692:9;2673:29;:::i;:::-;2663:39;2749:2;2734:18;;;;2721:32;;-1:-1:-1;;;2582:177:1:o;2764:1008::-;2848:6;2879:2;2922;2910:9;2901:7;2897:23;2893:32;2890:2;;;2943:6;2935;2928:22;2890:2;2988:9;2975:23;3017:18;3058:2;3050:6;3047:14;3044:2;;;3079:6;3071;3064:22;3044:2;3122:6;3111:9;3107:22;3097:32;;3167:7;3160:4;3156:2;3152:13;3148:27;3138:2;;3194:6;3186;3179:22;3138:2;3235;3222:16;3257:2;3253;3250:10;3247:2;;;3263:18;;:::i;:::-;3309:2;3306:1;3302:10;3292:20;;3332:28;3356:2;3352;3348:11;3332:28;:::i;:::-;3394:15;;;3425:12;;;;3457:11;;;3487;;;3483:20;;3480:33;-1:-1:-1;3477:2:1;;;3531:6;3523;3516:22;3477:2;3558:6;3549:15;;3573:169;3587:2;3584:1;3581:9;3573:169;;;3644:23;3663:3;3644:23;:::i;:::-;3632:36;;3605:1;3598:9;;;;;3688:12;;;;3720;;3573:169;;;-1:-1:-1;3761:5:1;2859:913;-1:-1:-1;;;;;;;;2859:913:1:o;3777:255::-;3835:6;3888:2;3876:9;3867:7;3863:23;3859:32;3856:2;;;3909:6;3901;3894:22;3856:2;3953:9;3940:23;3972:30;3996:5;3972:30;:::i;4037:259::-;4106:6;4159:2;4147:9;4138:7;4134:23;4130:32;4127:2;;;4180:6;4172;4165:22;4127:2;4217:9;4211:16;4236:30;4260:5;4236:30;:::i;4301:480::-;4370:6;4423:2;4411:9;4402:7;4398:23;4394:32;4391:2;;;4444:6;4436;4429:22;4391:2;4489:9;4476:23;4522:18;4514:6;4511:30;4508:2;;;4559:6;4551;4544:22;4508:2;4587:22;;4640:4;4632:13;;4628:27;-1:-1:-1;4618:2:1;;4674:6;4666;4659:22;4618:2;4702:73;4767:7;4762:2;4749:16;4744:2;4740;4736:11;4702:73;:::i;4786:190::-;4845:6;4898:2;4886:9;4877:7;4873:23;4869:32;4866:2;;;4919:6;4911;4904:22;4866:2;-1:-1:-1;4947:23:1;;4856:120;-1:-1:-1;4856:120:1:o;4981:257::-;5022:3;5060:5;5054:12;5087:6;5082:3;5075:19;5103:63;5159:6;5152:4;5147:3;5143:14;5136:4;5129:5;5125:16;5103:63;:::i;:::-;5220:2;5199:15;-1:-1:-1;;5195:29:1;5186:39;;;;5227:4;5182:50;;5030:208;-1:-1:-1;;5030:208:1:o;5243:470::-;5422:3;5460:6;5454:13;5476:53;5522:6;5517:3;5510:4;5502:6;5498:17;5476:53;:::i;:::-;5592:13;;5551:16;;;;5614:57;5592:13;5551:16;5648:4;5636:17;;5614:57;:::i;:::-;5687:20;;5430:283;-1:-1:-1;;;;5430:283:1:o;5926:488::-;-1:-1:-1;;;;;6195:15:1;;;6177:34;;6247:15;;6242:2;6227:18;;6220:43;6294:2;6279:18;;6272:34;;;6342:3;6337:2;6322:18;;6315:31;;;6120:4;;6363:45;;6388:19;;6380:6;6363:45;:::i;:::-;6355:53;6129:285;-1:-1:-1;;;;;;6129:285:1:o;6611:219::-;6760:2;6749:9;6742:21;6723:4;6780:44;6820:2;6809:9;6805:18;6797:6;6780:44;:::i;6835:414::-;7037:2;7019:21;;;7076:2;7056:18;;;7049:30;7115:34;7110:2;7095:18;;7088:62;-1:-1:-1;;;7181:2:1;7166:18;;7159:48;7239:3;7224:19;;7009:240::o;9132:341::-;9334:2;9316:21;;;9373:2;9353:18;;;9346:30;-1:-1:-1;;;9407:2:1;9392:18;;9385:47;9464:2;9449:18;;9306:167::o;12256:356::-;12458:2;12440:21;;;12477:18;;;12470:30;12536:34;12531:2;12516:18;;12509:62;12603:2;12588:18;;12430:182::o;13845:413::-;14047:2;14029:21;;;14086:2;14066:18;;;14059:30;14125:34;14120:2;14105:18;;14098:62;-1:-1:-1;;;14191:2:1;14176:18;;14169:47;14248:3;14233:19;;14019:239::o;14445:275::-;14516:2;14510:9;14581:2;14562:13;;-1:-1:-1;;14558:27:1;14546:40;;14616:18;14601:34;;14637:22;;;14598:62;14595:2;;;14663:18;;:::i;:::-;14699:2;14692:22;14490:230;;-1:-1:-1;14490:230:1:o;14725:128::-;14765:3;14796:1;14792:6;14789:1;14786:13;14783:2;;;14802:18;;:::i;:::-;-1:-1:-1;14838:9:1;;14773:80::o;14858:120::-;14898:1;14924;14914:2;;14929:18;;:::i;:::-;-1:-1:-1;14963:9:1;;14904:74::o;14983:168::-;15023:7;15089:1;15085;15081:6;15077:14;15074:1;15071:21;15066:1;15059:9;15052:17;15048:45;15045:2;;;15096:18;;:::i;:::-;-1:-1:-1;15136:9:1;;15035:116::o;15156:125::-;15196:4;15224:1;15221;15218:8;15215:2;;;15229:18;;:::i;:::-;-1:-1:-1;15266:9:1;;15205:76::o;15286:258::-;15358:1;15368:113;15382:6;15379:1;15376:13;15368:113;;;15458:11;;;15452:18;15439:11;;;15432:39;15404:2;15397:10;15368:113;;;15499:6;15496:1;15493:13;15490:2;;;-1:-1:-1;;15534:1:1;15516:16;;15509:27;15339:205::o;15549:380::-;15628:1;15624:12;;;;15671;;;15692:2;;15746:4;15738:6;15734:17;15724:27;;15692:2;15799;15791:6;15788:14;15768:18;15765:38;15762:2;;;15845:10;15840:3;15836:20;15833:1;15826:31;15880:4;15877:1;15870:15;15908:4;15905:1;15898:15;15762:2;;15604:325;;;:::o;15934:135::-;15973:3;-1:-1:-1;;15994:17:1;;15991:2;;;16014:18;;:::i;:::-;-1:-1:-1;16061:1:1;16050:13;;15981:88::o;16074:112::-;16106:1;16132;16122:2;;16137:18;;:::i;:::-;-1:-1:-1;16171:9:1;;16112:74::o;16191:127::-;16252:10;16247:3;16243:20;16240:1;16233:31;16283:4;16280:1;16273:15;16307:4;16304:1;16297:15;16323:127;16384:10;16379:3;16375:20;16372:1;16365:31;16415:4;16412:1;16405:15;16439:4;16436:1;16429:15;16455:127;16516:10;16511:3;16507:20;16504:1;16497:31;16547:4;16544:1;16537:15;16571:4;16568:1;16561:15;16587:131;-1:-1:-1;;;;;;16661:32:1;;16651:43;;16641:2;;16708:1;16705;16698:12
Swarm Source
ipfs://0e357ef0abdbba1398aedeff71580fe19a6a9e0fe4289048268cd18882bed688
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.