BEP-721
Overview
Max Total Supply
2,321ARCAS
Holders
699
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ARCASLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Arcas
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2022-04-30 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // 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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (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/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: contracts/BAS/NFTs/Arcas/Arcas.sol /* ██████████ █████████ ████████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██████████ █████████ ████████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██████████ ██ ██ ████████ █████████████████████████████████████ Block, Ape, Scissors */ // Created by Dan and Jack pragma solidity 0.8.12; contract BASArcasAuth is Ownable { mapping(address => bool) public tokenCreator; // @dev The only user which can mint a NFT, genisis and shop contract that have this trait modifier onlyCreator(){ require(tokenCreator[msg.sender], "Caller must be a ApeCreator."); _; } function modifyCreators(address _address, bool _state) external onlyOwner { tokenCreator[_address] = _state; } } contract Arcas is ERC721Enumerable, Ownable, BASArcasAuth { using SafeMath for uint; uint immutable MaxTokens = 2**256 - 1; mapping(uint => uint) public tokenToType; mapping(uint => string) public typeToURI; uint public typeCounter; event TokenMinted(uint tokenId, uint _type, address _recipient); constructor(string memory name, string memory symbol) ERC721(name, symbol) { typeCounter = 0; } function tokenURI(uint tokenId) public view override returns(string memory) { return typeToURI[tokenToType[tokenId]]; } function setTokenURI(string memory _URI, uint _type) public onlyOwner { require(_type <= typeCounter, "NOT VALID TYPE"); if(_type == typeCounter) { typeCounter++; } typeToURI[_type] = _URI; } function mint(address _recipient, uint _type) public onlyCreator { require(_type < typeCounter, "NOT VALID TYPE"); require(totalSupply() < MaxTokens, "MAXXED SUPPLY"); uint tokenId = totalSupply(); _safeMint(_recipient, tokenId); tokenToType[tokenId] = _type; emit TokenMinted(tokenId, _type, _recipient); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_type","type":"uint256"},{"indexed":false,"internalType":"address","name":"_recipient","type":"address"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"modifyCreators","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"},{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"setTokenURI","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":"","type":"address"}],"name":"tokenCreator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"uint256"}],"name":"tokenToType","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":"typeCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeToURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040526000196080523480156200001757600080fd5b506040516200203c3803806200203c8339810160408190526200003a916200025c565b81518290829062000053906000906020850190620000e9565b50805162000069906001906020840190620000e9565b50505062000086620000806200009360201b60201c565b62000097565b50506000600e5562000303565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f790620002c6565b90600052602060002090601f0160209004810192826200011b576000855562000166565b82601f106200013657805160ff191683800117855562000166565b8280016001018555821562000166579182015b828111156200016657825182559160200191906001019062000149565b506200017492915062000178565b5090565b5b8082111562000174576000815560010162000179565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001b757600080fd5b81516001600160401b0380821115620001d457620001d46200018f565b604051601f8301601f19908116603f01168101908282118183101715620001ff57620001ff6200018f565b816040528381526020925086838588010111156200021c57600080fd5b600091505b8382101562000240578582018301518183018401529082019062000221565b83821115620002525760008385830101525b9695505050505050565b600080604083850312156200027057600080fd5b82516001600160401b03808211156200028857600080fd5b6200029686838701620001a5565b93506020850151915080821115620002ad57600080fd5b50620002bc85828601620001a5565b9150509250929050565b600181811c90821680620002db57607f821691505b60208210811415620002fd57634e487b7160e01b600052602260045260246000fd5b50919050565b608051611d1d6200031f60003960006108ad0152611d1d6000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80634f6ccce7116100de57806395d89b4111610097578063c5c5ca5b11610071578063c5c5ca5b14610360578063c87b56dd14610373578063e985e9c514610386578063f2fde38b146103c257600080fd5b806395d89b4114610332578063a22cb4651461033a578063b88d4fde1461034d57600080fd5b80634f6ccce7146102d757806361318e59146102ea5780636352211e146102f357806370a0823114610306578063715018a6146103195780638da5cb5b1461032157600080fd5b80631940330c1161014b57806329a26d101161012557806329a26d101461028b5780632f745c591461029e57806340c10f19146102b157806342842e0e146102c457600080fd5b80631940330c1461023557806323774af21461025557806323b872dd1461027857600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806309a3beef1461021057806318160ddd14610223575b600080fd5b6101a66101a13660046117e4565b6103d5565b60405190151581526020015b60405180910390f35b6101c3610400565b6040516101b29190611855565b6101e36101de366004611868565b610492565b6040516001600160a01b0390911681526020016101b2565b61020e61020936600461189d565b61052c565b005b61020e61021e366004611953565b610642565b6008545b6040519081526020016101b2565b610227610243366004611868565b600c6020526000908152604090205481565b6101a66102633660046119ac565b600b6020526000908152604090205460ff1681565b61020e6102863660046119c7565b6106ee565b61020e610299366004611a03565b61071f565b6102276102ac36600461189d565b610774565b61020e6102bf36600461189d565b61080a565b61020e6102d23660046119c7565b610988565b6102276102e5366004611868565b6109a3565b610227600e5481565b6101e3610301366004611868565b610a36565b6102276103143660046119ac565b610aad565b61020e610b34565b600a546001600160a01b03166101e3565b6101c3610b6a565b61020e610348366004611a03565b610b79565b61020e61035b366004611a3f565b610b88565b6101c361036e366004611868565b610bc0565b6101c3610381366004611868565b610c5a565b6101a6610394366004611abb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103d03660046119ac565b610d09565b60006001600160e01b0319821663780e9d6360e01b14806103fa57506103fa82610da4565b92915050565b60606000805461040f90611aee565b80601f016020809104026020016040519081016040528092919081815260200182805461043b90611aee565b80156104885780601f1061045d57610100808354040283529160200191610488565b820191906000526020600020905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061053782610a36565b9050806001600160a01b0316836001600160a01b031614156105a55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610507565b336001600160a01b03821614806105c157506105c18133610394565b6106335760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610507565b61063d8383610df4565b505050565b600a546001600160a01b0316331461066c5760405162461bcd60e51b815260040161050790611b29565b600e548111156106af5760405162461bcd60e51b815260206004820152600e60248201526d4e4f542056414c4944205459504560901b6044820152606401610507565b600e548114156106cf57600e80549060006106c983611b74565b91905055505b6000818152600d60209081526040909120835161063d92850190611735565b6106f83382610e62565b6107145760405162461bcd60e51b815260040161050790611b8f565b61063d838383610f59565b600a546001600160a01b031633146107495760405162461bcd60e51b815260040161050790611b29565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b600061077f83610aad565b82106107e15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610507565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336000908152600b602052604090205460ff166108695760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206d75737420626520612041706543726561746f722e000000006044820152606401610507565b600e5481106108ab5760405162461bcd60e51b815260206004820152600e60248201526d4e4f542056414c4944205459504560901b6044820152606401610507565b7f00000000000000000000000000000000000000000000000000000000000000006108d560085490565b106109125760405162461bcd60e51b815260206004820152600d60248201526c4d415858454420535550504c5960981b6044820152606401610507565b600061091d60085490565b90506109298382611100565b6000818152600c602090815260409182902084905581518381529081018490526001600160a01b0385168183015290517ff371d67483809edbc84279729528d26a3e37ce67f1e3a911778dbf88ff927ca29181900360600190a1505050565b61063d83838360405180602001604052806000815250610b88565b60006109ae60085490565b8210610a115760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610507565b60088281548110610a2457610a24611be0565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103fa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610507565b60006001600160a01b038216610b185760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610507565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b5e5760405162461bcd60e51b815260040161050790611b29565b610b68600061111a565b565b60606001805461040f90611aee565b610b8433838361116c565b5050565b610b923383610e62565b610bae5760405162461bcd60e51b815260040161050790611b8f565b610bba8484848461123b565b50505050565b600d6020526000908152604090208054610bd990611aee565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0590611aee565b8015610c525780601f10610c2757610100808354040283529160200191610c52565b820191906000526020600020905b815481529060010190602001808311610c3557829003601f168201915b505050505081565b6000818152600c60209081526040808320548352600d9091529020805460609190610c8490611aee565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb090611aee565b8015610cfd5780601f10610cd257610100808354040283529160200191610cfd565b820191906000526020600020905b815481529060010190602001808311610ce057829003601f168201915b50505050509050919050565b600a546001600160a01b03163314610d335760405162461bcd60e51b815260040161050790611b29565b6001600160a01b038116610d985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610507565b610da18161111a565b50565b60006001600160e01b031982166380ac58cd60e01b1480610dd557506001600160e01b03198216635b5e139f60e01b145b806103fa57506301ffc9a760e01b6001600160e01b03198316146103fa565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e2982610a36565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610edb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610507565b6000610ee683610a36565b9050806001600160a01b0316846001600160a01b03161480610f215750836001600160a01b0316610f1684610492565b6001600160a01b0316145b80610f5157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f6c82610a36565b6001600160a01b031614610fd05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610507565b6001600160a01b0382166110325760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610507565b61103d83838361126e565b611048600082610df4565b6001600160a01b0383166000908152600360205260408120805460019290611071908490611bf6565b90915550506001600160a01b038216600090815260036020526040812080546001929061109f908490611c0d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b84828260405180602001604052806000815250611326565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156111ce5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610507565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611246848484610f59565b61125284848484611359565b610bba5760405162461bcd60e51b815260040161050790611c25565b6001600160a01b0383166112c9576112c481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6112ec565b816001600160a01b0316836001600160a01b0316146112ec576112ec8382611457565b6001600160a01b0382166113035761063d816114f4565b826001600160a01b0316826001600160a01b03161461063d5761063d82826115a3565b61133083836115e7565b61133d6000848484611359565b61063d5760405162461bcd60e51b815260040161050790611c25565b60006001600160a01b0384163b1561144c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061139d903390899088908890600401611c77565b6020604051808303816000875af19250505080156113d8575060408051601f3d908101601f191682019092526113d591810190611cb4565b60015b611432573d808015611406576040519150601f19603f3d011682016040523d82523d6000602084013e61140b565b606091505b50805161142a5760405162461bcd60e51b815260040161050790611c25565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f51565b506001949350505050565b6000600161146484610aad565b61146e9190611bf6565b6000838152600760205260409020549091508082146114c1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061150690600190611bf6565b6000838152600960205260408120546008805493945090928490811061152e5761152e611be0565b90600052602060002001549050806008838154811061154f5761154f611be0565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061158757611587611cd1565b6001900381819060005260206000200160009055905550505050565b60006115ae83610aad565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661163d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610507565b6000818152600260205260409020546001600160a01b0316156116a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610507565b6116ae6000838361126e565b6001600160a01b03821660009081526003602052604081208054600192906116d7908490611c0d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461174190611aee565b90600052602060002090601f01602090048101928261176357600085556117a9565b82601f1061177c57805160ff19168380011785556117a9565b828001600101855582156117a9579182015b828111156117a957825182559160200191906001019061178e565b506117b59291506117b9565b5090565b5b808211156117b557600081556001016117ba565b6001600160e01b031981168114610da157600080fd5b6000602082840312156117f657600080fd5b8135611801816117ce565b9392505050565b6000815180845260005b8181101561182e57602081850181015186830182015201611812565b81811115611840576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006118016020830184611808565b60006020828403121561187a57600080fd5b5035919050565b80356001600160a01b038116811461189857600080fd5b919050565b600080604083850312156118b057600080fd5b6118b983611881565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118f8576118f86118c7565b604051601f8501601f19908116603f01168101908282118183101715611920576119206118c7565b8160405280935085815286868601111561193957600080fd5b858560208301376000602087830101525050509392505050565b6000806040838503121561196657600080fd5b823567ffffffffffffffff81111561197d57600080fd5b8301601f8101851361198e57600080fd5b61199d858235602084016118dd565b95602094909401359450505050565b6000602082840312156119be57600080fd5b61180182611881565b6000806000606084860312156119dc57600080fd5b6119e584611881565b92506119f360208501611881565b9150604084013590509250925092565b60008060408385031215611a1657600080fd5b611a1f83611881565b915060208301358015158114611a3457600080fd5b809150509250929050565b60008060008060808587031215611a5557600080fd5b611a5e85611881565b9350611a6c60208601611881565b925060408501359150606085013567ffffffffffffffff811115611a8f57600080fd5b8501601f81018713611aa057600080fd5b611aaf878235602084016118dd565b91505092959194509250565b60008060408385031215611ace57600080fd5b611ad783611881565b9150611ae560208401611881565b90509250929050565b600181811c90821680611b0257607f821691505b60208210811415611b2357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611b8857611b88611b5e565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600082821015611c0857611c08611b5e565b500390565b60008219821115611c2057611c20611b5e565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611caa90830184611808565b9695505050505050565b600060208284031215611cc657600080fd5b8151611801816117ce565b634e487b7160e01b600052603160045260246000fdfea264697066735822122072a297248ae9da2b08a2bfacc03955db4794dbe7860ccaa8eed7e88ddb1195a764736f6c634300080c00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000094241535f4152434153000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054152434153000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80634f6ccce7116100de57806395d89b4111610097578063c5c5ca5b11610071578063c5c5ca5b14610360578063c87b56dd14610373578063e985e9c514610386578063f2fde38b146103c257600080fd5b806395d89b4114610332578063a22cb4651461033a578063b88d4fde1461034d57600080fd5b80634f6ccce7146102d757806361318e59146102ea5780636352211e146102f357806370a0823114610306578063715018a6146103195780638da5cb5b1461032157600080fd5b80631940330c1161014b57806329a26d101161012557806329a26d101461028b5780632f745c591461029e57806340c10f19146102b157806342842e0e146102c457600080fd5b80631940330c1461023557806323774af21461025557806323b872dd1461027857600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806309a3beef1461021057806318160ddd14610223575b600080fd5b6101a66101a13660046117e4565b6103d5565b60405190151581526020015b60405180910390f35b6101c3610400565b6040516101b29190611855565b6101e36101de366004611868565b610492565b6040516001600160a01b0390911681526020016101b2565b61020e61020936600461189d565b61052c565b005b61020e61021e366004611953565b610642565b6008545b6040519081526020016101b2565b610227610243366004611868565b600c6020526000908152604090205481565b6101a66102633660046119ac565b600b6020526000908152604090205460ff1681565b61020e6102863660046119c7565b6106ee565b61020e610299366004611a03565b61071f565b6102276102ac36600461189d565b610774565b61020e6102bf36600461189d565b61080a565b61020e6102d23660046119c7565b610988565b6102276102e5366004611868565b6109a3565b610227600e5481565b6101e3610301366004611868565b610a36565b6102276103143660046119ac565b610aad565b61020e610b34565b600a546001600160a01b03166101e3565b6101c3610b6a565b61020e610348366004611a03565b610b79565b61020e61035b366004611a3f565b610b88565b6101c361036e366004611868565b610bc0565b6101c3610381366004611868565b610c5a565b6101a6610394366004611abb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103d03660046119ac565b610d09565b60006001600160e01b0319821663780e9d6360e01b14806103fa57506103fa82610da4565b92915050565b60606000805461040f90611aee565b80601f016020809104026020016040519081016040528092919081815260200182805461043b90611aee565b80156104885780601f1061045d57610100808354040283529160200191610488565b820191906000526020600020905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061053782610a36565b9050806001600160a01b0316836001600160a01b031614156105a55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610507565b336001600160a01b03821614806105c157506105c18133610394565b6106335760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610507565b61063d8383610df4565b505050565b600a546001600160a01b0316331461066c5760405162461bcd60e51b815260040161050790611b29565b600e548111156106af5760405162461bcd60e51b815260206004820152600e60248201526d4e4f542056414c4944205459504560901b6044820152606401610507565b600e548114156106cf57600e80549060006106c983611b74565b91905055505b6000818152600d60209081526040909120835161063d92850190611735565b6106f83382610e62565b6107145760405162461bcd60e51b815260040161050790611b8f565b61063d838383610f59565b600a546001600160a01b031633146107495760405162461bcd60e51b815260040161050790611b29565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b600061077f83610aad565b82106107e15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610507565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336000908152600b602052604090205460ff166108695760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206d75737420626520612041706543726561746f722e000000006044820152606401610507565b600e5481106108ab5760405162461bcd60e51b815260206004820152600e60248201526d4e4f542056414c4944205459504560901b6044820152606401610507565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6108d560085490565b106109125760405162461bcd60e51b815260206004820152600d60248201526c4d415858454420535550504c5960981b6044820152606401610507565b600061091d60085490565b90506109298382611100565b6000818152600c602090815260409182902084905581518381529081018490526001600160a01b0385168183015290517ff371d67483809edbc84279729528d26a3e37ce67f1e3a911778dbf88ff927ca29181900360600190a1505050565b61063d83838360405180602001604052806000815250610b88565b60006109ae60085490565b8210610a115760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610507565b60088281548110610a2457610a24611be0565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103fa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610507565b60006001600160a01b038216610b185760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610507565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b5e5760405162461bcd60e51b815260040161050790611b29565b610b68600061111a565b565b60606001805461040f90611aee565b610b8433838361116c565b5050565b610b923383610e62565b610bae5760405162461bcd60e51b815260040161050790611b8f565b610bba8484848461123b565b50505050565b600d6020526000908152604090208054610bd990611aee565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0590611aee565b8015610c525780601f10610c2757610100808354040283529160200191610c52565b820191906000526020600020905b815481529060010190602001808311610c3557829003601f168201915b505050505081565b6000818152600c60209081526040808320548352600d9091529020805460609190610c8490611aee565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb090611aee565b8015610cfd5780601f10610cd257610100808354040283529160200191610cfd565b820191906000526020600020905b815481529060010190602001808311610ce057829003601f168201915b50505050509050919050565b600a546001600160a01b03163314610d335760405162461bcd60e51b815260040161050790611b29565b6001600160a01b038116610d985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610507565b610da18161111a565b50565b60006001600160e01b031982166380ac58cd60e01b1480610dd557506001600160e01b03198216635b5e139f60e01b145b806103fa57506301ffc9a760e01b6001600160e01b03198316146103fa565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e2982610a36565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610edb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610507565b6000610ee683610a36565b9050806001600160a01b0316846001600160a01b03161480610f215750836001600160a01b0316610f1684610492565b6001600160a01b0316145b80610f5157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f6c82610a36565b6001600160a01b031614610fd05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610507565b6001600160a01b0382166110325760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610507565b61103d83838361126e565b611048600082610df4565b6001600160a01b0383166000908152600360205260408120805460019290611071908490611bf6565b90915550506001600160a01b038216600090815260036020526040812080546001929061109f908490611c0d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b84828260405180602001604052806000815250611326565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156111ce5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610507565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611246848484610f59565b61125284848484611359565b610bba5760405162461bcd60e51b815260040161050790611c25565b6001600160a01b0383166112c9576112c481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6112ec565b816001600160a01b0316836001600160a01b0316146112ec576112ec8382611457565b6001600160a01b0382166113035761063d816114f4565b826001600160a01b0316826001600160a01b03161461063d5761063d82826115a3565b61133083836115e7565b61133d6000848484611359565b61063d5760405162461bcd60e51b815260040161050790611c25565b60006001600160a01b0384163b1561144c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061139d903390899088908890600401611c77565b6020604051808303816000875af19250505080156113d8575060408051601f3d908101601f191682019092526113d591810190611cb4565b60015b611432573d808015611406576040519150601f19603f3d011682016040523d82523d6000602084013e61140b565b606091505b50805161142a5760405162461bcd60e51b815260040161050790611c25565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f51565b506001949350505050565b6000600161146484610aad565b61146e9190611bf6565b6000838152600760205260409020549091508082146114c1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061150690600190611bf6565b6000838152600960205260408120546008805493945090928490811061152e5761152e611be0565b90600052602060002001549050806008838154811061154f5761154f611be0565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061158757611587611cd1565b6001900381819060005260206000200160009055905550505050565b60006115ae83610aad565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661163d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610507565b6000818152600260205260409020546001600160a01b0316156116a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610507565b6116ae6000838361126e565b6001600160a01b03821660009081526003602052604081208054600192906116d7908490611c0d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461174190611aee565b90600052602060002090601f01602090048101928261176357600085556117a9565b82601f1061177c57805160ff19168380011785556117a9565b828001600101855582156117a9579182015b828111156117a957825182559160200191906001019061178e565b506117b59291506117b9565b5090565b5b808211156117b557600081556001016117ba565b6001600160e01b031981168114610da157600080fd5b6000602082840312156117f657600080fd5b8135611801816117ce565b9392505050565b6000815180845260005b8181101561182e57602081850181015186830182015201611812565b81811115611840576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006118016020830184611808565b60006020828403121561187a57600080fd5b5035919050565b80356001600160a01b038116811461189857600080fd5b919050565b600080604083850312156118b057600080fd5b6118b983611881565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118f8576118f86118c7565b604051601f8501601f19908116603f01168101908282118183101715611920576119206118c7565b8160405280935085815286868601111561193957600080fd5b858560208301376000602087830101525050509392505050565b6000806040838503121561196657600080fd5b823567ffffffffffffffff81111561197d57600080fd5b8301601f8101851361198e57600080fd5b61199d858235602084016118dd565b95602094909401359450505050565b6000602082840312156119be57600080fd5b61180182611881565b6000806000606084860312156119dc57600080fd5b6119e584611881565b92506119f360208501611881565b9150604084013590509250925092565b60008060408385031215611a1657600080fd5b611a1f83611881565b915060208301358015158114611a3457600080fd5b809150509250929050565b60008060008060808587031215611a5557600080fd5b611a5e85611881565b9350611a6c60208601611881565b925060408501359150606085013567ffffffffffffffff811115611a8f57600080fd5b8501601f81018713611aa057600080fd5b611aaf878235602084016118dd565b91505092959194509250565b60008060408385031215611ace57600080fd5b611ad783611881565b9150611ae560208401611881565b90509250929050565b600181811c90821680611b0257607f821691505b60208210811415611b2357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611b8857611b88611b5e565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600082821015611c0857611c08611b5e565b500390565b60008219821115611c2057611c20611b5e565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611caa90830184611808565b9695505050505050565b600060208284031215611cc657600080fd5b8151611801816117ce565b634e487b7160e01b600052603160045260246000fdfea264697066735822122072a297248ae9da2b08a2bfacc03955db4794dbe7860ccaa8eed7e88ddb1195a764736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000094241535f4152434153000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054152434153000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): BAS_ARCAS
Arg [1] : symbol (string): ARCAS
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 4241535f41524341530000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4152434153000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
53841:1260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46341:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;46341:224:0;;;;;;;;33161:100;;;:::i;:::-;;;;;;;:::i;34720:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1643:32:1;;;1625:51;;1613:2;1598:18;34720:221:0;1479:203:1;34243:411:0;;;;;;:::i;:::-;;:::i;:::-;;54458:258;;;;;;:::i;:::-;;:::i;46981:113::-;47069:10;:17;46981:113;;;3567:25:1;;;3555:2;3540:18;46981:113:0;3421:177:1;53986:40:0;;;;;;:::i;:::-;;;;;;;;;;;;;;53433:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;35470:339;;;;;;:::i;:::-;;:::i;53708:124::-;;;;;;:::i;:::-;;:::i;46649:256::-;;;;;;:::i;:::-;;:::i;54724:372::-;;;;;;:::i;:::-;;:::i;35880:185::-;;;;;;:::i;:::-;;:::i;47171:233::-;;;;;;:::i;:::-;;:::i;54080:23::-;;;;;;32855:239;;;;;;:::i;:::-;;:::i;32585:208::-;;;;;;:::i;:::-;;:::i;11757:103::-;;;:::i;11106:87::-;11179:6;;-1:-1:-1;;;;;11179:6:0;11106:87;;33330:104;;;:::i;35013:155::-;;;;;;:::i;:::-;;:::i;36136:328::-;;;;;;:::i;:::-;;:::i;54033:40::-;;;;;;:::i;:::-;;:::i;54305:145::-;;;;;;:::i;:::-;;:::i;35239:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;35360:25:0;;;35336:4;35360:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35239:164;12015:201;;;;;;:::i;:::-;;:::i;46341:224::-;46443:4;-1:-1:-1;;;;;;46467:50:0;;-1:-1:-1;;;46467:50:0;;:90;;;46521:36;46545:11;46521:23;:36::i;:::-;46460:97;46341:224;-1:-1:-1;;46341:224:0:o;33161:100::-;33215:13;33248:5;33241:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33161:100;:::o;34720:221::-;34796:7;38063:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38063:16:0;34816:73;;;;-1:-1:-1;;;34816:73:0;;6003:2:1;34816:73:0;;;5985:21:1;6042:2;6022:18;;;6015:30;6081:34;6061:18;;;6054:62;-1:-1:-1;;;6132:18:1;;;6125:42;6184:19;;34816:73:0;;;;;;;;;-1:-1:-1;34909:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34909:24:0;;34720:221::o;34243:411::-;34324:13;34340:23;34355:7;34340:14;:23::i;:::-;34324:39;;34388:5;-1:-1:-1;;;;;34382:11:0;:2;-1:-1:-1;;;;;34382:11:0;;;34374:57;;;;-1:-1:-1;;;34374:57:0;;6416:2:1;34374:57:0;;;6398:21:1;6455:2;6435:18;;;6428:30;6494:34;6474:18;;;6467:62;-1:-1:-1;;;6545:18:1;;;6538:31;6586:19;;34374:57:0;6214:397:1;34374:57:0;9910:10;-1:-1:-1;;;;;34466:21:0;;;;:62;;-1:-1:-1;34491:37:0;34508:5;9910:10;35239:164;:::i;34491:37::-;34444:168;;;;-1:-1:-1;;;34444:168:0;;6818:2:1;34444:168:0;;;6800:21:1;6857:2;6837:18;;;6830:30;6896:34;6876:18;;;6869:62;6967:26;6947:18;;;6940:54;7011:19;;34444:168:0;6616:420:1;34444:168:0;34625:21;34634:2;34638:7;34625:8;:21::i;:::-;34313:341;34243:411;;:::o;54458:258::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;54558:11:::1;;54549:5;:20;;54541:47;;;::::0;-1:-1:-1;;;54541:47:0;;7604:2:1;54541:47:0::1;::::0;::::1;7586:21:1::0;7643:2;7623:18;;;7616:30;-1:-1:-1;;;7662:18:1;;;7655:44;7716:18;;54541:47:0::1;7402:338:1::0;54541:47:0::1;54613:11;;54604:5;:20;54601:69;;;54643:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;54601:69;54683:16;::::0;;;:9:::1;:16;::::0;;;;;;;:23;;::::1;::::0;;::::1;::::0;::::1;:::i;35470:339::-:0;35665:41;9910:10;35698:7;35665:18;:41::i;:::-;35657:103;;;;-1:-1:-1;;;35657:103:0;;;;;;;:::i;:::-;35773:28;35783:4;35789:2;35793:7;35773:9;:28::i;53708:124::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53793:22:0;;;::::1;;::::0;;;:12:::1;:22;::::0;;;;:31;;-1:-1:-1;;53793:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53708:124::o;46649:256::-;46746:7;46782:23;46799:5;46782:16;:23::i;:::-;46774:5;:31;46766:87;;;;-1:-1:-1;;;46766:87:0;;8637:2:1;46766:87:0;;;8619:21:1;8676:2;8656:18;;;8649:30;8715:34;8695:18;;;8688:62;-1:-1:-1;;;8766:18:1;;;8759:41;8817:19;;46766:87:0;8435:407:1;46766:87:0;-1:-1:-1;;;;;;46871:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46649:256::o;54724:372::-;53636:10;53623:24;;;;:12;:24;;;;;;;;53615:65;;;;-1:-1:-1;;;53615:65:0;;9049:2:1;53615:65:0;;;9031:21:1;9088:2;9068:18;;;9061:30;9127;9107:18;;;9100:58;9175:18;;53615:65:0;8847:352:1;53615:65:0;54818:11:::1;;54810:5;:19;54802:46;;;::::0;-1:-1:-1;;;54802:46:0;;7604:2:1;54802:46:0::1;::::0;::::1;7586:21:1::0;7643:2;7623:18;;;7616:30;-1:-1:-1;;;7662:18:1;;;7655:44;7716:18;;54802:46:0::1;7402:338:1::0;54802:46:0::1;54883:9;54867:13;47069:10:::0;:17;;46981:113;54867:13:::1;:25;54859:51;;;::::0;-1:-1:-1;;;54859:51:0;;9406:2:1;54859:51:0::1;::::0;::::1;9388:21:1::0;9445:2;9425:18;;;9418:30;-1:-1:-1;;;9464:18:1;;;9457:43;9517:18;;54859:51:0::1;9204:337:1::0;54859:51:0::1;54921:12;54936:13;47069:10:::0;:17;;46981:113;54936:13:::1;54921:28;;54960:30;54970:10;54982:7;54960:9;:30::i;:::-;55001:20;::::0;;;:11:::1;:20;::::0;;;;;;;;:28;;;55047:39;;9748:25:1;;;9789:18;;;9782:34;;;-1:-1:-1;;;;;9852:32:1;;9832:18;;;9825:60;55047:39:0;;::::1;::::0;;;;9736:2:1;55047:39:0;;::::1;54789:307;54724:372:::0;;:::o;35880:185::-;36018:39;36035:4;36041:2;36045:7;36018:39;;;;;;;;;;;;:16;:39::i;47171:233::-;47246:7;47282:30;47069:10;:17;;46981:113;47282:30;47274:5;:38;47266:95;;;;-1:-1:-1;;;47266:95:0;;10098:2:1;47266:95:0;;;10080:21:1;10137:2;10117:18;;;10110:30;10176:34;10156:18;;;10149:62;-1:-1:-1;;;10227:18:1;;;10220:42;10279:19;;47266:95:0;9896:408:1;47266:95:0;47379:10;47390:5;47379:17;;;;;;;;:::i;:::-;;;;;;;;;47372:24;;47171:233;;;:::o;32855:239::-;32927:7;32963:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32963:16:0;32998:19;32990:73;;;;-1:-1:-1;;;32990:73:0;;10643:2:1;32990:73:0;;;10625:21:1;10682:2;10662:18;;;10655:30;10721:34;10701:18;;;10694:62;-1:-1:-1;;;10772:18:1;;;10765:39;10821:19;;32990:73:0;10441:405:1;32585:208:0;32657:7;-1:-1:-1;;;;;32685:19:0;;32677:74;;;;-1:-1:-1;;;32677:74:0;;11053:2:1;32677:74:0;;;11035:21:1;11092:2;11072:18;;;11065:30;11131:34;11111:18;;;11104:62;-1:-1:-1;;;11182:18:1;;;11175:40;11232:19;;32677:74:0;10851:406:1;32677:74:0;-1:-1:-1;;;;;;32769:16:0;;;;;:9;:16;;;;;;;32585:208::o;11757:103::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;11822:30:::1;11849:1;11822:18;:30::i;:::-;11757:103::o:0;33330:104::-;33386:13;33419:7;33412:14;;;;;:::i;35013:155::-;35108:52;9910:10;35141:8;35151;35108:18;:52::i;:::-;35013:155;;:::o;36136:328::-;36311:41;9910:10;36344:7;36311:18;:41::i;:::-;36303:103;;;;-1:-1:-1;;;36303:103:0;;;;;;;:::i;:::-;36417:39;36431:4;36437:2;36441:7;36450:5;36417:13;:39::i;:::-;36136:328;;;;:::o;54033:40::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54305:145::-;54409:31;54419:20;;;:11;:20;;;;;;;;;54409:31;;:9;:31;;;;;54402:38;;54366:13;;54409:31;54402:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54305:145;;;:::o;12015:201::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12104:22:0;::::1;12096:73;;;::::0;-1:-1:-1;;;12096:73:0;;11464:2:1;12096:73:0::1;::::0;::::1;11446:21:1::0;11503:2;11483:18;;;11476:30;11542:34;11522:18;;;11515:62;-1:-1:-1;;;11593:18:1;;;11586:36;11639:19;;12096:73:0::1;11262:402:1::0;12096:73:0::1;12180:28;12199:8;12180:18;:28::i;:::-;12015:201:::0;:::o;32216:305::-;32318:4;-1:-1:-1;;;;;;32355:40:0;;-1:-1:-1;;;32355:40:0;;:105;;-1:-1:-1;;;;;;;32412:48:0;;-1:-1:-1;;;32412:48:0;32355:105;:158;;;-1:-1:-1;;;;;;;;;;23999:40:0;;;32477:36;23890:157;42120:174;42195:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42195:29:0;-1:-1:-1;;;;;42195:29:0;;;;;;;;:24;;42249:23;42195:24;42249:14;:23::i;:::-;-1:-1:-1;;;;;42240:46:0;;;;;;;;;;;42120:174;;:::o;38268:348::-;38361:4;38063:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38063:16:0;38378:73;;;;-1:-1:-1;;;38378:73:0;;11871:2:1;38378:73:0;;;11853:21:1;11910:2;11890:18;;;11883:30;11949:34;11929:18;;;11922:62;-1:-1:-1;;;12000:18:1;;;11993:42;12052:19;;38378:73:0;11669:408:1;38378:73:0;38462:13;38478:23;38493:7;38478:14;:23::i;:::-;38462:39;;38531:5;-1:-1:-1;;;;;38520:16:0;:7;-1:-1:-1;;;;;38520:16:0;;:51;;;;38564:7;-1:-1:-1;;;;;38540:31:0;:20;38552:7;38540:11;:20::i;:::-;-1:-1:-1;;;;;38540:31:0;;38520:51;:87;;;-1:-1:-1;;;;;;35360:25:0;;;35336:4;35360:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38575:32;38512:96;38268:348;-1:-1:-1;;;;38268:348:0:o;41377:625::-;41536:4;-1:-1:-1;;;;;41509:31:0;:23;41524:7;41509:14;:23::i;:::-;-1:-1:-1;;;;;41509:31:0;;41501:81;;;;-1:-1:-1;;;41501:81:0;;12284:2:1;41501:81:0;;;12266:21:1;12323:2;12303:18;;;12296:30;12362:34;12342:18;;;12335:62;-1:-1:-1;;;12413:18:1;;;12406:35;12458:19;;41501:81:0;12082:401:1;41501:81:0;-1:-1:-1;;;;;41601:16:0;;41593:65;;;;-1:-1:-1;;;41593:65:0;;12690:2:1;41593:65:0;;;12672:21:1;12729:2;12709:18;;;12702:30;12768:34;12748:18;;;12741:62;-1:-1:-1;;;12819:18:1;;;12812:34;12863:19;;41593:65:0;12488:400:1;41593:65:0;41671:39;41692:4;41698:2;41702:7;41671:20;:39::i;:::-;41775:29;41792:1;41796:7;41775:8;:29::i;:::-;-1:-1:-1;;;;;41817:15:0;;;;;;:9;:15;;;;;:20;;41836:1;;41817:15;:20;;41836:1;;41817:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41848:13:0;;;;;;:9;:13;;;;;:18;;41865:1;;41848:13;:18;;41865:1;;41848:18;:::i;:::-;;;;-1:-1:-1;;41877:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41877:21:0;-1:-1:-1;;;;;41877:21:0;;;;;;;;;41916:27;;41877:16;;41916:27;;;;;;;34313:341;34243:411;;:::o;38958:110::-;39034:26;39044:2;39048:7;39034:26;;;;;;;;;;;;:9;:26::i;12376:191::-;12469:6;;;-1:-1:-1;;;;;12486:17:0;;;-1:-1:-1;;;;;;12486:17:0;;;;;;;12519:40;;12469:6;;;12486:17;12469:6;;12519:40;;12450:16;;12519:40;12439:128;12376:191;:::o;42436:315::-;42591:8;-1:-1:-1;;;;;42582:17:0;:5;-1:-1:-1;;;;;42582:17:0;;;42574:55;;;;-1:-1:-1;;;42574:55:0;;13358:2:1;42574:55:0;;;13340:21:1;13397:2;13377:18;;;13370:30;13436:27;13416:18;;;13409:55;13481:18;;42574:55:0;13156:349:1;42574:55:0;-1:-1:-1;;;;;42640:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42640:46:0;;;;;;;;;;42702:41;;540::1;;;42702::0;;513:18:1;42702:41:0;;;;;;;42436:315;;;:::o;37346:::-;37503:28;37513:4;37519:2;37523:7;37503:9;:28::i;:::-;37550:48;37573:4;37579:2;37583:7;37592:5;37550:22;:48::i;:::-;37542:111;;;;-1:-1:-1;;;37542:111:0;;;;;;;:::i;48017:589::-;-1:-1:-1;;;;;48223:18:0;;48219:187;;48258:40;48290:7;49433:10;:17;;49406:24;;;;:15;:24;;;;;:44;;;49461:24;;;;;;;;;;;;49329:164;48258:40;48219:187;;;48328:2;-1:-1:-1;;;;;48320:10:0;:4;-1:-1:-1;;;;;48320:10:0;;48316:90;;48347:47;48380:4;48386:7;48347:32;:47::i;:::-;-1:-1:-1;;;;;48420:16:0;;48416:183;;48453:45;48490:7;48453:36;:45::i;48416:183::-;48526:4;-1:-1:-1;;;;;48520:10:0;:2;-1:-1:-1;;;;;48520:10:0;;48516:83;;48547:40;48575:2;48579:7;48547:27;:40::i;39295:321::-;39425:18;39431:2;39435:7;39425:5;:18::i;:::-;39476:54;39507:1;39511:2;39515:7;39524:5;39476:22;:54::i;:::-;39454:154;;;;-1:-1:-1;;;39454:154:0;;;;;;;:::i;43316:799::-;43471:4;-1:-1:-1;;;;;43492:13:0;;14102:19;:23;43488:620;;43528:72;;-1:-1:-1;;;43528:72:0;;-1:-1:-1;;;;;43528:36:0;;;;;:72;;9910:10;;43579:4;;43585:7;;43594:5;;43528:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43528:72:0;;;;;;;;-1:-1:-1;;43528:72:0;;;;;;;;;;;;:::i;:::-;;;43524:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43770:13:0;;43766:272;;43813:60;;-1:-1:-1;;;43813:60:0;;;;;;;:::i;43766:272::-;43988:6;43982:13;43973:6;43969:2;43965:15;43958:38;43524:529;-1:-1:-1;;;;;;43651:51:0;-1:-1:-1;;;43651:51:0;;-1:-1:-1;43644:58:0;;43488:620;-1:-1:-1;44092:4:0;43316:799;;;;;;:::o;50120:988::-;50386:22;50436:1;50411:22;50428:4;50411:16;:22::i;:::-;:26;;;;:::i;:::-;50448:18;50469:26;;;:17;:26;;;;;;50386:51;;-1:-1:-1;50602:28:0;;;50598:328;;-1:-1:-1;;;;;50669:18:0;;50647:19;50669:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50720:30;;;;;;:44;;;50837:30;;:17;:30;;;;;:43;;;50598:328;-1:-1:-1;51022:26:0;;;;:17;:26;;;;;;;;51015:33;;;-1:-1:-1;;;;;51066:18:0;;;;;:12;:18;;;;;:34;;;;;;;51059:41;50120:988::o;51403:1079::-;51681:10;:17;51656:22;;51681:21;;51701:1;;51681:21;:::i;:::-;51713:18;51734:24;;;:15;:24;;;;;;52107:10;:26;;51656:46;;-1:-1:-1;51734:24:0;;51656:46;;52107:26;;;;;;:::i;:::-;;;;;;;;;52085:48;;52171:11;52146:10;52157;52146:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;52251:28;;;:15;:28;;;;;;;:41;;;52423:24;;;;;52416:31;52458:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51474:1008;;;51403:1079;:::o;48907:221::-;48992:14;49009:20;49026:2;49009:16;:20::i;:::-;-1:-1:-1;;;;;49040:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;49085:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48907:221:0:o;39952:439::-;-1:-1:-1;;;;;40032:16:0;;40024:61;;;;-1:-1:-1;;;40024:61:0;;15011:2:1;40024:61:0;;;14993:21:1;;;15030:18;;;15023:30;15089:34;15069:18;;;15062:62;15141:18;;40024:61:0;14809:356:1;40024:61:0;38039:4;38063:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38063:16:0;:30;40096:58;;;;-1:-1:-1;;;40096:58:0;;15372:2:1;40096:58:0;;;15354:21:1;15411:2;15391:18;;;15384:30;15450;15430:18;;;15423:58;15498:18;;40096:58:0;15170:352:1;40096:58:0;40167:45;40196:1;40200:2;40204:7;40167:20;:45::i;:::-;-1:-1:-1;;;;;40225:13:0;;;;;;:9;:13;;;;;:18;;40242:1;;40225:13;:18;;40242:1;;40225:18;:::i;:::-;;;;-1:-1:-1;;40254:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40254:21:0;-1:-1:-1;;;;;40254:21:0;;;;;;;;40293:33;;40254:16;;;40293:33;;40254:16;;40293:33;35013:155;;:::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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:472::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;914:6;911:1;908:13;905:87;;;980:1;973:4;964:6;959:3;955:16;951:27;944:38;905:87;-1:-1:-1;1046:2:1;1025:15;-1:-1:-1;;1021:29:1;1012:39;;;;1053:4;1008:50;;592:472;-1:-1:-1;;592:472:1:o;1069:220::-;1218:2;1207:9;1200:21;1181:4;1238:45;1279:2;1268:9;1264:18;1256:6;1238:45;:::i;1294:180::-;1353:6;1406:2;1394:9;1385:7;1381:23;1377:32;1374:52;;;1422:1;1419;1412:12;1374:52;-1:-1:-1;1445:23:1;;1294:180;-1:-1:-1;1294:180:1:o;1687:173::-;1755:20;;-1:-1:-1;;;;;1804:31:1;;1794:42;;1784:70;;1850:1;1847;1840:12;1784:70;1687:173;;;:::o;1865:254::-;1933:6;1941;1994:2;1982:9;1973:7;1969:23;1965:32;1962:52;;;2010:1;2007;2000:12;1962:52;2033:29;2052:9;2033:29;:::i;:::-;2023:39;2109:2;2094:18;;;;2081:32;;-1:-1:-1;;;1865:254:1:o;2124:127::-;2185:10;2180:3;2176:20;2173:1;2166:31;2216:4;2213:1;2206:15;2240:4;2237:1;2230:15;2256:632;2321:5;2351:18;2392:2;2384:6;2381:14;2378:40;;;2398:18;;:::i;:::-;2473:2;2467:9;2441:2;2527:15;;-1:-1:-1;;2523:24:1;;;2549:2;2519:33;2515:42;2503:55;;;2573:18;;;2593:22;;;2570:46;2567:72;;;2619:18;;:::i;:::-;2659:10;2655:2;2648:22;2688:6;2679:15;;2718:6;2710;2703:22;2758:3;2749:6;2744:3;2740:16;2737:25;2734:45;;;2775:1;2772;2765:12;2734:45;2825:6;2820:3;2813:4;2805:6;2801:17;2788:44;2880:1;2873:4;2864:6;2856;2852:19;2848:30;2841:41;;;;2256:632;;;;;:::o;2893:523::-;2971:6;2979;3032:2;3020:9;3011:7;3007:23;3003:32;3000:52;;;3048:1;3045;3038:12;3000:52;3088:9;3075:23;3121:18;3113:6;3110:30;3107:50;;;3153:1;3150;3143:12;3107:50;3176:22;;3229:4;3221:13;;3217:27;-1:-1:-1;3207:55:1;;3258:1;3255;3248:12;3207:55;3281:76;3349:7;3344:2;3331:16;3324:4;3320:2;3316:13;3281:76;:::i;:::-;3271:86;3404:4;3389:20;;;;3376:34;;-1:-1:-1;;;;2893:523:1:o;3603:186::-;3662:6;3715:2;3703:9;3694:7;3690:23;3686:32;3683:52;;;3731:1;3728;3721:12;3683:52;3754:29;3773:9;3754:29;:::i;3794:328::-;3871:6;3879;3887;3940:2;3928:9;3919:7;3915:23;3911:32;3908:52;;;3956:1;3953;3946:12;3908:52;3979:29;3998:9;3979:29;:::i;:::-;3969:39;;4027:38;4061:2;4050:9;4046:18;4027:38;:::i;:::-;4017:48;;4112:2;4101:9;4097:18;4084:32;4074:42;;3794:328;;;;;:::o;4127:347::-;4192:6;4200;4253:2;4241:9;4232:7;4228:23;4224:32;4221:52;;;4269:1;4266;4259:12;4221:52;4292:29;4311:9;4292:29;:::i;:::-;4282:39;;4371:2;4360:9;4356:18;4343:32;4418:5;4411:13;4404:21;4397:5;4394:32;4384:60;;4440:1;4437;4430:12;4384:60;4463:5;4453:15;;;4127:347;;;;;:::o;4479:667::-;4574:6;4582;4590;4598;4651:3;4639:9;4630:7;4626:23;4622:33;4619:53;;;4668:1;4665;4658:12;4619:53;4691:29;4710:9;4691:29;:::i;:::-;4681:39;;4739:38;4773:2;4762:9;4758:18;4739:38;:::i;:::-;4729:48;;4824:2;4813:9;4809:18;4796:32;4786:42;;4879:2;4868:9;4864:18;4851:32;4906:18;4898:6;4895:30;4892:50;;;4938:1;4935;4928:12;4892:50;4961:22;;5014:4;5006:13;;5002:27;-1:-1:-1;4992:55:1;;5043:1;5040;5033:12;4992:55;5066:74;5132:7;5127:2;5114:16;5109:2;5105;5101:11;5066:74;:::i;:::-;5056:84;;;4479:667;;;;;;;:::o;5151:260::-;5219:6;5227;5280:2;5268:9;5259:7;5255:23;5251:32;5248:52;;;5296:1;5293;5286:12;5248:52;5319:29;5338:9;5319:29;:::i;:::-;5309:39;;5367:38;5401:2;5390:9;5386:18;5367:38;:::i;:::-;5357:48;;5151:260;;;;;:::o;5416:380::-;5495:1;5491:12;;;;5538;;;5559:61;;5613:4;5605:6;5601:17;5591:27;;5559:61;5666:2;5658:6;5655:14;5635:18;5632:38;5629:161;;;5712:10;5707:3;5703:20;5700:1;5693:31;5747:4;5744:1;5737:15;5775:4;5772:1;5765:15;5629:161;;5416:380;;;:::o;7041:356::-;7243:2;7225:21;;;7262:18;;;7255:30;7321:34;7316:2;7301:18;;7294:62;7388:2;7373:18;;7041:356::o;7745:127::-;7806:10;7801:3;7797:20;7794:1;7787:31;7837:4;7834:1;7827:15;7861:4;7858:1;7851:15;7877:135;7916:3;-1:-1:-1;;7937:17:1;;7934:43;;;7957:18;;:::i;:::-;-1:-1:-1;8004:1:1;7993:13;;7877:135::o;8017:413::-;8219:2;8201:21;;;8258:2;8238:18;;;8231:30;8297:34;8292:2;8277:18;;8270:62;-1:-1:-1;;;8363:2:1;8348:18;;8341:47;8420:3;8405:19;;8017:413::o;10309:127::-;10370:10;10365:3;10361:20;10358:1;10351:31;10401:4;10398:1;10391:15;10425:4;10422:1;10415:15;12893:125;12933:4;12961:1;12958;12955:8;12952:34;;;12966:18;;:::i;:::-;-1:-1:-1;13003:9:1;;12893:125::o;13023:128::-;13063:3;13094:1;13090:6;13087:1;13084:13;13081:39;;;13100:18;;:::i;:::-;-1:-1:-1;13136:9:1;;13023:128::o;13510:414::-;13712:2;13694:21;;;13751:2;13731:18;;;13724:30;13790:34;13785:2;13770:18;;13763:62;-1:-1:-1;;;13856:2:1;13841:18;;13834:48;13914:3;13899:19;;13510:414::o;13929:489::-;-1:-1:-1;;;;;14198:15:1;;;14180:34;;14250:15;;14245:2;14230:18;;14223:43;14297:2;14282:18;;14275:34;;;14345:3;14340:2;14325:18;;14318:31;;;14123:4;;14366:46;;14392:19;;14384:6;14366:46;:::i;:::-;14358:54;13929:489;-1:-1:-1;;;;;;13929:489:1:o;14423:249::-;14492:6;14545:2;14533:9;14524:7;14520:23;14516:32;14513:52;;;14561:1;14558;14551:12;14513:52;14593:9;14587:16;14612:30;14636:5;14612:30;:::i;14677:127::-;14738:10;14733:3;14729:20;14726:1;14719:31;14769:4;14766:1;14759:15;14793:4;14790:1;14783:15
Swarm Source
ipfs://72a297248ae9da2b08a2bfacc03955db4794dbe7860ccaa8eed7e88ddb1195a7
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.