Overview
ETH Balance
0.00004 ETH
ETH Value
$0.07 (@ $1,792.49/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Multichain Info
No addresses found
Latest 8 from a total of 8 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint NFT | 1107303 | 397 days ago | IN | 0.000001 ETH | 0.00000002 | ||||
Mint NFT | 1107292 | 397 days ago | IN | 0.00002 ETH | 0 | ||||
Transfer From | 1104917 | 397 days ago | IN | 0 ETH | 0.00000003 | ||||
Mint NFT | 1102328 | 397 days ago | IN | 0.00001 ETH | 0.00000006 | ||||
Withdraw Funds | 1102278 | 397 days ago | IN | 0 ETH | 0.00000002 | ||||
Mint NFT | 1102211 | 397 days ago | IN | 0.00001 ETH | 0.00000005 | ||||
Withdraw Funds | 1102196 | 397 days ago | IN | 0 ETH | 0.00000002 | ||||
Mint NFT | 1102125 | 397 days ago | IN | 0.00001 ETH | 0.00000008 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
1102196 | 397 days ago | 0.00001 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Bulls
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at blastscan.io on 2024-03-21 */ // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ 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 subtraction of two unsigned integers, with an overflow flag. */ 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. */ 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. */ 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. */ 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 largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; 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_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @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 `IERC721Receiver.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 (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @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 (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; /** * @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); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; /** * @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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; /** * @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 v5.0.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.20; /** * @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}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint256 tokenId => address) private _owners; mapping(address owner => uint256) private _balances; mapping(uint256 tokenId => address) private _tokenApprovals; mapping(address owner => mapping(address operator => 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 returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @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 { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * 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 { _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); _checkOnERC721Received(address(0), to, tokenId, data); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal { address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(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 { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - 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) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. 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 */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } } // File: test.sol pragma solidity ^0.8.0; contract Bulls is ERC721, Ownable { constructor() ERC721("Bulls", "BULL") Ownable(msg.sender) { } uint256 public mintPrice = 0.00001 ether; address public creator; uint256 public totalMinted; function mintNFT() public payable { require(msg.value >= mintPrice, "Insufficient funds"); uint256 tokenId = totalMinted + 1; // Используем totalMinted вместо totalSupply() _safeMint(msg.sender, tokenId); totalMinted++; } function withdrawFunds() public onlyOwner { payable(creator).transfer(address(this).balance); } function setMintPrice(uint256 price) public onlyOwner { mintPrice = price; } function getTotalMinted() public view returns (uint256) { return totalMinted; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","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":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526509184e72a0006007553480156200001a575f80fd5b50336040518060400160405280600581526020017f42756c6c730000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42554c4c00000000000000000000000000000000000000000000000000000000815250815f90816200009891906200045f565b508060019081620000aa91906200045f565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000120575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000117919062000586565b60405180910390fd5b62000131816200013860201b60201c565b50620005a1565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200027757607f821691505b6020821081036200028d576200028c62000232565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002f17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b4565b620002fd8683620002b4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000347620003416200033b8462000315565b6200031e565b62000315565b9050919050565b5f819050919050565b620003628362000327565b6200037a62000371826200034e565b848454620002c0565b825550505050565b5f90565b6200039062000382565b6200039d81848462000357565b505050565b5b81811015620003c457620003b85f8262000386565b600181019050620003a3565b5050565b601f8211156200041357620003dd8162000293565b620003e884620002a5565b81016020851015620003f8578190505b620004106200040785620002a5565b830182620003a2565b50505b505050565b5f82821c905092915050565b5f620004355f198460080262000418565b1980831691505092915050565b5f6200044f838362000424565b9150826002028217905092915050565b6200046a82620001fb565b67ffffffffffffffff81111562000486576200048562000205565b5b6200049282546200025f565b6200049f828285620003c8565b5f60209050601f831160018114620004d5575f8415620004c0578287015190505b620004cc858262000442565b8655506200053b565b601f198416620004e58662000293565b5f5b828110156200050e57848901518255600182019150602085019450602081019050620004e7565b868310156200052e57848901516200052a601f89168262000424565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200056e8262000543565b9050919050565b620005808162000562565b82525050565b5f6020820190506200059b5f83018462000575565b92915050565b6123bd80620005af5f395ff3fe60806040526004361061013f575f3560e01c80636817c76c116100b5578063a2309ff81161006e578063a2309ff814610405578063b88d4fde1461042f578063c87b56dd14610457578063e985e9c514610493578063f2fde38b146104cf578063f4a0a528146104f75761013f565b80636817c76c1461030d57806370a0823114610337578063715018a6146103735780638da5cb5b1461038957806395d89b41146103b3578063a22cb465146103dd5761013f565b80630ca1c5c9116101075780630ca1c5c91461023757806314f710fe1461026157806323b872dd1461026b57806324600fc31461029357806342842e0e146102a95780636352211e146102d15761013f565b806301ffc9a71461014357806302d05d3f1461017f57806306fdde03146101a9578063081812fc146101d3578063095ea7b31461020f575b5f80fd5b34801561014e575f80fd5b5061016960048036038101906101649190611b3f565b61051f565b6040516101769190611b84565b60405180910390f35b34801561018a575f80fd5b50610193610600565b6040516101a09190611bdc565b60405180910390f35b3480156101b4575f80fd5b506101bd610625565b6040516101ca9190611c7f565b60405180910390f35b3480156101de575f80fd5b506101f960048036038101906101f49190611cd2565b6106b4565b6040516102069190611bdc565b60405180910390f35b34801561021a575f80fd5b5061023560048036038101906102309190611d27565b6106cf565b005b348015610242575f80fd5b5061024b6106e5565b6040516102589190611d74565b60405180910390f35b6102696106ee565b005b348015610276575f80fd5b50610291600480360381019061028c9190611d8d565b610769565b005b34801561029e575f80fd5b506102a7610868565b005b3480156102b4575f80fd5b506102cf60048036038101906102ca9190611d8d565b6108d7565b005b3480156102dc575f80fd5b506102f760048036038101906102f29190611cd2565b6108f6565b6040516103049190611bdc565b60405180910390f35b348015610318575f80fd5b50610321610907565b60405161032e9190611d74565b60405180910390f35b348015610342575f80fd5b5061035d60048036038101906103589190611ddd565b61090d565b60405161036a9190611d74565b60405180910390f35b34801561037e575f80fd5b506103876109c3565b005b348015610394575f80fd5b5061039d6109d6565b6040516103aa9190611bdc565b60405180910390f35b3480156103be575f80fd5b506103c76109fe565b6040516103d49190611c7f565b60405180910390f35b3480156103e8575f80fd5b5061040360048036038101906103fe9190611e32565b610a8e565b005b348015610410575f80fd5b50610419610aa4565b6040516104269190611d74565b60405180910390f35b34801561043a575f80fd5b5061045560048036038101906104509190611f9c565b610aaa565b005b348015610462575f80fd5b5061047d60048036038101906104789190611cd2565b610ac7565b60405161048a9190611c7f565b60405180910390f35b34801561049e575f80fd5b506104b960048036038101906104b4919061201c565b610b2d565b6040516104c69190611b84565b60405180910390f35b3480156104da575f80fd5b506104f560048036038101906104f09190611ddd565b610bbb565b005b348015610502575f80fd5b5061051d60048036038101906105189190611cd2565b610c3f565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f957506105f882610c51565b5b9050919050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60605f805461063390612087565b80601f016020809104026020016040519081016040528092919081815260200182805461065f90612087565b80156106aa5780601f10610681576101008083540402835291602001916106aa565b820191905f5260205f20905b81548152906001019060200180831161068d57829003601f168201915b5050505050905090565b5f6106be82610cba565b506106c882610d40565b9050919050565b6106e182826106dc610d79565b610d80565b5050565b5f600954905090565b600754341015610733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072a90612101565b60405180910390fd5b5f6001600954610743919061214c565b905061074f3382610d92565b60095f8154809291906107619061217f565b919050555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d9575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016107d09190611bdc565b60405180910390fd5b5f6107ec83836107e7610d79565b610daf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610862578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610859939291906121c6565b60405180910390fd5b50505050565b610870610fba565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156108d4573d5f803e3d5ffd5b50565b6108f183838360405180602001604052805f815250610aaa565b505050565b5f61090082610cba565b9050919050565b60075481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097e575f6040517f89c62b640000000000000000000000000000000000000000000000000000000081526004016109759190611bdc565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109cb610fba565b6109d45f611041565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a0d90612087565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3990612087565b8015610a845780601f10610a5b57610100808354040283529160200191610a84565b820191905f5260205f20905b815481529060010190602001808311610a6757829003601f168201915b5050505050905090565b610aa0610a99610d79565b8383611104565b5050565b60095481565b610ab5848484610769565b610ac18484848461126d565b50505050565b6060610ad282610cba565b505f610adc61141f565b90505f815111610afa5760405180602001604052805f815250610b25565b80610b0484611435565b604051602001610b15929190612235565b6040516020818303038152906040525b915050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b610bc3610fba565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c33575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c2a9190611bdc565b60405180910390fd5b610c3c81611041565b50565b610c47610fba565b8060078190555050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f80610cc5836114ff565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3757826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401610d2e9190611d74565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b610d8d8383836001611538565b505050565b610dab828260405180602001604052805f8152506116f7565b5050565b5f80610dba846114ff565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610dfb57610dfa818486611712565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e8657610e3a5f855f80611538565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610f0557600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b610fc2610d79565b73ffffffffffffffffffffffffffffffffffffffff16610fe06109d6565b73ffffffffffffffffffffffffffffffffffffffff161461103f57611003610d79565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110369190611bdc565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117457816040517f5b08ba1800000000000000000000000000000000000000000000000000000000815260040161116b9190611bdc565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112609190611b84565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115611419578273ffffffffffffffffffffffffffffffffffffffff1663150b7a026112b0610d79565b8685856040518563ffffffff1660e01b81526004016112d294939291906122aa565b6020604051808303815f875af192505050801561130d57506040513d601f19601f8201168201806040525081019061130a9190612308565b60015b61138e573d805f811461133b576040519150601f19603f3d011682016040523d82523d5f602084013e611340565b606091505b505f81510361138657836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161137d9190611bdc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461141757836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161140e9190611bdc565b60405180910390fd5b505b50505050565b606060405180602001604052805f815250905090565b60605f6001611443846117d5565b0190505f8167ffffffffffffffff81111561146157611460611e78565b5b6040519080825280601f01601f1916602001820160405280156114935781602001600182028036833780820191505090505b5090505f82602001820190505b6001156114f4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816114e9576114e8612333565b5b0494505f85036114a0575b819350505050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061157057505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156116a2575f61157f84610cba565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115e957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156115fc57506115fa8184610b2d565b155b1561163e57826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016116359190611bdc565b60405180910390fd5b81156116a057838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b6117018383611926565b61170d5f84848461126d565b505050565b61171d838383611a19565b6117d0575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361179157806040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016117889190611d74565b60405180910390fd5b81816040517f177e802f0000000000000000000000000000000000000000000000000000000081526004016117c7929190612360565b60405180910390fd5b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611831577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161182757611826612333565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061186e576d04ee2d6d415b85acef8100000000838161186457611863612333565b5b0492506020810190505b662386f26fc10000831061189d57662386f26fc10000838161189357611892612333565b5b0492506010810190505b6305f5e10083106118c6576305f5e10083816118bc576118bb612333565b5b0492506008810190505b61271083106118eb5761271083816118e1576118e0612333565b5b0492506004810190505b6064831061190e576064838161190457611903612333565b5b0492506002810190505b600a831061191d576001810190505b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611996575f6040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161198d9190611bdc565b60405180910390fd5b5f6119a283835f610daf565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a14575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401611a0b9190611bdc565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ad057508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a915750611a908484610b2d565b5b80611acf57508273ffffffffffffffffffffffffffffffffffffffff16611ab783610d40565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b1e81611aea565b8114611b28575f80fd5b50565b5f81359050611b3981611b15565b92915050565b5f60208284031215611b5457611b53611ae2565b5b5f611b6184828501611b2b565b91505092915050565b5f8115159050919050565b611b7e81611b6a565b82525050565b5f602082019050611b975f830184611b75565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611bc682611b9d565b9050919050565b611bd681611bbc565b82525050565b5f602082019050611bef5f830184611bcd565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c2c578082015181840152602081019050611c11565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c5182611bf5565b611c5b8185611bff565b9350611c6b818560208601611c0f565b611c7481611c37565b840191505092915050565b5f6020820190508181035f830152611c978184611c47565b905092915050565b5f819050919050565b611cb181611c9f565b8114611cbb575f80fd5b50565b5f81359050611ccc81611ca8565b92915050565b5f60208284031215611ce757611ce6611ae2565b5b5f611cf484828501611cbe565b91505092915050565b611d0681611bbc565b8114611d10575f80fd5b50565b5f81359050611d2181611cfd565b92915050565b5f8060408385031215611d3d57611d3c611ae2565b5b5f611d4a85828601611d13565b9250506020611d5b85828601611cbe565b9150509250929050565b611d6e81611c9f565b82525050565b5f602082019050611d875f830184611d65565b92915050565b5f805f60608486031215611da457611da3611ae2565b5b5f611db186828701611d13565b9350506020611dc286828701611d13565b9250506040611dd386828701611cbe565b9150509250925092565b5f60208284031215611df257611df1611ae2565b5b5f611dff84828501611d13565b91505092915050565b611e1181611b6a565b8114611e1b575f80fd5b50565b5f81359050611e2c81611e08565b92915050565b5f8060408385031215611e4857611e47611ae2565b5b5f611e5585828601611d13565b9250506020611e6685828601611e1e565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611eae82611c37565b810181811067ffffffffffffffff82111715611ecd57611ecc611e78565b5b80604052505050565b5f611edf611ad9565b9050611eeb8282611ea5565b919050565b5f67ffffffffffffffff821115611f0a57611f09611e78565b5b611f1382611c37565b9050602081019050919050565b828183375f83830152505050565b5f611f40611f3b84611ef0565b611ed6565b905082815260208101848484011115611f5c57611f5b611e74565b5b611f67848285611f20565b509392505050565b5f82601f830112611f8357611f82611e70565b5b8135611f93848260208601611f2e565b91505092915050565b5f805f8060808587031215611fb457611fb3611ae2565b5b5f611fc187828801611d13565b9450506020611fd287828801611d13565b9350506040611fe387828801611cbe565b925050606085013567ffffffffffffffff81111561200457612003611ae6565b5b61201087828801611f6f565b91505092959194509250565b5f806040838503121561203257612031611ae2565b5b5f61203f85828601611d13565b925050602061205085828601611d13565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061209e57607f821691505b6020821081036120b1576120b061205a565b5b50919050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f6120eb601283611bff565b91506120f6826120b7565b602082019050919050565b5f6020820190508181035f830152612118816120df565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61215682611c9f565b915061216183611c9f565b92508282019050808211156121795761217861211f565b5b92915050565b5f61218982611c9f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036121bb576121ba61211f565b5b600182019050919050565b5f6060820190506121d95f830186611bcd565b6121e66020830185611d65565b6121f36040830184611bcd565b949350505050565b5f81905092915050565b5f61220f82611bf5565b61221981856121fb565b9350612229818560208601611c0f565b80840191505092915050565b5f6122408285612205565b915061224c8284612205565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f61227c82612258565b6122868185612262565b9350612296818560208601611c0f565b61229f81611c37565b840191505092915050565b5f6080820190506122bd5f830187611bcd565b6122ca6020830186611bcd565b6122d76040830185611d65565b81810360608301526122e98184612272565b905095945050505050565b5f8151905061230281611b15565b92915050565b5f6020828403121561231d5761231c611ae2565b5b5f61232a848285016122f4565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6040820190506123735f830185611bcd565b6123806020830184611d65565b939250505056fea26469706673582212200ef04f5743500eb32f3fcdf778c962300b8b51e1a6b8c032f91575b0e5322e5a64736f6c63430008180033
Deployed Bytecode
0x60806040526004361061013f575f3560e01c80636817c76c116100b5578063a2309ff81161006e578063a2309ff814610405578063b88d4fde1461042f578063c87b56dd14610457578063e985e9c514610493578063f2fde38b146104cf578063f4a0a528146104f75761013f565b80636817c76c1461030d57806370a0823114610337578063715018a6146103735780638da5cb5b1461038957806395d89b41146103b3578063a22cb465146103dd5761013f565b80630ca1c5c9116101075780630ca1c5c91461023757806314f710fe1461026157806323b872dd1461026b57806324600fc31461029357806342842e0e146102a95780636352211e146102d15761013f565b806301ffc9a71461014357806302d05d3f1461017f57806306fdde03146101a9578063081812fc146101d3578063095ea7b31461020f575b5f80fd5b34801561014e575f80fd5b5061016960048036038101906101649190611b3f565b61051f565b6040516101769190611b84565b60405180910390f35b34801561018a575f80fd5b50610193610600565b6040516101a09190611bdc565b60405180910390f35b3480156101b4575f80fd5b506101bd610625565b6040516101ca9190611c7f565b60405180910390f35b3480156101de575f80fd5b506101f960048036038101906101f49190611cd2565b6106b4565b6040516102069190611bdc565b60405180910390f35b34801561021a575f80fd5b5061023560048036038101906102309190611d27565b6106cf565b005b348015610242575f80fd5b5061024b6106e5565b6040516102589190611d74565b60405180910390f35b6102696106ee565b005b348015610276575f80fd5b50610291600480360381019061028c9190611d8d565b610769565b005b34801561029e575f80fd5b506102a7610868565b005b3480156102b4575f80fd5b506102cf60048036038101906102ca9190611d8d565b6108d7565b005b3480156102dc575f80fd5b506102f760048036038101906102f29190611cd2565b6108f6565b6040516103049190611bdc565b60405180910390f35b348015610318575f80fd5b50610321610907565b60405161032e9190611d74565b60405180910390f35b348015610342575f80fd5b5061035d60048036038101906103589190611ddd565b61090d565b60405161036a9190611d74565b60405180910390f35b34801561037e575f80fd5b506103876109c3565b005b348015610394575f80fd5b5061039d6109d6565b6040516103aa9190611bdc565b60405180910390f35b3480156103be575f80fd5b506103c76109fe565b6040516103d49190611c7f565b60405180910390f35b3480156103e8575f80fd5b5061040360048036038101906103fe9190611e32565b610a8e565b005b348015610410575f80fd5b50610419610aa4565b6040516104269190611d74565b60405180910390f35b34801561043a575f80fd5b5061045560048036038101906104509190611f9c565b610aaa565b005b348015610462575f80fd5b5061047d60048036038101906104789190611cd2565b610ac7565b60405161048a9190611c7f565b60405180910390f35b34801561049e575f80fd5b506104b960048036038101906104b4919061201c565b610b2d565b6040516104c69190611b84565b60405180910390f35b3480156104da575f80fd5b506104f560048036038101906104f09190611ddd565b610bbb565b005b348015610502575f80fd5b5061051d60048036038101906105189190611cd2565b610c3f565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f957506105f882610c51565b5b9050919050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60605f805461063390612087565b80601f016020809104026020016040519081016040528092919081815260200182805461065f90612087565b80156106aa5780601f10610681576101008083540402835291602001916106aa565b820191905f5260205f20905b81548152906001019060200180831161068d57829003601f168201915b5050505050905090565b5f6106be82610cba565b506106c882610d40565b9050919050565b6106e182826106dc610d79565b610d80565b5050565b5f600954905090565b600754341015610733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072a90612101565b60405180910390fd5b5f6001600954610743919061214c565b905061074f3382610d92565b60095f8154809291906107619061217f565b919050555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d9575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016107d09190611bdc565b60405180910390fd5b5f6107ec83836107e7610d79565b610daf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610862578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610859939291906121c6565b60405180910390fd5b50505050565b610870610fba565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156108d4573d5f803e3d5ffd5b50565b6108f183838360405180602001604052805f815250610aaa565b505050565b5f61090082610cba565b9050919050565b60075481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097e575f6040517f89c62b640000000000000000000000000000000000000000000000000000000081526004016109759190611bdc565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109cb610fba565b6109d45f611041565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a0d90612087565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3990612087565b8015610a845780601f10610a5b57610100808354040283529160200191610a84565b820191905f5260205f20905b815481529060010190602001808311610a6757829003601f168201915b5050505050905090565b610aa0610a99610d79565b8383611104565b5050565b60095481565b610ab5848484610769565b610ac18484848461126d565b50505050565b6060610ad282610cba565b505f610adc61141f565b90505f815111610afa5760405180602001604052805f815250610b25565b80610b0484611435565b604051602001610b15929190612235565b6040516020818303038152906040525b915050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b610bc3610fba565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c33575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c2a9190611bdc565b60405180910390fd5b610c3c81611041565b50565b610c47610fba565b8060078190555050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f80610cc5836114ff565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3757826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401610d2e9190611d74565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b610d8d8383836001611538565b505050565b610dab828260405180602001604052805f8152506116f7565b5050565b5f80610dba846114ff565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610dfb57610dfa818486611712565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e8657610e3a5f855f80611538565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610f0557600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b610fc2610d79565b73ffffffffffffffffffffffffffffffffffffffff16610fe06109d6565b73ffffffffffffffffffffffffffffffffffffffff161461103f57611003610d79565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110369190611bdc565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117457816040517f5b08ba1800000000000000000000000000000000000000000000000000000000815260040161116b9190611bdc565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112609190611b84565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115611419578273ffffffffffffffffffffffffffffffffffffffff1663150b7a026112b0610d79565b8685856040518563ffffffff1660e01b81526004016112d294939291906122aa565b6020604051808303815f875af192505050801561130d57506040513d601f19601f8201168201806040525081019061130a9190612308565b60015b61138e573d805f811461133b576040519150601f19603f3d011682016040523d82523d5f602084013e611340565b606091505b505f81510361138657836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161137d9190611bdc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461141757836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161140e9190611bdc565b60405180910390fd5b505b50505050565b606060405180602001604052805f815250905090565b60605f6001611443846117d5565b0190505f8167ffffffffffffffff81111561146157611460611e78565b5b6040519080825280601f01601f1916602001820160405280156114935781602001600182028036833780820191505090505b5090505f82602001820190505b6001156114f4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816114e9576114e8612333565b5b0494505f85036114a0575b819350505050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061157057505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156116a2575f61157f84610cba565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115e957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156115fc57506115fa8184610b2d565b155b1561163e57826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016116359190611bdc565b60405180910390fd5b81156116a057838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b6117018383611926565b61170d5f84848461126d565b505050565b61171d838383611a19565b6117d0575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361179157806040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016117889190611d74565b60405180910390fd5b81816040517f177e802f0000000000000000000000000000000000000000000000000000000081526004016117c7929190612360565b60405180910390fd5b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611831577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161182757611826612333565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061186e576d04ee2d6d415b85acef8100000000838161186457611863612333565b5b0492506020810190505b662386f26fc10000831061189d57662386f26fc10000838161189357611892612333565b5b0492506010810190505b6305f5e10083106118c6576305f5e10083816118bc576118bb612333565b5b0492506008810190505b61271083106118eb5761271083816118e1576118e0612333565b5b0492506004810190505b6064831061190e576064838161190457611903612333565b5b0492506002810190505b600a831061191d576001810190505b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611996575f6040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161198d9190611bdc565b60405180910390fd5b5f6119a283835f610daf565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a14575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401611a0b9190611bdc565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ad057508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a915750611a908484610b2d565b5b80611acf57508273ffffffffffffffffffffffffffffffffffffffff16611ab783610d40565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b1e81611aea565b8114611b28575f80fd5b50565b5f81359050611b3981611b15565b92915050565b5f60208284031215611b5457611b53611ae2565b5b5f611b6184828501611b2b565b91505092915050565b5f8115159050919050565b611b7e81611b6a565b82525050565b5f602082019050611b975f830184611b75565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611bc682611b9d565b9050919050565b611bd681611bbc565b82525050565b5f602082019050611bef5f830184611bcd565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c2c578082015181840152602081019050611c11565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c5182611bf5565b611c5b8185611bff565b9350611c6b818560208601611c0f565b611c7481611c37565b840191505092915050565b5f6020820190508181035f830152611c978184611c47565b905092915050565b5f819050919050565b611cb181611c9f565b8114611cbb575f80fd5b50565b5f81359050611ccc81611ca8565b92915050565b5f60208284031215611ce757611ce6611ae2565b5b5f611cf484828501611cbe565b91505092915050565b611d0681611bbc565b8114611d10575f80fd5b50565b5f81359050611d2181611cfd565b92915050565b5f8060408385031215611d3d57611d3c611ae2565b5b5f611d4a85828601611d13565b9250506020611d5b85828601611cbe565b9150509250929050565b611d6e81611c9f565b82525050565b5f602082019050611d875f830184611d65565b92915050565b5f805f60608486031215611da457611da3611ae2565b5b5f611db186828701611d13565b9350506020611dc286828701611d13565b9250506040611dd386828701611cbe565b9150509250925092565b5f60208284031215611df257611df1611ae2565b5b5f611dff84828501611d13565b91505092915050565b611e1181611b6a565b8114611e1b575f80fd5b50565b5f81359050611e2c81611e08565b92915050565b5f8060408385031215611e4857611e47611ae2565b5b5f611e5585828601611d13565b9250506020611e6685828601611e1e565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611eae82611c37565b810181811067ffffffffffffffff82111715611ecd57611ecc611e78565b5b80604052505050565b5f611edf611ad9565b9050611eeb8282611ea5565b919050565b5f67ffffffffffffffff821115611f0a57611f09611e78565b5b611f1382611c37565b9050602081019050919050565b828183375f83830152505050565b5f611f40611f3b84611ef0565b611ed6565b905082815260208101848484011115611f5c57611f5b611e74565b5b611f67848285611f20565b509392505050565b5f82601f830112611f8357611f82611e70565b5b8135611f93848260208601611f2e565b91505092915050565b5f805f8060808587031215611fb457611fb3611ae2565b5b5f611fc187828801611d13565b9450506020611fd287828801611d13565b9350506040611fe387828801611cbe565b925050606085013567ffffffffffffffff81111561200457612003611ae6565b5b61201087828801611f6f565b91505092959194509250565b5f806040838503121561203257612031611ae2565b5b5f61203f85828601611d13565b925050602061205085828601611d13565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061209e57607f821691505b6020821081036120b1576120b061205a565b5b50919050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f6120eb601283611bff565b91506120f6826120b7565b602082019050919050565b5f6020820190508181035f830152612118816120df565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61215682611c9f565b915061216183611c9f565b92508282019050808211156121795761217861211f565b5b92915050565b5f61218982611c9f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036121bb576121ba61211f565b5b600182019050919050565b5f6060820190506121d95f830186611bcd565b6121e66020830185611d65565b6121f36040830184611bcd565b949350505050565b5f81905092915050565b5f61220f82611bf5565b61221981856121fb565b9350612229818560208601611c0f565b80840191505092915050565b5f6122408285612205565b915061224c8284612205565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f61227c82612258565b6122868185612262565b9350612296818560208601611c0f565b61229f81611c37565b840191505092915050565b5f6080820190506122bd5f830187611bcd565b6122ca6020830186611bcd565b6122d76040830185611d65565b81810360608301526122e98184612272565b905095945050505050565b5f8151905061230281611b15565b92915050565b5f6020828403121561231d5761231c611ae2565b5b5f61232a848285016122f4565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6040820190506123735f830185611bcd565b6123806020830184611d65565b939250505056fea26469706673582212200ef04f5743500eb32f3fcdf778c962300b8b51e1a6b8c032f91575b0e5322e5a64736f6c63430008180033
Deployed Bytecode Sourcemap
57686:811:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41051:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57846:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41882:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43054:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42873:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58401:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57912:264;;;:::i;:::-;;43723:588;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58186:109;;;;;;;;;;;;;:::i;:::-;;44382:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41695:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57799:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41420:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30179:103;;;;;;;;;;;;;:::i;:::-;;29504:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42042:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43284:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57875:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44587:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42208:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43501:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30437:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58303:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41051:305;41153:4;41205:25;41190:40;;;:11;:40;;;;:105;;;;41262:33;41247:48;;;:11;:48;;;;41190:105;:158;;;;41312:36;41336:11;41312:23;:36::i;:::-;41190:158;41170:178;;41051:305;;;:::o;57846:22::-;;;;;;;;;;;;;:::o;41882:91::-;41927:13;41960:5;41953:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41882:91;:::o;43054:158::-;43121:7;43141:22;43155:7;43141:13;:22::i;:::-;;43183:21;43196:7;43183:12;:21::i;:::-;43176:28;;43054:158;;;:::o;42873:115::-;42945:35;42954:2;42958:7;42967:12;:10;:12::i;:::-;42945:8;:35::i;:::-;42873:115;;:::o;58401:93::-;58448:7;58475:11;;58468:18;;58401:93;:::o;57912:264::-;57974:9;;57961;:22;;57953:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;58015:15;58047:1;58033:11;;:15;;;;:::i;:::-;58015:33;;58118:30;58128:10;58140:7;58118:9;:30::i;:::-;58155:11;;:13;;;;;;;;;:::i;:::-;;;;;;57946:230;57912:264::o;43723:588::-;43832:1;43818:16;;:2;:16;;;43814:89;;43888:1;43858:33;;;;;;;;;;;:::i;:::-;;;;;;;;43814:89;44124:21;44148:34;44156:2;44160:7;44169:12;:10;:12::i;:::-;44148:7;:34::i;:::-;44124:58;;44214:4;44197:21;;:13;:21;;;44193:111;;44263:4;44269:7;44278:13;44242:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;44193:111;43803:508;43723:588;;;:::o;58186:109::-;29390:13;:11;:13::i;:::-;58247:7:::1;;;;;;;;;;;58239:25;;:48;58265:21;58239:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58186:109::o:0;44382:134::-;44469:39;44486:4;44492:2;44496:7;44469:39;;;;;;;;;;;;:16;:39::i;:::-;44382:134;;;:::o;41695:120::-;41758:7;41785:22;41799:7;41785:13;:22::i;:::-;41778:29;;41695:120;;;:::o;57799:40::-;;;;:::o;41420:213::-;41483:7;41524:1;41507:19;;:5;:19;;;41503:89;;41577:1;41550:30;;;;;;;;;;;:::i;:::-;;;;;;;;41503:89;41609:9;:16;41619:5;41609:16;;;;;;;;;;;;;;;;41602:23;;41420:213;;;:::o;30179:103::-;29390:13;:11;:13::i;:::-;30244:30:::1;30271:1;30244:18;:30::i;:::-;30179:103::o:0;29504:87::-;29550:7;29577:6;;;;;;;;;;;29570:13;;29504:87;:::o;42042:95::-;42089:13;42122:7;42115:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42042:95;:::o;43284:146::-;43370:52;43389:12;:10;:12::i;:::-;43403:8;43413;43370:18;:52::i;:::-;43284:146;;:::o;57875:26::-;;;;:::o;44587:211::-;44701:31;44714:4;44720:2;44724:7;44701:12;:31::i;:::-;44743:47;44766:4;44772:2;44776:7;44785:4;44743:22;:47::i;:::-;44587:211;;;;:::o;42208:260::-;42272:13;42298:22;42312:7;42298:13;:22::i;:::-;;42333:21;42357:10;:8;:10::i;:::-;42333:34;;42409:1;42391:7;42385:21;:25;:75;;;;;;;;;;;;;;;;;42427:7;42436:18;:7;:16;:18::i;:::-;42413:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42385:75;42378:82;;;42208:260;;;:::o;43501:155::-;43589:4;43613:18;:25;43632:5;43613:25;;;;;;;;;;;;;;;:35;43639:8;43613:35;;;;;;;;;;;;;;;;;;;;;;;;;43606:42;;43501:155;;;;:::o;30437:220::-;29390:13;:11;:13::i;:::-;30542:1:::1;30522:22;;:8;:22;;::::0;30518:93:::1;;30596:1;30568:31;;;;;;;;;;;:::i;:::-;;;;;;;;30518:93;30621:28;30640:8;30621:18;:28::i;:::-;30437:220:::0;:::o;58303:90::-;29390:13;:11;:13::i;:::-;58380:5:::1;58368:9;:17;;;;58303:90:::0;:::o;33792:148::-;33868:4;33907:25;33892:40;;;:11;:40;;;;33885:47;;33792:148;;;:::o;56029:247::-;56092:7;56112:13;56128:17;56137:7;56128:8;:17::i;:::-;56112:33;;56177:1;56160:19;;:5;:19;;;56156:90;;56226:7;56203:31;;;;;;;;;;;:::i;:::-;;;;;;;;56156:90;56263:5;56256:12;;;56029:247;;;:::o;45560:129::-;45630:7;45657:15;:24;45673:7;45657:24;;;;;;;;;;;;;;;;;;;;;45650:31;;45560:129;;;:::o;27513:98::-;27566:7;27593:10;27586:17;;27513:98;:::o;54261:122::-;54342:33;54351:2;54355:7;54364:4;54370;54342:8;:33::i;:::-;54261:122;;;:::o;50380:102::-;50448:26;50458:2;50462:7;50448:26;;;;;;;;;;;;:9;:26::i;:::-;50380:102;;:::o;48522:824::-;48608:7;48628:12;48643:17;48652:7;48643:8;:17::i;:::-;48628:32;;48739:1;48723:18;;:4;:18;;;48719:88;;48758:37;48775:4;48781;48787:7;48758:16;:37::i;:::-;48719:88;48870:1;48854:18;;:4;:18;;;48850:263;;48972:48;48989:1;48993:7;49010:1;49014:5;48972:8;:48::i;:::-;49085:1;49066:9;:15;49076:4;49066:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;48850:263;49143:1;49129:16;;:2;:16;;;49125:111;;49208:1;49191:9;:13;49201:2;49191:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49125:111;49267:2;49248:7;:16;49256:7;49248:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49306:7;49302:2;49287:27;;49296:4;49287:27;;;;;;;;;;;;49334:4;49327:11;;;48522:824;;;;;:::o;29669:166::-;29740:12;:10;:12::i;:::-;29729:23;;:7;:5;:7::i;:::-;:23;;;29725:103;;29803:12;:10;:12::i;:::-;29776:40;;;;;;;;;;;:::i;:::-;;;;;;;;29725:103;29669:166::o;30817:191::-;30891:16;30910:6;;;;;;;;;;;30891:25;;30936:8;30927:6;;:17;;;;;;;;;;;;;;;;;;30991:8;30960:40;;30981:8;30960:40;;;;;;;;;;;;30880:128;30817:191;:::o;55468:318::-;55596:1;55576:22;;:8;:22;;;55572:93;;55644:8;55622:31;;;;;;;;;;;:::i;:::-;;;;;;;;55572:93;55713:8;55675:18;:25;55694:5;55675:25;;;;;;;;;;;;;;;:35;55701:8;55675:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;55759:8;55737:41;;55752:5;55737:41;;;55769:8;55737:41;;;;;;:::i;:::-;;;;;;;;55468:318;;;:::o;56826:799::-;56960:1;56943:2;:14;;;:18;56939:679;;;56998:2;56982:36;;;57019:12;:10;:12::i;:::-;57033:4;57039:7;57048:4;56982:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56978:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57313:1;57296:6;:13;:18;57292:300;;57368:2;57346:25;;;;;;;;;;;:::i;:::-;;;;;;;;57292:300;57542:6;57536:13;57527:6;57523:2;57519:15;57512:38;56978:629;57111:41;;;57101:51;;;:6;:51;;;;57097:132;;57206:2;57184:25;;;;;;;;;;;:::i;:::-;;;;;;;;57097:132;57054:190;56939:679;56826:799;;;;:::o;42717:94::-;42768:13;42794:9;;;;;;;;;;;;;;42717:94;:::o;24283:718::-;24339:13;24390:14;24427:1;24407:17;24418:5;24407:10;:17::i;:::-;:21;24390:38;;24443:20;24477:6;24466:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24443:41;;24499:11;24628:6;24624:2;24620:15;24612:6;24608:28;24601:35;;24665:290;24672:4;24665:290;;;24697:5;;;;;;;;24839:10;24834:2;24827:5;24823:14;24818:32;24813:3;24805:46;24897:2;24888:11;;;;;;:::i;:::-;;;;;24931:1;24922:5;:10;24665:290;24918:21;24665:290;24976:6;24969:13;;;;;24283:718;;;:::o;45322:117::-;45388:7;45415;:16;45423:7;45415:16;;;;;;;;;;;;;;;;;;;;;45408:23;;45322:117;;;:::o;54571:678::-;54733:9;:31;;;;54762:1;54746:18;;:4;:18;;;;54733:31;54729:471;;;54781:13;54797:22;54811:7;54797:13;:22::i;:::-;54781:38;;54966:1;54950:18;;:4;:18;;;;:35;;;;;54981:4;54972:13;;:5;:13;;;;54950:35;:69;;;;;54990:29;55007:5;55014:4;54990:16;:29::i;:::-;54989:30;54950:69;54946:144;;;55069:4;55047:27;;;;;;;;;;;:::i;:::-;;;;;;;;54946:144;55110:9;55106:83;;;55165:7;55161:2;55145:28;;55154:5;55145:28;;;;;;;;;;;;55106:83;54766:434;54729:471;55239:2;55212:15;:24;55228:7;55212:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;54571:678;;;;:::o;50709:185::-;50804:18;50810:2;50814:7;50804:5;:18::i;:::-;50833:53;50864:1;50868:2;50872:7;50881:4;50833:22;:53::i;:::-;50709:185;;;:::o;46729:376::-;46842:38;46856:5;46863:7;46872;46842:13;:38::i;:::-;46837:261;;46918:1;46901:19;;:5;:19;;;46897:190;;46971:7;46948:31;;;;;;;;;;;:::i;:::-;;;;;;;;46897:190;47054:7;47063;47027:44;;;;;;;;;;;;:::i;:::-;;;;;;;;46837:261;46729:376;;;:::o;20687:948::-;20740:7;20760:14;20777:1;20760:18;;20827:8;20818:5;:17;20814:106;;20865:8;20856:17;;;;;;:::i;:::-;;;;;20902:2;20892:12;;;;20814:106;20947:8;20938:5;:17;20934:106;;20985:8;20976:17;;;;;;:::i;:::-;;;;;21022:2;21012:12;;;;20934:106;21067:8;21058:5;:17;21054:106;;21105:8;21096:17;;;;;;:::i;:::-;;;;;21142:2;21132:12;;;;21054:106;21187:7;21178:5;:16;21174:103;;21224:7;21215:16;;;;;;:::i;:::-;;;;;21260:1;21250:11;;;;21174:103;21304:7;21295:5;:16;21291:103;;21341:7;21332:16;;;;;;:::i;:::-;;;;;21377:1;21367:11;;;;21291:103;21421:7;21412:5;:16;21408:103;;21458:7;21449:16;;;;;;:::i;:::-;;;;;21494:1;21484:11;;;;21408:103;21538:7;21529:5;:16;21525:68;;21576:1;21566:11;;;;21525:68;21621:6;21614:13;;;20687:948;;;:::o;49682:335::-;49764:1;49750:16;;:2;:16;;;49746:89;;49820:1;49790:33;;;;;;;;;;;:::i;:::-;;;;;;;;49746:89;49845:21;49869:32;49877:2;49881:7;49898:1;49869:7;:32::i;:::-;49845:56;;49941:1;49916:27;;:13;:27;;;49912:98;;49995:1;49967:31;;;;;;;;;;;:::i;:::-;;;;;;;;49912:98;49735:282;49682:335;;:::o;46009:276::-;46112:4;46168:1;46149:21;;:7;:21;;;;:128;;;;;46197:7;46188:16;;:5;:16;;;:52;;;;46208:32;46225:5;46232:7;46208:16;:32::i;:::-;46188:52;:88;;;;46269:7;46244:32;;:21;46257:7;46244:12;:21::i;:::-;:32;;;46188:88;46149:128;46129:148;;46009:276;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:118::-;1839:24;1857:5;1839:24;:::i;:::-;1834:3;1827:37;1752:118;;:::o;1876:222::-;1969:4;2007:2;1996:9;1992:18;1984:26;;2020:71;2088:1;2077:9;2073:17;2064:6;2020:71;:::i;:::-;1876:222;;;;:::o;2104:99::-;2156:6;2190:5;2184:12;2174:22;;2104:99;;;:::o;2209:169::-;2293:11;2327:6;2322:3;2315:19;2367:4;2362:3;2358:14;2343:29;;2209:169;;;;:::o;2384:246::-;2465:1;2475:113;2489:6;2486:1;2483:13;2475:113;;;2574:1;2569:3;2565:11;2559:18;2555:1;2550:3;2546:11;2539:39;2511:2;2508:1;2504:10;2499:15;;2475:113;;;2622:1;2613:6;2608:3;2604:16;2597:27;2446:184;2384:246;;;:::o;2636:102::-;2677:6;2728:2;2724:7;2719:2;2712:5;2708:14;2704:28;2694:38;;2636:102;;;:::o;2744:377::-;2832:3;2860:39;2893:5;2860:39;:::i;:::-;2915:71;2979:6;2974:3;2915:71;:::i;:::-;2908:78;;2995:65;3053:6;3048:3;3041:4;3034:5;3030:16;2995:65;:::i;:::-;3085:29;3107:6;3085:29;:::i;:::-;3080:3;3076:39;3069:46;;2836:285;2744:377;;;;:::o;3127:313::-;3240:4;3278:2;3267:9;3263:18;3255:26;;3327:9;3321:4;3317:20;3313:1;3302:9;3298:17;3291:47;3355:78;3428:4;3419:6;3355:78;:::i;:::-;3347:86;;3127:313;;;;:::o;3446:77::-;3483:7;3512:5;3501:16;;3446:77;;;:::o;3529:122::-;3602:24;3620:5;3602:24;:::i;:::-;3595:5;3592:35;3582:63;;3641:1;3638;3631:12;3582:63;3529:122;:::o;3657:139::-;3703:5;3741:6;3728:20;3719:29;;3757:33;3784:5;3757:33;:::i;:::-;3657:139;;;;:::o;3802:329::-;3861:6;3910:2;3898:9;3889:7;3885:23;3881:32;3878:119;;;3916:79;;:::i;:::-;3878:119;4036:1;4061:53;4106:7;4097:6;4086:9;4082:22;4061:53;:::i;:::-;4051:63;;4007:117;3802:329;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:468::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6711:1;6736:53;6781:7;6772:6;6761:9;6757:22;6736:53;:::i;:::-;6726:63;;6682:117;6838:2;6864:50;6906:7;6897:6;6886:9;6882:22;6864:50;:::i;:::-;6854:60;;6809:115;6463:468;;;;;:::o;6937:117::-;7046:1;7043;7036:12;7060:117;7169:1;7166;7159:12;7183:180;7231:77;7228:1;7221:88;7328:4;7325:1;7318:15;7352:4;7349:1;7342:15;7369:281;7452:27;7474:4;7452:27;:::i;:::-;7444:6;7440:40;7582:6;7570:10;7567:22;7546:18;7534:10;7531:34;7528:62;7525:88;;;7593:18;;:::i;:::-;7525:88;7633:10;7629:2;7622:22;7412:238;7369:281;;:::o;7656:129::-;7690:6;7717:20;;:::i;:::-;7707:30;;7746:33;7774:4;7766:6;7746:33;:::i;:::-;7656:129;;;:::o;7791:307::-;7852:4;7942:18;7934:6;7931:30;7928:56;;;7964:18;;:::i;:::-;7928:56;8002:29;8024:6;8002:29;:::i;:::-;7994:37;;8086:4;8080;8076:15;8068:23;;7791:307;;;:::o;8104:146::-;8201:6;8196:3;8191;8178:30;8242:1;8233:6;8228:3;8224:16;8217:27;8104:146;;;:::o;8256:423::-;8333:5;8358:65;8374:48;8415:6;8374:48;:::i;:::-;8358:65;:::i;:::-;8349:74;;8446:6;8439:5;8432:21;8484:4;8477:5;8473:16;8522:3;8513:6;8508:3;8504:16;8501:25;8498:112;;;8529:79;;:::i;:::-;8498:112;8619:54;8666:6;8661:3;8656;8619:54;:::i;:::-;8339:340;8256:423;;;;;:::o;8698:338::-;8753:5;8802:3;8795:4;8787:6;8783:17;8779:27;8769:122;;8810:79;;:::i;:::-;8769:122;8927:6;8914:20;8952:78;9026:3;9018:6;9011:4;9003:6;8999:17;8952:78;:::i;:::-;8943:87;;8759:277;8698:338;;;;:::o;9042:943::-;9137:6;9145;9153;9161;9210:3;9198:9;9189:7;9185:23;9181:33;9178:120;;;9217:79;;:::i;:::-;9178:120;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:53;9535:7;9526:6;9515:9;9511:22;9490:53;:::i;:::-;9480:63;;9435:118;9592:2;9618:53;9663:7;9654:6;9643:9;9639:22;9618:53;:::i;:::-;9608:63;;9563:118;9748:2;9737:9;9733:18;9720:32;9779:18;9771:6;9768:30;9765:117;;;9801:79;;:::i;:::-;9765:117;9906:62;9960:7;9951:6;9940:9;9936:22;9906:62;:::i;:::-;9896:72;;9691:287;9042:943;;;;;;;:::o;9991:474::-;10059:6;10067;10116:2;10104:9;10095:7;10091:23;10087:32;10084:119;;;10122:79;;:::i;:::-;10084:119;10242:1;10267:53;10312:7;10303:6;10292:9;10288:22;10267:53;:::i;:::-;10257:63;;10213:117;10369:2;10395:53;10440:7;10431:6;10420:9;10416:22;10395:53;:::i;:::-;10385:63;;10340:118;9991:474;;;;;:::o;10471:180::-;10519:77;10516:1;10509:88;10616:4;10613:1;10606:15;10640:4;10637:1;10630:15;10657:320;10701:6;10738:1;10732:4;10728:12;10718:22;;10785:1;10779:4;10775:12;10806:18;10796:81;;10862:4;10854:6;10850:17;10840:27;;10796:81;10924:2;10916:6;10913:14;10893:18;10890:38;10887:84;;10943:18;;:::i;:::-;10887:84;10708:269;10657:320;;;:::o;10983:168::-;11123:20;11119:1;11111:6;11107:14;11100:44;10983:168;:::o;11157:366::-;11299:3;11320:67;11384:2;11379:3;11320:67;:::i;:::-;11313:74;;11396:93;11485:3;11396:93;:::i;:::-;11514:2;11509:3;11505:12;11498:19;;11157:366;;;:::o;11529:419::-;11695:4;11733:2;11722:9;11718:18;11710:26;;11782:9;11776:4;11772:20;11768:1;11757:9;11753:17;11746:47;11810:131;11936:4;11810:131;:::i;:::-;11802:139;;11529:419;;;:::o;11954:180::-;12002:77;11999:1;11992:88;12099:4;12096:1;12089:15;12123:4;12120:1;12113:15;12140:191;12180:3;12199:20;12217:1;12199:20;:::i;:::-;12194:25;;12233:20;12251:1;12233:20;:::i;:::-;12228:25;;12276:1;12273;12269:9;12262:16;;12297:3;12294:1;12291:10;12288:36;;;12304:18;;:::i;:::-;12288:36;12140:191;;;;:::o;12337:233::-;12376:3;12399:24;12417:5;12399:24;:::i;:::-;12390:33;;12445:66;12438:5;12435:77;12432:103;;12515:18;;:::i;:::-;12432:103;12562:1;12555:5;12551:13;12544:20;;12337:233;;;:::o;12576:442::-;12725:4;12763:2;12752:9;12748:18;12740:26;;12776:71;12844:1;12833:9;12829:17;12820:6;12776:71;:::i;:::-;12857:72;12925:2;12914:9;12910:18;12901:6;12857:72;:::i;:::-;12939;13007:2;12996:9;12992:18;12983:6;12939:72;:::i;:::-;12576:442;;;;;;:::o;13024:148::-;13126:11;13163:3;13148:18;;13024:148;;;;:::o;13178:390::-;13284:3;13312:39;13345:5;13312:39;:::i;:::-;13367:89;13449:6;13444:3;13367:89;:::i;:::-;13360:96;;13465:65;13523:6;13518:3;13511:4;13504:5;13500:16;13465:65;:::i;:::-;13555:6;13550:3;13546:16;13539:23;;13288:280;13178:390;;;;:::o;13574:435::-;13754:3;13776:95;13867:3;13858:6;13776:95;:::i;:::-;13769:102;;13888:95;13979:3;13970:6;13888:95;:::i;:::-;13881:102;;14000:3;13993:10;;13574:435;;;;;:::o;14015:98::-;14066:6;14100:5;14094:12;14084:22;;14015:98;;;:::o;14119:168::-;14202:11;14236:6;14231:3;14224:19;14276:4;14271:3;14267:14;14252:29;;14119:168;;;;:::o;14293:373::-;14379:3;14407:38;14439:5;14407:38;:::i;:::-;14461:70;14524:6;14519:3;14461:70;:::i;:::-;14454:77;;14540:65;14598:6;14593:3;14586:4;14579:5;14575:16;14540:65;:::i;:::-;14630:29;14652:6;14630:29;:::i;:::-;14625:3;14621:39;14614:46;;14383:283;14293:373;;;;:::o;14672:640::-;14867:4;14905:3;14894:9;14890:19;14882:27;;14919:71;14987:1;14976:9;14972:17;14963:6;14919:71;:::i;:::-;15000:72;15068:2;15057:9;15053:18;15044:6;15000:72;:::i;:::-;15082;15150:2;15139:9;15135:18;15126:6;15082:72;:::i;:::-;15201:9;15195:4;15191:20;15186:2;15175:9;15171:18;15164:48;15229:76;15300:4;15291:6;15229:76;:::i;:::-;15221:84;;14672:640;;;;;;;:::o;15318:141::-;15374:5;15405:6;15399:13;15390:22;;15421:32;15447:5;15421:32;:::i;:::-;15318:141;;;;:::o;15465:349::-;15534:6;15583:2;15571:9;15562:7;15558:23;15554:32;15551:119;;;15589:79;;:::i;:::-;15551:119;15709:1;15734:63;15789:7;15780:6;15769:9;15765:22;15734:63;:::i;:::-;15724:73;;15680:127;15465:349;;;;:::o;15820:180::-;15868:77;15865:1;15858:88;15965:4;15962:1;15955:15;15989:4;15986:1;15979:15;16006:332;16127:4;16165:2;16154:9;16150:18;16142:26;;16178:71;16246:1;16235:9;16231:17;16222:6;16178:71;:::i;:::-;16259:72;16327:2;16316:9;16312:18;16303:6;16259:72;:::i;:::-;16006:332;;;;;:::o
Swarm Source
ipfs://0ef04f5743500eb32f3fcdf778c962300b8b51e1a6b8c032f91575b0e5322e5a
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.