ERC-721
Overview
Max Total Supply
108 HBD
Holders
44
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 HBDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DegenzDenHoneyBadger
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-12 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.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/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // 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/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // 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/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // 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: contracts/HoneyBadger.sol pragma solidity ^0.8.0; /// @title Degenz Den Smart Contract for the Honey Badger collection /// @author Aric Kuter /// @dev All function calls are currently implemented without events to save on gas interface Genesis { function balanceOf(address) external view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); } contract DegenzDenHoneyBadger is ERC721Enumerable, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; /// ============ Mutable storage ============ /// @notice URI for revealed metadata string public baseURI; /// @notice URI for hidden metadata string public hiddenURI; /// @notice Extension for metadata files string public baseExtension = ".json"; /// @notice Max supply of NFTs uint256 public MAX_SUPPLY = 301; /// @notice Reveal metadata bool public revealed = false; /// @notice Track claimed users mapping(uint256 => bool) idMinted; address GenesisAddr; /// ============ Constructor ============ /// @param _name name of NFT /// @param _symbol symbol of NFT /// @param _initBaseURI URI for revealed metadata in format: ipfs://HASH/ /// @param _initHiddenURI URI for hidden metadata in format: ipfs://HASH/ constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initHiddenURI, address _GenesisAddr ) ERC721(_name, _symbol) { baseURI = _initBaseURI; hiddenURI = _initHiddenURI; GenesisAddr = _GenesisAddr; } /// @return Returns the baseURI function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /// @notice Reserved mint function for owner only /// @param _to Address to send tokens to /// @param _mintAmount Number of NFTs to mint function reserveTokens(address _to, uint256 _mintAmount) public onlyOwner { uint256 _tokenId = _tokenIdCounter.current(); /// @notice Safely mint the NFTs for (uint256 i = 0; i < _mintAmount; i++) { _safeMint(_to, _tokenId + i); _tokenIdCounter.increment(); } } function claimAirdrop() external { uint256 _tokenId = _tokenIdCounter.current(); uint256 _genesisBal = Genesis(GenesisAddr).balanceOf(msg.sender); require(_genesisBal > 0, "Sender zero genesis balance"); require(_tokenId + _genesisBal < MAX_SUPPLY, "Supply limit reached"); for (uint256 i = 0; i < _genesisBal; i++) { uint256 genesisId = ( Genesis(GenesisAddr).tokenOfOwnerByIndex(msg.sender, i) ); require(!idMinted[genesisId], "ID already minted"); idMinted[genesisId] = true; _safeMint(msg.sender, _tokenId + i); _tokenIdCounter.increment(); } } /// @return Returns a conststructed string in the format: //ipfs/HASH/[tokenId].json function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for NonExistent Token." ); if (!revealed) { return hiddenURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } /// @notice Reveal metadata function reveal() external onlyOwner { revealed = true; } /// @notice Set the URI of the hidden metadata /// @param _hiddenURI URI for hidden metadata NOTE: This URI must be the link to the exact file in format: ipfs//HASH/ function setHiddenURI(string memory _hiddenURI) external onlyOwner { hiddenURI = _hiddenURI; } /// @notice Set URI of the metadata /// @param _newBaseURI URI for revealed metadata function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } /// @notice Set the base extension for the metadata /// @param _newBaseExtension Base extension value function setBaseExtension(string memory _newBaseExtension) external onlyOwner { baseExtension = _newBaseExtension; } function getGenesisBal(address _user) external view returns (uint256) { return (Genesis(GenesisAddr).balanceOf(_user)); } function canClaimAirdrop(address _user) external view returns (bool) { uint256 _genesisBal = Genesis(GenesisAddr).balanceOf(_user); if (_genesisBal < 1) { return false; } for (uint256 i = 0; i < _genesisBal; i++) { uint256 genesisId = ( Genesis(GenesisAddr).tokenOfOwnerByIndex(_user, i) ); if (idMinted[genesisId]) { return false; } } return true; } /// @notice Withdraw proceeds from contract address to owners address function withdraw() external { require(payable(owner()).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initHiddenURI","type":"string"},{"internalType":"address","name":"_GenesisAddr","type":"address"}],"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"canClaimAirdrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getGenesisBal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"}],"name":"setHiddenURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600e919062000162565b5061012d600f556010805460ff191690553480156200004657600080fd5b50604051620027aa380380620027aa8339810160408190526200006991620002d5565b8451859085906200008290600090602085019062000162565b5080516200009890600190602084019062000162565b505050620000b5620000af6200010c60201b60201c565b62000110565b8251620000ca90600c90602086019062000162565b508151620000e090600d90602085019062000162565b50601280546001600160a01b0319166001600160a01b039290921691909117905550620003ee92505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017090620003b2565b90600052602060002090601f016020900481019282620001945760008555620001df565b82601f10620001af57805160ff1916838001178555620001df565b82800160010185558215620001df579182015b82811115620001df578251825591602001919060010190620001c2565b50620001ed929150620001f1565b5090565b5b80821115620001ed5760008155600101620001f2565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200023057600080fd5b81516001600160401b03808211156200024d576200024d62000208565b604051601f8301601f19908116603f0116810190828211818310171562000278576200027862000208565b816040528381526020925086838588010111156200029557600080fd5b600091505b83821015620002b957858201830151818301840152908201906200029a565b83821115620002cb5760008385830101525b9695505050505050565b600080600080600060a08688031215620002ee57600080fd5b85516001600160401b03808211156200030657600080fd5b6200031489838a016200021e565b965060208801519150808211156200032b57600080fd5b6200033989838a016200021e565b955060408801519150808211156200035057600080fd5b6200035e89838a016200021e565b945060608801519150808211156200037557600080fd5b5062000384888289016200021e565b608088015190935090506001600160a01b0381168114620003a457600080fd5b809150509295509295909350565b600181811c90821680620003c757607f821691505b602082108103620003e857634e487b7160e01b600052602260045260246000fd5b50919050565b6123ac80620003fe6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636c0360eb1161011a578063a475b5dd116100ad578063c87b56dd1161007c578063c87b56dd146103da578063d78bf55b146103ed578063da3ef23f14610400578063e985e9c514610413578063f2fde38b1461044f57600080fd5b8063a475b5dd146103a4578063b88d4fde146103ac578063bbaac02f146103bf578063c6682862146103d257600080fd5b80638cc54e7f116100e95780638cc54e7f146103705780638da5cb5b1461037857806395d89b4114610389578063a22cb4651461039157600080fd5b80636c0360eb1461033a57806370a0823114610342578063715018a61461035557806378cf19e91461035d57600080fd5b80633ccfd60b11610192578063518302271161016157806351830227146102ff57806355f804b31461030c5780635b88349d1461031f5780636352211e1461032757600080fd5b80633ccfd60b146102be57806342842e0e146102c65780634a0485ab146102d95780634f6ccce7146102ec57600080fd5b806318160ddd116101ce57806318160ddd1461027d57806323b872dd1461028f5780632f745c59146102a257806332cb6b0c146102b557600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e366004611d68565b610462565b60405190151581526020015b60405180910390f35b61023061048d565b60405161021f9190611ddd565b61025061024b366004611df0565b61051f565b6040516001600160a01b03909116815260200161021f565b61027b610276366004611e25565b6105b9565b005b6008545b60405190815260200161021f565b61027b61029d366004611e4f565b6106ce565b6102816102b0366004611e25565b6106ff565b610281600f5481565b61027b610795565b61027b6102d4366004611e4f565b6107c8565b6102816102e7366004611e8b565b6107e3565b6102816102fa366004611df0565b610852565b6010546102139060ff1681565b61027b61031a366004611f32565b6108e5565b61027b610926565b610250610335366004611df0565b610b68565b610230610bdf565b610281610350366004611e8b565b610c6d565b61027b610cf4565b61027b61036b366004611e25565b610d28565b610230610d9e565b600a546001600160a01b0316610250565b610230610dab565b61027b61039f366004611f7b565b610dba565b61027b610dc5565b61027b6103ba366004611fb7565b610dfe565b61027b6103cd366004611f32565b610e30565b610230610e6d565b6102306103e8366004611df0565b610e7a565b6102136103fb366004611e8b565b610ff5565b61027b61040e366004611f32565b61113e565b610213610421366004612033565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61027b61045d366004611e8b565b61117b565b60006001600160e01b0319821663780e9d6360e01b1480610487575061048782611216565b92915050565b60606000805461049c90612066565b80601f01602080910402602001604051908101604052809291908181526020018280546104c890612066565b80156105155780601f106104ea57610100808354040283529160200191610515565b820191906000526020600020905b8154815290600101906020018083116104f857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661059d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105c482610b68565b9050806001600160a01b0316836001600160a01b0316036106315760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610594565b336001600160a01b038216148061064d575061064d8133610421565b6106bf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610594565b6106c98383611266565b505050565b6106d833826112d4565b6106f45760405162461bcd60e51b8152600401610594906120a0565b6106c98383836113cb565b600061070a83610c6d565b821061076c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610594565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f193505050506107c657600080fd5b565b6106c983838360405180602001604052806000815250610dfe565b6012546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a0823190602401602060405180830381865afa15801561082e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048791906120f1565b600061085d60085490565b82106108c05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610594565b600882815481106108d3576108d361210a565b90600052602060002001549050919050565b600a546001600160a01b0316331461090f5760405162461bcd60e51b815260040161059490612120565b805161092290600c906020840190611cb9565b5050565b6000610931600b5490565b6012546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561097f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a391906120f1565b9050600081116109f55760405162461bcd60e51b815260206004820152601b60248201527f53656e646572207a65726f2067656e657369732062616c616e636500000000006044820152606401610594565b600f54610a02828461216b565b10610a465760405162461bcd60e51b815260206004820152601460248201527314dd5c1c1b1e481b1a5b5a5d081c995858da195960621b6044820152606401610594565b60005b818110156106c957601254604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c5990604401602060405180830381865afa158015610aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac591906120f1565b60008181526011602052604090205490915060ff1615610b1b5760405162461bcd60e51b8152602060048201526011602482015270125108185b1c9958591e481b5a5b9d1959607a1b6044820152606401610594565b6000818152601160205260409020805460ff19166001179055610b4733610b42848761216b565b611572565b610b55600b80546001019055565b5080610b6081612183565b915050610a49565b6000818152600260205260408120546001600160a01b0316806104875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610594565b600c8054610bec90612066565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1890612066565b8015610c655780601f10610c3a57610100808354040283529160200191610c65565b820191906000526020600020905b815481529060010190602001808311610c4857829003601f168201915b505050505081565b60006001600160a01b038216610cd85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610594565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d1e5760405162461bcd60e51b815260040161059490612120565b6107c6600061158c565b600a546001600160a01b03163314610d525760405162461bcd60e51b815260040161059490612120565b6000610d5d600b5490565b905060005b82811015610d9857610d7884610b42838561216b565b610d86600b80546001019055565b80610d9081612183565b915050610d62565b50505050565b600d8054610bec90612066565b60606001805461049c90612066565b6109223383836115de565b600a546001600160a01b03163314610def5760405162461bcd60e51b815260040161059490612120565b6010805460ff19166001179055565b610e0833836112d4565b610e245760405162461bcd60e51b8152600401610594906120a0565b610d98848484846116ac565b600a546001600160a01b03163314610e5a5760405162461bcd60e51b815260040161059490612120565b805161092290600d906020840190611cb9565b600e8054610bec90612066565b6000818152600260205260409020546060906001600160a01b0316610efa5760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72204e6f60448201526f3722bc34b9ba32b73a102a37b5b2b71760811b6064820152608401610594565b60105460ff16610f9657600d8054610f1190612066565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3d90612066565b8015610f8a5780601f10610f5f57610100808354040283529160200191610f8a565b820191906000526020600020905b815481529060010190602001808311610f6d57829003601f168201915b50505050509050919050565b6000610fa06116df565b90506000815111610fc05760405180602001604052806000815250610fee565b80610fca846116ee565b600e604051602001610fde9392919061219c565b6040516020818303038152906040525b9392505050565b6012546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a0823190602401602060405180830381865afa158015611043573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106791906120f1565b9050600181101561107b5750600092915050565b60005b8181101561113457601254604051632f745c5960e01b81526001600160a01b038681166004830152602482018490526000921690632f745c5990604401602060405180830381865afa1580156110d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110fc91906120f1565b60008181526011602052604090205490915060ff161561112157506000949350505050565b508061112c81612183565b91505061107e565b5060019392505050565b600a546001600160a01b031633146111685760405162461bcd60e51b815260040161059490612120565b805161092290600e906020840190611cb9565b600a546001600160a01b031633146111a55760405162461bcd60e51b815260040161059490612120565b6001600160a01b03811661120a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610594565b6112138161158c565b50565b60006001600160e01b031982166380ac58cd60e01b148061124757506001600160e01b03198216635b5e139f60e01b145b8061048757506301ffc9a760e01b6001600160e01b0319831614610487565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129b82610b68565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661134d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610594565b600061135883610b68565b9050806001600160a01b0316846001600160a01b031614806113935750836001600160a01b03166113888461051f565b6001600160a01b0316145b806113c357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113de82610b68565b6001600160a01b0316146114425760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610594565b6001600160a01b0382166114a45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610594565b6114af8383836117ef565b6114ba600082611266565b6001600160a01b03831660009081526003602052604081208054600192906114e390849061225f565b90915550506001600160a01b038216600090815260036020526040812080546001929061151190849061216b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109228282604051806020016040528060008152506118a7565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03160361163f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610594565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116b78484846113cb565b6116c3848484846118da565b610d985760405162461bcd60e51b815260040161059490612276565b6060600c805461049c90612066565b6060816000036117155750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173f578061172981612183565b91506117389050600a836122de565b9150611719565b60008167ffffffffffffffff81111561175a5761175a611ea6565b6040519080825280601f01601f191660200182016040528015611784576020820181803683370190505b5090505b84156113c35761179960018361225f565b91506117a6600a866122f2565b6117b190603061216b565b60f81b8183815181106117c6576117c661210a565b60200101906001600160f81b031916908160001a9053506117e8600a866122de565b9450611788565b6001600160a01b03831661184a5761184581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61186d565b816001600160a01b0316836001600160a01b03161461186d5761186d83826119db565b6001600160a01b038216611884576106c981611a78565b826001600160a01b0316826001600160a01b0316146106c9576106c98282611b27565b6118b18383611b6b565b6118be60008484846118da565b6106c95760405162461bcd60e51b815260040161059490612276565b60006001600160a01b0384163b156119d057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061191e903390899088908890600401612306565b6020604051808303816000875af1925050508015611959575060408051601f3d908101601f1916820190925261195691810190612343565b60015b6119b6573d808015611987576040519150601f19603f3d011682016040523d82523d6000602084013e61198c565b606091505b5080516000036119ae5760405162461bcd60e51b815260040161059490612276565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c3565b506001949350505050565b600060016119e884610c6d565b6119f2919061225f565b600083815260076020526040902054909150808214611a45576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a8a9060019061225f565b60008381526009602052604081205460088054939450909284908110611ab257611ab261210a565b906000526020600020015490508060088381548110611ad357611ad361210a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b0b57611b0b612360565b6001900381819060005260206000200160009055905550505050565b6000611b3283610c6d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bc15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610594565b6000818152600260205260409020546001600160a01b031615611c265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610594565b611c32600083836117ef565b6001600160a01b0382166000908152600360205260408120805460019290611c5b90849061216b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cc590612066565b90600052602060002090601f016020900481019282611ce75760008555611d2d565b82601f10611d0057805160ff1916838001178555611d2d565b82800160010185558215611d2d579182015b82811115611d2d578251825591602001919060010190611d12565b50611d39929150611d3d565b5090565b5b80821115611d395760008155600101611d3e565b6001600160e01b03198116811461121357600080fd5b600060208284031215611d7a57600080fd5b8135610fee81611d52565b60005b83811015611da0578181015183820152602001611d88565b83811115610d985750506000910152565b60008151808452611dc9816020860160208601611d85565b601f01601f19169290920160200192915050565b602081526000610fee6020830184611db1565b600060208284031215611e0257600080fd5b5035919050565b80356001600160a01b0381168114611e2057600080fd5b919050565b60008060408385031215611e3857600080fd5b611e4183611e09565b946020939093013593505050565b600080600060608486031215611e6457600080fd5b611e6d84611e09565b9250611e7b60208501611e09565b9150604084013590509250925092565b600060208284031215611e9d57600080fd5b610fee82611e09565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ed757611ed7611ea6565b604051601f8501601f19908116603f01168101908282118183101715611eff57611eff611ea6565b81604052809350858152868686011115611f1857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f4457600080fd5b813567ffffffffffffffff811115611f5b57600080fd5b8201601f81018413611f6c57600080fd5b6113c384823560208401611ebc565b60008060408385031215611f8e57600080fd5b611f9783611e09565b915060208301358015158114611fac57600080fd5b809150509250929050565b60008060008060808587031215611fcd57600080fd5b611fd685611e09565b9350611fe460208601611e09565b925060408501359150606085013567ffffffffffffffff81111561200757600080fd5b8501601f8101871361201857600080fd5b61202787823560208401611ebc565b91505092959194509250565b6000806040838503121561204657600080fd5b61204f83611e09565b915061205d60208401611e09565b90509250929050565b600181811c9082168061207a57607f821691505b60208210810361209a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60006020828403121561210357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561217e5761217e612155565b500190565b60006001820161219557612195612155565b5060010190565b6000845160206121af8285838a01611d85565b8551918401916121c28184848a01611d85565b8554920191600090600181811c90808316806121df57607f831692505b85831081036121fc57634e487b7160e01b85526022600452602485fd5b80801561221057600181146122215761224e565b60ff1985168852838801955061224e565b60008b81526020902060005b858110156122465781548a82015290840190880161222d565b505083880195505b50939b9a5050505050505050505050565b60008282101561227157612271612155565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826122ed576122ed6122c8565b500490565b600082612301576123016122c8565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061233990830184611db1565b9695505050505050565b60006020828403121561235557600080fd5b8151610fee81611d52565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220e45fc67cb7fbe352feb12065052555df83c3d9c5a1d2929fb6d0fcbf0b1a051364736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000c6135b45931bd905a989c5fe6a9d172b146cad24000000000000000000000000000000000000000000000000000000000000000c486f6e6579204261646765720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000348424400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a7a33316b563844736a733633463643655a326252717266384d5451763538537a5133637353666b735059532f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5973706a386e68506265674e65714363574e4b623663416d5931657442436e43754846514c435865586654652f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636c0360eb1161011a578063a475b5dd116100ad578063c87b56dd1161007c578063c87b56dd146103da578063d78bf55b146103ed578063da3ef23f14610400578063e985e9c514610413578063f2fde38b1461044f57600080fd5b8063a475b5dd146103a4578063b88d4fde146103ac578063bbaac02f146103bf578063c6682862146103d257600080fd5b80638cc54e7f116100e95780638cc54e7f146103705780638da5cb5b1461037857806395d89b4114610389578063a22cb4651461039157600080fd5b80636c0360eb1461033a57806370a0823114610342578063715018a61461035557806378cf19e91461035d57600080fd5b80633ccfd60b11610192578063518302271161016157806351830227146102ff57806355f804b31461030c5780635b88349d1461031f5780636352211e1461032757600080fd5b80633ccfd60b146102be57806342842e0e146102c65780634a0485ab146102d95780634f6ccce7146102ec57600080fd5b806318160ddd116101ce57806318160ddd1461027d57806323b872dd1461028f5780632f745c59146102a257806332cb6b0c146102b557600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e366004611d68565b610462565b60405190151581526020015b60405180910390f35b61023061048d565b60405161021f9190611ddd565b61025061024b366004611df0565b61051f565b6040516001600160a01b03909116815260200161021f565b61027b610276366004611e25565b6105b9565b005b6008545b60405190815260200161021f565b61027b61029d366004611e4f565b6106ce565b6102816102b0366004611e25565b6106ff565b610281600f5481565b61027b610795565b61027b6102d4366004611e4f565b6107c8565b6102816102e7366004611e8b565b6107e3565b6102816102fa366004611df0565b610852565b6010546102139060ff1681565b61027b61031a366004611f32565b6108e5565b61027b610926565b610250610335366004611df0565b610b68565b610230610bdf565b610281610350366004611e8b565b610c6d565b61027b610cf4565b61027b61036b366004611e25565b610d28565b610230610d9e565b600a546001600160a01b0316610250565b610230610dab565b61027b61039f366004611f7b565b610dba565b61027b610dc5565b61027b6103ba366004611fb7565b610dfe565b61027b6103cd366004611f32565b610e30565b610230610e6d565b6102306103e8366004611df0565b610e7a565b6102136103fb366004611e8b565b610ff5565b61027b61040e366004611f32565b61113e565b610213610421366004612033565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61027b61045d366004611e8b565b61117b565b60006001600160e01b0319821663780e9d6360e01b1480610487575061048782611216565b92915050565b60606000805461049c90612066565b80601f01602080910402602001604051908101604052809291908181526020018280546104c890612066565b80156105155780601f106104ea57610100808354040283529160200191610515565b820191906000526020600020905b8154815290600101906020018083116104f857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661059d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105c482610b68565b9050806001600160a01b0316836001600160a01b0316036106315760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610594565b336001600160a01b038216148061064d575061064d8133610421565b6106bf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610594565b6106c98383611266565b505050565b6106d833826112d4565b6106f45760405162461bcd60e51b8152600401610594906120a0565b6106c98383836113cb565b600061070a83610c6d565b821061076c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610594565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f193505050506107c657600080fd5b565b6106c983838360405180602001604052806000815250610dfe565b6012546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a0823190602401602060405180830381865afa15801561082e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048791906120f1565b600061085d60085490565b82106108c05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610594565b600882815481106108d3576108d361210a565b90600052602060002001549050919050565b600a546001600160a01b0316331461090f5760405162461bcd60e51b815260040161059490612120565b805161092290600c906020840190611cb9565b5050565b6000610931600b5490565b6012546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561097f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a391906120f1565b9050600081116109f55760405162461bcd60e51b815260206004820152601b60248201527f53656e646572207a65726f2067656e657369732062616c616e636500000000006044820152606401610594565b600f54610a02828461216b565b10610a465760405162461bcd60e51b815260206004820152601460248201527314dd5c1c1b1e481b1a5b5a5d081c995858da195960621b6044820152606401610594565b60005b818110156106c957601254604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c5990604401602060405180830381865afa158015610aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac591906120f1565b60008181526011602052604090205490915060ff1615610b1b5760405162461bcd60e51b8152602060048201526011602482015270125108185b1c9958591e481b5a5b9d1959607a1b6044820152606401610594565b6000818152601160205260409020805460ff19166001179055610b4733610b42848761216b565b611572565b610b55600b80546001019055565b5080610b6081612183565b915050610a49565b6000818152600260205260408120546001600160a01b0316806104875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610594565b600c8054610bec90612066565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1890612066565b8015610c655780601f10610c3a57610100808354040283529160200191610c65565b820191906000526020600020905b815481529060010190602001808311610c4857829003601f168201915b505050505081565b60006001600160a01b038216610cd85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610594565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d1e5760405162461bcd60e51b815260040161059490612120565b6107c6600061158c565b600a546001600160a01b03163314610d525760405162461bcd60e51b815260040161059490612120565b6000610d5d600b5490565b905060005b82811015610d9857610d7884610b42838561216b565b610d86600b80546001019055565b80610d9081612183565b915050610d62565b50505050565b600d8054610bec90612066565b60606001805461049c90612066565b6109223383836115de565b600a546001600160a01b03163314610def5760405162461bcd60e51b815260040161059490612120565b6010805460ff19166001179055565b610e0833836112d4565b610e245760405162461bcd60e51b8152600401610594906120a0565b610d98848484846116ac565b600a546001600160a01b03163314610e5a5760405162461bcd60e51b815260040161059490612120565b805161092290600d906020840190611cb9565b600e8054610bec90612066565b6000818152600260205260409020546060906001600160a01b0316610efa5760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72204e6f60448201526f3722bc34b9ba32b73a102a37b5b2b71760811b6064820152608401610594565b60105460ff16610f9657600d8054610f1190612066565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3d90612066565b8015610f8a5780601f10610f5f57610100808354040283529160200191610f8a565b820191906000526020600020905b815481529060010190602001808311610f6d57829003601f168201915b50505050509050919050565b6000610fa06116df565b90506000815111610fc05760405180602001604052806000815250610fee565b80610fca846116ee565b600e604051602001610fde9392919061219c565b6040516020818303038152906040525b9392505050565b6012546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a0823190602401602060405180830381865afa158015611043573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106791906120f1565b9050600181101561107b5750600092915050565b60005b8181101561113457601254604051632f745c5960e01b81526001600160a01b038681166004830152602482018490526000921690632f745c5990604401602060405180830381865afa1580156110d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110fc91906120f1565b60008181526011602052604090205490915060ff161561112157506000949350505050565b508061112c81612183565b91505061107e565b5060019392505050565b600a546001600160a01b031633146111685760405162461bcd60e51b815260040161059490612120565b805161092290600e906020840190611cb9565b600a546001600160a01b031633146111a55760405162461bcd60e51b815260040161059490612120565b6001600160a01b03811661120a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610594565b6112138161158c565b50565b60006001600160e01b031982166380ac58cd60e01b148061124757506001600160e01b03198216635b5e139f60e01b145b8061048757506301ffc9a760e01b6001600160e01b0319831614610487565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129b82610b68565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661134d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610594565b600061135883610b68565b9050806001600160a01b0316846001600160a01b031614806113935750836001600160a01b03166113888461051f565b6001600160a01b0316145b806113c357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113de82610b68565b6001600160a01b0316146114425760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610594565b6001600160a01b0382166114a45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610594565b6114af8383836117ef565b6114ba600082611266565b6001600160a01b03831660009081526003602052604081208054600192906114e390849061225f565b90915550506001600160a01b038216600090815260036020526040812080546001929061151190849061216b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109228282604051806020016040528060008152506118a7565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03160361163f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610594565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116b78484846113cb565b6116c3848484846118da565b610d985760405162461bcd60e51b815260040161059490612276565b6060600c805461049c90612066565b6060816000036117155750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173f578061172981612183565b91506117389050600a836122de565b9150611719565b60008167ffffffffffffffff81111561175a5761175a611ea6565b6040519080825280601f01601f191660200182016040528015611784576020820181803683370190505b5090505b84156113c35761179960018361225f565b91506117a6600a866122f2565b6117b190603061216b565b60f81b8183815181106117c6576117c661210a565b60200101906001600160f81b031916908160001a9053506117e8600a866122de565b9450611788565b6001600160a01b03831661184a5761184581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61186d565b816001600160a01b0316836001600160a01b03161461186d5761186d83826119db565b6001600160a01b038216611884576106c981611a78565b826001600160a01b0316826001600160a01b0316146106c9576106c98282611b27565b6118b18383611b6b565b6118be60008484846118da565b6106c95760405162461bcd60e51b815260040161059490612276565b60006001600160a01b0384163b156119d057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061191e903390899088908890600401612306565b6020604051808303816000875af1925050508015611959575060408051601f3d908101601f1916820190925261195691810190612343565b60015b6119b6573d808015611987576040519150601f19603f3d011682016040523d82523d6000602084013e61198c565b606091505b5080516000036119ae5760405162461bcd60e51b815260040161059490612276565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c3565b506001949350505050565b600060016119e884610c6d565b6119f2919061225f565b600083815260076020526040902054909150808214611a45576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a8a9060019061225f565b60008381526009602052604081205460088054939450909284908110611ab257611ab261210a565b906000526020600020015490508060088381548110611ad357611ad361210a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b0b57611b0b612360565b6001900381819060005260206000200160009055905550505050565b6000611b3283610c6d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bc15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610594565b6000818152600260205260409020546001600160a01b031615611c265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610594565b611c32600083836117ef565b6001600160a01b0382166000908152600360205260408120805460019290611c5b90849061216b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cc590612066565b90600052602060002090601f016020900481019282611ce75760008555611d2d565b82601f10611d0057805160ff1916838001178555611d2d565b82800160010185558215611d2d579182015b82811115611d2d578251825591602001919060010190611d12565b50611d39929150611d3d565b5090565b5b80821115611d395760008155600101611d3e565b6001600160e01b03198116811461121357600080fd5b600060208284031215611d7a57600080fd5b8135610fee81611d52565b60005b83811015611da0578181015183820152602001611d88565b83811115610d985750506000910152565b60008151808452611dc9816020860160208601611d85565b601f01601f19169290920160200192915050565b602081526000610fee6020830184611db1565b600060208284031215611e0257600080fd5b5035919050565b80356001600160a01b0381168114611e2057600080fd5b919050565b60008060408385031215611e3857600080fd5b611e4183611e09565b946020939093013593505050565b600080600060608486031215611e6457600080fd5b611e6d84611e09565b9250611e7b60208501611e09565b9150604084013590509250925092565b600060208284031215611e9d57600080fd5b610fee82611e09565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ed757611ed7611ea6565b604051601f8501601f19908116603f01168101908282118183101715611eff57611eff611ea6565b81604052809350858152868686011115611f1857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f4457600080fd5b813567ffffffffffffffff811115611f5b57600080fd5b8201601f81018413611f6c57600080fd5b6113c384823560208401611ebc565b60008060408385031215611f8e57600080fd5b611f9783611e09565b915060208301358015158114611fac57600080fd5b809150509250929050565b60008060008060808587031215611fcd57600080fd5b611fd685611e09565b9350611fe460208601611e09565b925060408501359150606085013567ffffffffffffffff81111561200757600080fd5b8501601f8101871361201857600080fd5b61202787823560208401611ebc565b91505092959194509250565b6000806040838503121561204657600080fd5b61204f83611e09565b915061205d60208401611e09565b90509250929050565b600181811c9082168061207a57607f821691505b60208210810361209a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60006020828403121561210357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561217e5761217e612155565b500190565b60006001820161219557612195612155565b5060010190565b6000845160206121af8285838a01611d85565b8551918401916121c28184848a01611d85565b8554920191600090600181811c90808316806121df57607f831692505b85831081036121fc57634e487b7160e01b85526022600452602485fd5b80801561221057600181146122215761224e565b60ff1985168852838801955061224e565b60008b81526020902060005b858110156122465781548a82015290840190880161222d565b505083880195505b50939b9a5050505050505050505050565b60008282101561227157612271612155565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826122ed576122ed6122c8565b500490565b600082612301576123016122c8565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061233990830184611db1565b9695505050505050565b60006020828403121561235557600080fd5b8151610fee81611d52565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220e45fc67cb7fbe352feb12065052555df83c3d9c5a1d2929fb6d0fcbf0b1a051364736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000c6135b45931bd905a989c5fe6a9d172b146cad24000000000000000000000000000000000000000000000000000000000000000c486f6e6579204261646765720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000348424400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a7a33316b563844736a733633463643655a326252717266384d5451763538537a5133637353666b735059532f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5973706a386e68506265674e65714363574e4b623663416d5931657442436e43754846514c435865586654652f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Honey Badger
Arg [1] : _symbol (string): HBD
Arg [2] : _initBaseURI (string): ipfs://QmZz31kV8Dsjs63F6CeZ2bRqrf8MTQv58SzQ3csSfksPYS/
Arg [3] : _initHiddenURI (string): ipfs://QmYspj8nhPbegNeqCcWNKb6cAmY1etBCnCuHFQLCXeXfTe/hidden.json
Arg [4] : _GenesisAddr (address): 0xC6135B45931bd905A989c5FE6a9d172B146caD24
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000c6135b45931bd905a989c5fe6a9d172b146cad24
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 486f6e6579204261646765720000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4842440000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d5a7a33316b563844736a733633463643655a3262527172
Arg [11] : 66384d5451763538537a5133637353666b735059532f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [13] : 697066733a2f2f516d5973706a386e68506265674e65714363574e4b62366341
Arg [14] : 6d5931657442436e43754846514c435865586654652f68696464656e2e6a736f
Arg [15] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47438:5232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38282:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38282:224:0;;;;;;;;25102:100;;;:::i;:::-;;;;;;;:::i;26661:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26661:221:0;1528:203:1;26184:411:0;;;;;;:::i;:::-;;:::i;:::-;;38922:113;39010:10;:17;38922:113;;;2319:25:1;;;2307:2;2292:18;38922:113:0;2173:177:1;27411:339:0;;;;;;:::i;:::-;;:::i;38590:256::-;;;;;;:::i;:::-;;:::i;47952:31::-;;;;;;52566:101;;;:::i;27821:185::-;;;;;;:::i;:::-;;:::i;51830:135::-;;;;;;:::i;:::-;;:::i;39112:233::-;;;;;;:::i;:::-;;:::i;48025:28::-;;;;;;;;;51443:106;;;;;;:::i;:::-;;:::i;49421:704::-;;;:::i;24796:239::-;;;;;;:::i;:::-;;:::i;47725:21::-;;;:::i;24526:208::-;;;;;;:::i;:::-;;:::i;46143:103::-;;;:::i;49085:328::-;;;;;;:::i;:::-;;:::i;47794:23::-;;;:::i;45492:87::-;45565:6;;-1:-1:-1;;;;;45565:6:0;45492:87;;25271:104;;;:::i;26954:155::-;;;;;;:::i;:::-;;:::i;50977:71::-;;;:::i;28077:328::-;;;;;;:::i;:::-;;:::i;51232:108::-;;;;;;:::i;:::-;;:::i;47870:37::-;;;:::i;50223:713::-;;;;;;:::i;:::-;;:::i;51973:510::-;;;;;;:::i;:::-;;:::i;51669:153::-;;;;;;:::i;:::-;;:::i;27180:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27301:25:0;;;27277:4;27301:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27180:164;46401:201;;;;;;:::i;:::-;;:::i;38282:224::-;38384:4;-1:-1:-1;;;;;;38408:50:0;;-1:-1:-1;;;38408:50:0;;:90;;;38462:36;38486:11;38462:23;:36::i;:::-;38401:97;38282:224;-1:-1:-1;;38282:224:0:o;25102:100::-;25156:13;25189:5;25182:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25102:100;:::o;26661:221::-;26737:7;30004:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30004:16:0;26757:73;;;;-1:-1:-1;;;26757:73:0;;5980:2:1;26757:73:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:42;6161:19;;26757:73:0;;;;;;;;;-1:-1:-1;26850:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26850:24:0;;26661:221::o;26184:411::-;26265:13;26281:23;26296:7;26281:14;:23::i;:::-;26265:39;;26329:5;-1:-1:-1;;;;;26323:11:0;:2;-1:-1:-1;;;;;26323:11:0;;26315:57;;;;-1:-1:-1;;;26315:57:0;;6393:2:1;26315:57:0;;;6375:21:1;6432:2;6412:18;;;6405:30;6471:34;6451:18;;;6444:62;-1:-1:-1;;;6522:18:1;;;6515:31;6563:19;;26315:57:0;6191:397:1;26315:57:0;22616:10;-1:-1:-1;;;;;26407:21:0;;;;:62;;-1:-1:-1;26432:37:0;26449:5;22616:10;27180:164;:::i;26432:37::-;26385:168;;;;-1:-1:-1;;;26385:168:0;;6795:2:1;26385:168:0;;;6777:21:1;6834:2;6814:18;;;6807:30;6873:34;6853:18;;;6846:62;6944:26;6924:18;;;6917:54;6988:19;;26385:168:0;6593:420:1;26385:168:0;26566:21;26575:2;26579:7;26566:8;:21::i;:::-;26254:341;26184:411;;:::o;27411:339::-;27606:41;22616:10;27639:7;27606:18;:41::i;:::-;27598:103;;;;-1:-1:-1;;;27598:103:0;;;;;;;:::i;:::-;27714:28;27724:4;27730:2;27734:7;27714:9;:28::i;38590:256::-;38687:7;38723:23;38740:5;38723:16;:23::i;:::-;38715:5;:31;38707:87;;;;-1:-1:-1;;;38707:87:0;;7638:2:1;38707:87:0;;;7620:21:1;7677:2;7657:18;;;7650:30;7716:34;7696:18;;;7689:62;-1:-1:-1;;;7767:18:1;;;7760:41;7818:19;;38707:87:0;7436:407:1;38707:87:0;-1:-1:-1;;;;;;38812:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38590:256::o;52566:101::-;45565:6;;52614:44;;-1:-1:-1;;;;;45565:6:0;;;;52636:21;52614:44;;;;;;;;;52636:21;45565:6;52614:44;;;;;;;52606:53;;;;;;52566:101::o;27821:185::-;27959:39;27976:4;27982:2;27986:7;27959:39;;;;;;;;;;;;:16;:39::i;51830:135::-;51927:11;;51919:37;;-1:-1:-1;;;51919:37:0;;-1:-1:-1;;;;;1692:32:1;;;51919:37:0;;;1674:51:1;51891:7:0;;51927:11;;51919:30;;1647:18:1;;51919:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;39112:233::-;39187:7;39223:30;39010:10;:17;;38922:113;39223:30;39215:5;:38;39207:95;;;;-1:-1:-1;;;39207:95:0;;8239:2:1;39207:95:0;;;8221:21:1;8278:2;8258:18;;;8251:30;8317:34;8297:18;;;8290:62;-1:-1:-1;;;8368:18:1;;;8361:42;8420:19;;39207:95:0;8037:408:1;39207:95:0;39320:10;39331:5;39320:17;;;;;;;;:::i;:::-;;;;;;;;;39313:24;;39112:233;;;:::o;51443:106::-;45565:6;;-1:-1:-1;;;;;45565:6:0;22616:10;45712:23;45704:68;;;;-1:-1:-1;;;45704:68:0;;;;;;;:::i;:::-;51520:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51443:106:::0;:::o;49421:704::-;49465:16;49484:25;:15;21356:14;;21264:114;49484:25;49550:11;;49542:42;;-1:-1:-1;;;49542:42:0;;49573:10;49542:42;;;1674:51:1;49465:44:0;;-1:-1:-1;49520:19:0;;-1:-1:-1;;;;;49550:11:0;;;;49542:30;;1647:18:1;;49542:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49520:64;;49617:1;49603:11;:15;49595:55;;;;-1:-1:-1;;;49595:55:0;;9145:2:1;49595:55:0;;;9127:21:1;9184:2;9164:18;;;9157:30;9223:29;9203:18;;;9196:57;9270:18;;49595:55:0;8943:351:1;49595:55:0;49694:10;;49669:22;49680:11;49669:8;:22;:::i;:::-;:35;49661:68;;;;-1:-1:-1;;;49661:68:0;;9766:2:1;49661:68:0;;;9748:21:1;9805:2;9785:18;;;9778:30;-1:-1:-1;;;9824:18:1;;;9817:50;9884:18;;49661:68:0;9564:344:1;49661:68:0;49747:9;49742:376;49766:11;49762:1;:15;49742:376;;;49846:11;;49838:55;;-1:-1:-1;;;49838:55:0;;49879:10;49838:55;;;10087:51:1;10154:18;;;10147:34;;;49799:17:0;;-1:-1:-1;;;;;49846:11:0;;49838:40;;10060:18:1;;49838:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49932:19;;;;:8;:19;;;;;;49799:109;;-1:-1:-1;49932:19:0;;49931:20;49923:50;;;;-1:-1:-1;;;49923:50:0;;10394:2:1;49923:50:0;;;10376:21:1;10433:2;10413:18;;;10406:30;-1:-1:-1;;;10452:18:1;;;10445:47;10509:18;;49923:50:0;10192:341:1;49923:50:0;49988:19;;;;:8;:19;;;;;:26;;-1:-1:-1;;49988:26:0;50010:4;49988:26;;;50029:35;50039:10;50051:12;50062:1;50051:8;:12;:::i;:::-;50029:9;:35::i;:::-;50079:27;:15;21475:19;;21493:1;21475:19;;;21386:127;50079:27;-1:-1:-1;49779:3:0;;;;:::i;:::-;;;;49742:376;;24796:239;24868:7;24904:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24904:16:0;;24931:73;;;;-1:-1:-1;;;24931:73:0;;10880:2:1;24931:73:0;;;10862:21:1;10919:2;10899:18;;;10892:30;10958:34;10938:18;;;10931:62;-1:-1:-1;;;11009:18:1;;;11002:39;11058:19;;24931:73:0;10678:405:1;47725:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24526:208::-;24598:7;-1:-1:-1;;;;;24626:19:0;;24618:74;;;;-1:-1:-1;;;24618:74:0;;11290:2:1;24618:74:0;;;11272:21:1;11329:2;11309:18;;;11302:30;11368:34;11348:18;;;11341:62;-1:-1:-1;;;11419:18:1;;;11412:40;11469:19;;24618:74:0;11088:406:1;24618:74:0;-1:-1:-1;;;;;;24710:16:0;;;;;:9;:16;;;;;;;24526:208::o;46143:103::-;45565:6;;-1:-1:-1;;;;;45565:6:0;22616:10;45712:23;45704:68;;;;-1:-1:-1;;;45704:68:0;;;;;;;:::i;:::-;46208:30:::1;46235:1;46208:18;:30::i;49085:328::-:0;45565:6;;-1:-1:-1;;;;;45565:6:0;22616:10;45712:23;45704:68;;;;-1:-1:-1;;;45704:68:0;;;;;;;:::i;:::-;49170:16:::1;49189:25;:15;21356:14:::0;;21264:114;49189:25:::1;49170:44;;49272:9;49267:139;49291:11;49287:1;:15;49267:139;;;49324:28;49334:3:::0;49339:12:::1;49350:1:::0;49339:8;:12:::1;:::i;49324:28::-;49367:27;:15;21475:19:::0;;21493:1;21475:19;;;21386:127;49367:27:::1;49304:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49267:139;;;;49159:254;49085:328:::0;;:::o;47794:23::-;;;;;;;:::i;25271:104::-;25327:13;25360:7;25353:14;;;;;:::i;26954:155::-;27049:52;22616:10;27082:8;27092;27049:18;:52::i;50977:71::-;45565:6;;-1:-1:-1;;;;;45565:6:0;22616:10;45712:23;45704:68;;;;-1:-1:-1;;;45704:68:0;;;;;;;:::i;:::-;51025:8:::1;:15:::0;;-1:-1:-1;;51025:15:0::1;51036:4;51025:15;::::0;;50977:71::o;28077:328::-;28252:41;22616:10;28285:7;28252:18;:41::i;:::-;28244:103;;;;-1:-1:-1;;;28244:103:0;;;;;;;:::i;:::-;28358:39;28372:4;28378:2;28382:7;28391:5;28358:13;:39::i;51232:108::-;45565:6;;-1:-1:-1;;;;;45565:6:0;22616:10;45712:23;45704:68;;;;-1:-1:-1;;;45704:68:0;;;;;;;:::i;:::-;51310:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;47870:37::-:0;;;;;;;:::i;50223:713::-;29980:4;30004:16;;;:7;:16;;;;;;50341:13;;-1:-1:-1;;;;;30004:16:0;50372:114;;;;-1:-1:-1;;;50372:114:0;;11701:2:1;50372:114:0;;;11683:21:1;11740:2;11720:18;;;11713:30;11779:34;11759:18;;;11752:62;-1:-1:-1;;;11830:18:1;;;11823:46;11886:19;;50372:114:0;11499:412:1;50372:114:0;50504:8;;;;50499:58;;50536:9;50529:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50223:713;;;:::o;50499:58::-;50569:28;50600:10;:8;:10::i;:::-;50569:41;;50672:1;50647:14;50641:28;:32;:287;;;;;;;;;;;;;;;;;50765:14;50806:18;:7;:16;:18::i;:::-;50851:13;50722:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50641:287;50621:307;50223:713;-1:-1:-1;;;50223:713:0:o;51973:510::-;52083:11;;52075:37;;-1:-1:-1;;;52075:37:0;;-1:-1:-1;;;;;1692:32:1;;;52075:37:0;;;1674:51:1;52036:4:0;;;;52083:11;;;52075:30;;1647:18:1;;52075:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52053:59;;52141:1;52127:11;:15;52123:60;;;-1:-1:-1;52166:5:0;;51973:510;-1:-1:-1;;51973:510:0:o;52123:60::-;52200:9;52195:259;52219:11;52215:1;:15;52195:259;;;52299:11;;52291:50;;-1:-1:-1;;;52291:50:0;;-1:-1:-1;;;;;10105:32:1;;;52291:50:0;;;10087:51:1;10154:18;;;10147:34;;;52252:17:0;;52299:11;;52291:40;;10060:18:1;;52291:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52375:19;;;;:8;:19;;;;;;52252:104;;-1:-1:-1;52375:19:0;;52371:72;;;-1:-1:-1;52422:5:0;;51973:510;-1:-1:-1;;;;51973:510:0:o;52371:72::-;-1:-1:-1;52232:3:0;;;;:::i;:::-;;;;52195:259;;;-1:-1:-1;52471:4:0;;51973:510;-1:-1:-1;;;51973:510:0:o;51669:153::-;45565:6;;-1:-1:-1;;;;;45565:6:0;22616:10;45712:23;45704:68;;;;-1:-1:-1;;;45704:68:0;;;;;;;:::i;:::-;51781:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;46401:201::-:0;45565:6;;-1:-1:-1;;;;;45565:6:0;22616:10;45712:23;45704:68;;;;-1:-1:-1;;;45704:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46490:22:0;::::1;46482:73;;;::::0;-1:-1:-1;;;46482:73:0;;13776:2:1;46482:73:0::1;::::0;::::1;13758:21:1::0;13815:2;13795:18;;;13788:30;13854:34;13834:18;;;13827:62;-1:-1:-1;;;13905:18:1;;;13898:36;13951:19;;46482:73:0::1;13574:402:1::0;46482:73:0::1;46566:28;46585:8;46566:18;:28::i;:::-;46401:201:::0;:::o;24157:305::-;24259:4;-1:-1:-1;;;;;;24296:40:0;;-1:-1:-1;;;24296:40:0;;:105;;-1:-1:-1;;;;;;;24353:48:0;;-1:-1:-1;;;24353:48:0;24296:105;:158;;;-1:-1:-1;;;;;;;;;;13582:40:0;;;24418:36;13473:157;34061:174;34136:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34136:29:0;-1:-1:-1;;;;;34136:29:0;;;;;;;;:24;;34190:23;34136:24;34190:14;:23::i;:::-;-1:-1:-1;;;;;34181:46:0;;;;;;;;;;;34061:174;;:::o;30209:348::-;30302:4;30004:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30004:16:0;30319:73;;;;-1:-1:-1;;;30319:73:0;;14183:2:1;30319:73:0;;;14165:21:1;14222:2;14202:18;;;14195:30;14261:34;14241:18;;;14234:62;-1:-1:-1;;;14312:18:1;;;14305:42;14364:19;;30319:73:0;13981:408:1;30319:73:0;30403:13;30419:23;30434:7;30419:14;:23::i;:::-;30403:39;;30472:5;-1:-1:-1;;;;;30461:16:0;:7;-1:-1:-1;;;;;30461:16:0;;:51;;;;30505:7;-1:-1:-1;;;;;30481:31:0;:20;30493:7;30481:11;:20::i;:::-;-1:-1:-1;;;;;30481:31:0;;30461:51;:87;;;-1:-1:-1;;;;;;27301:25:0;;;27277:4;27301:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30516:32;30453:96;30209:348;-1:-1:-1;;;;30209:348:0:o;33318:625::-;33477:4;-1:-1:-1;;;;;33450:31:0;:23;33465:7;33450:14;:23::i;:::-;-1:-1:-1;;;;;33450:31:0;;33442:81;;;;-1:-1:-1;;;33442:81:0;;14596:2:1;33442:81:0;;;14578:21:1;14635:2;14615:18;;;14608:30;14674:34;14654:18;;;14647:62;-1:-1:-1;;;14725:18:1;;;14718:35;14770:19;;33442:81:0;14394:401:1;33442:81:0;-1:-1:-1;;;;;33542:16:0;;33534:65;;;;-1:-1:-1;;;33534:65:0;;15002:2:1;33534:65:0;;;14984:21:1;15041:2;15021:18;;;15014:30;15080:34;15060:18;;;15053:62;-1:-1:-1;;;15131:18:1;;;15124:34;15175:19;;33534:65:0;14800:400:1;33534:65:0;33612:39;33633:4;33639:2;33643:7;33612:20;:39::i;:::-;33716:29;33733:1;33737:7;33716:8;:29::i;:::-;-1:-1:-1;;;;;33758:15:0;;;;;;:9;:15;;;;;:20;;33777:1;;33758:15;:20;;33777:1;;33758:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33789:13:0;;;;;;:9;:13;;;;;:18;;33806:1;;33789:13;:18;;33806:1;;33789:18;:::i;:::-;;;;-1:-1:-1;;33818:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33818:21:0;-1:-1:-1;;;;;33818:21:0;;;;;;;;;33857:27;;33818:16;;33857:27;;;;;;;26254:341;26184:411;;:::o;30899:110::-;30975:26;30985:2;30989:7;30975:26;;;;;;;;;;;;:9;:26::i;46762:191::-;46855:6;;;-1:-1:-1;;;;;46872:17:0;;;-1:-1:-1;;;;;;46872:17:0;;;;;;;46905:40;;46855:6;;;46872:17;46855:6;;46905:40;;46836:16;;46905:40;46825:128;46762:191;:::o;34377:315::-;34532:8;-1:-1:-1;;;;;34523:17:0;:5;-1:-1:-1;;;;;34523:17:0;;34515:55;;;;-1:-1:-1;;;34515:55:0;;15537:2:1;34515:55:0;;;15519:21:1;15576:2;15556:18;;;15549:30;15615:27;15595:18;;;15588:55;15660:18;;34515:55:0;15335:349:1;34515:55:0;-1:-1:-1;;;;;34581:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34581:46:0;;;;;;;;;;34643:41;;540::1;;;34643::0;;513:18:1;34643:41:0;;;;;;;34377:315;;;:::o;29287:::-;29444:28;29454:4;29460:2;29464:7;29444:9;:28::i;:::-;29491:48;29514:4;29520:2;29524:7;29533:5;29491:22;:48::i;:::-;29483:111;;;;-1:-1:-1;;;29483:111:0;;;;;;;:::i;48817:108::-;48877:13;48910:7;48903:14;;;;;:::i;398:723::-;454:13;675:5;684:1;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;39958:589;-1:-1:-1;;;;;40164:18:0;;40160:187;;40199:40;40231:7;41374:10;:17;;41347:24;;;;:15;:24;;;;;:44;;;41402:24;;;;;;;;;;;;41270:164;40199:40;40160:187;;;40269:2;-1:-1:-1;;;;;40261:10:0;:4;-1:-1:-1;;;;;40261:10:0;;40257:90;;40288:47;40321:4;40327:7;40288:32;:47::i;:::-;-1:-1:-1;;;;;40361:16:0;;40357:183;;40394:45;40431:7;40394:36;:45::i;40357:183::-;40467:4;-1:-1:-1;;;;;40461:10:0;:2;-1:-1:-1;;;;;40461:10:0;;40457:83;;40488:40;40516:2;40520:7;40488:27;:40::i;31236:321::-;31366:18;31372:2;31376:7;31366:5;:18::i;:::-;31417:54;31448:1;31452:2;31456:7;31465:5;31417:22;:54::i;:::-;31395:154;;;;-1:-1:-1;;;31395:154:0;;;;;;;:::i;35257:799::-;35412:4;-1:-1:-1;;;;;35433:13:0;;3685:19;:23;35429:620;;35469:72;;-1:-1:-1;;;35469:72:0;;-1:-1:-1;;;;;35469:36:0;;;;;:72;;22616:10;;35520:4;;35526:7;;35535:5;;35469:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35469:72:0;;;;;;;;-1:-1:-1;;35469:72:0;;;;;;;;;;;;:::i;:::-;;;35465:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35711:6;:13;35728:1;35711:18;35707:272;;35754:60;;-1:-1:-1;;;35754:60:0;;;;;;;:::i;35707:272::-;35929:6;35923:13;35914:6;35910:2;35906:15;35899:38;35465:529;-1:-1:-1;;;;;;35592:51:0;-1:-1:-1;;;35592:51:0;;-1:-1:-1;35585:58:0;;35429:620;-1:-1:-1;36033:4:0;35257:799;;;;;;:::o;42061:988::-;42327:22;42377:1;42352:22;42369:4;42352:16;:22::i;:::-;:26;;;;:::i;:::-;42389:18;42410:26;;;:17;:26;;;;;;42327:51;;-1:-1:-1;42543:28:0;;;42539:328;;-1:-1:-1;;;;;42610:18:0;;42588:19;42610:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42661:30;;;;;;:44;;;42778:30;;:17;:30;;;;;:43;;;42539:328;-1:-1:-1;42963:26:0;;;;:17;:26;;;;;;;;42956:33;;;-1:-1:-1;;;;;43007:18:0;;;;;:12;:18;;;;;:34;;;;;;;43000:41;42061:988::o;43344:1079::-;43622:10;:17;43597:22;;43622:21;;43642:1;;43622:21;:::i;:::-;43654:18;43675:24;;;:15;:24;;;;;;44048:10;:26;;43597:46;;-1:-1:-1;43675:24:0;;43597:46;;44048:26;;;;;;:::i;:::-;;;;;;;;;44026:48;;44112:11;44087:10;44098;44087:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44192:28;;;:15;:28;;;;;;;:41;;;44364:24;;;;;44357:31;44399:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43415:1008;;;43344:1079;:::o;40848:221::-;40933:14;40950:20;40967:2;40950:16;:20::i;:::-;-1:-1:-1;;;;;40981:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41026:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40848:221:0:o;31893:439::-;-1:-1:-1;;;;;31973:16:0;;31965:61;;;;-1:-1:-1;;;31965:61:0;;17564:2:1;31965:61:0;;;17546:21:1;;;17583:18;;;17576:30;17642:34;17622:18;;;17615:62;17694:18;;31965:61:0;17362:356:1;31965:61:0;29980:4;30004:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30004:16:0;:30;32037:58;;;;-1:-1:-1;;;32037:58:0;;17925:2:1;32037:58:0;;;17907:21:1;17964:2;17944:18;;;17937:30;18003;17983:18;;;17976:58;18051:18;;32037:58:0;17723:352:1;32037:58:0;32108:45;32137:1;32141:2;32145:7;32108:20;:45::i;:::-;-1:-1:-1;;;;;32166:13:0;;;;;;:9;:13;;;;;:18;;32183:1;;32166:13;:18;;32183:1;;32166:18;:::i;:::-;;;;-1:-1:-1;;32195:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32195:21:0;-1:-1:-1;;;;;32195:21:0;;;;;;;;32234:33;;32195:16;;;32234:33;;32195:16;;32234:33;51520:21:::1;51443:106:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;7018:413::-;7220:2;7202:21;;;7259:2;7239:18;;;7232:30;7298:34;7293:2;7278:18;;7271:62;-1:-1:-1;;;7364:2:1;7349:18;;7342:47;7421:3;7406:19;;7018:413::o;7848:184::-;7918:6;7971:2;7959:9;7950:7;7946:23;7942:32;7939:52;;;7987:1;7984;7977:12;7939:52;-1:-1:-1;8010:16:1;;7848:184;-1:-1:-1;7848:184:1:o;8450:127::-;8511:10;8506:3;8502:20;8499:1;8492:31;8542:4;8539:1;8532:15;8566:4;8563:1;8556:15;8582:356;8784:2;8766:21;;;8803:18;;;8796:30;8862:34;8857:2;8842:18;;8835:62;8929:2;8914:18;;8582:356::o;9299:127::-;9360:10;9355:3;9351:20;9348:1;9341:31;9391:4;9388:1;9381:15;9415:4;9412:1;9405:15;9431:128;9471:3;9502:1;9498:6;9495:1;9492:13;9489:39;;;9508:18;;:::i;:::-;-1:-1:-1;9544:9:1;;9431:128::o;10538:135::-;10577:3;10598:17;;;10595:43;;10618:18;;:::i;:::-;-1:-1:-1;10665:1:1;10654:13;;10538:135::o;12042:1527::-;12266:3;12304:6;12298:13;12330:4;12343:51;12387:6;12382:3;12377:2;12369:6;12365:15;12343:51;:::i;:::-;12457:13;;12416:16;;;;12479:55;12457:13;12416:16;12501:15;;;12479:55;:::i;:::-;12623:13;;12556:20;;;12596:1;;12683;12705:18;;;;12758;;;;12785:93;;12863:4;12853:8;12849:19;12837:31;;12785:93;12926:2;12916:8;12913:16;12893:18;12890:40;12887:167;;-1:-1:-1;;;12953:33:1;;13009:4;13006:1;12999:15;13039:4;12960:3;13027:17;12887:167;13070:18;13097:110;;;;13221:1;13216:328;;;;13063:481;;13097:110;-1:-1:-1;;13132:24:1;;13118:39;;13177:20;;;;-1:-1:-1;13097:110:1;;13216:328;11989:1;11982:14;;;12026:4;12013:18;;13311:1;13325:169;13339:8;13336:1;13333:15;13325:169;;;13421:14;;13406:13;;;13399:37;13464:16;;;;13356:10;;13325:169;;;13329:3;;13525:8;13518:5;13514:20;13507:27;;13063:481;-1:-1:-1;13560:3:1;;12042:1527;-1:-1:-1;;;;;;;;;;;12042:1527:1:o;15205:125::-;15245:4;15273:1;15270;15267:8;15264:34;;;15278:18;;:::i;:::-;-1:-1:-1;15315:9:1;;15205:125::o;15689:414::-;15891:2;15873:21;;;15930:2;15910:18;;;15903:30;15969:34;15964:2;15949:18;;15942:62;-1:-1:-1;;;16035:2:1;16020:18;;16013:48;16093:3;16078:19;;15689:414::o;16108:127::-;16169:10;16164:3;16160:20;16157:1;16150:31;16200:4;16197:1;16190:15;16224:4;16221:1;16214:15;16240:120;16280:1;16306;16296:35;;16311:18;;:::i;:::-;-1:-1:-1;16345:9:1;;16240:120::o;16365:112::-;16397:1;16423;16413:35;;16428:18;;:::i;:::-;-1:-1:-1;16462:9:1;;16365:112::o;16482:489::-;-1:-1:-1;;;;;16751:15:1;;;16733:34;;16803:15;;16798:2;16783:18;;16776:43;16850:2;16835:18;;16828:34;;;16898:3;16893:2;16878:18;;16871:31;;;16676:4;;16919:46;;16945:19;;16937:6;16919:46;:::i;:::-;16911:54;16482:489;-1:-1:-1;;;;;;16482:489:1:o;16976:249::-;17045:6;17098:2;17086:9;17077:7;17073:23;17069:32;17066:52;;;17114:1;17111;17104:12;17066:52;17146:9;17140:16;17165:30;17189:5;17165:30;:::i;17230:127::-;17291:10;17286:3;17282:20;17279:1;17272:31;17322:4;17319:1;17312:15;17346:4;17343:1;17336:15
Swarm Source
ipfs://e45fc67cb7fbe352feb12065052555df83c3d9c5a1d2929fb6d0fcbf0b1a0513
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.