Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 299 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 19792782 | 206 days ago | IN | 0 ETH | 0.00018981 | ||||
Set Approval For... | 19555875 | 240 days ago | IN | 0 ETH | 0.00136762 | ||||
Set Approval For... | 19428849 | 258 days ago | IN | 0 ETH | 0.00381214 | ||||
Set Approval For... | 18042438 | 452 days ago | IN | 0 ETH | 0.00267562 | ||||
Safe Transfer Fr... | 17726834 | 496 days ago | IN | 0 ETH | 0.00098527 | ||||
Set Approval For... | 17581035 | 516 days ago | IN | 0 ETH | 0.00097489 | ||||
Safe Transfer Fr... | 17234082 | 565 days ago | IN | 0 ETH | 0.01005001 | ||||
Set Approval For... | 17132767 | 580 days ago | IN | 0 ETH | 0.0029375 | ||||
Set Approval For... | 17080046 | 587 days ago | IN | 0 ETH | 0.00349173 | ||||
Transfer From | 17076543 | 587 days ago | IN | 0 ETH | 0.00240063 | ||||
Transfer From | 17076539 | 587 days ago | IN | 0 ETH | 0.00241066 | ||||
Safe Transfer Fr... | 17028096 | 594 days ago | IN | 0 ETH | 0.0064774 | ||||
Transfer From | 17019253 | 596 days ago | IN | 0 ETH | 0.00282729 | ||||
Set Approval For... | 16883533 | 615 days ago | IN | 0 ETH | 0.00127547 | ||||
Set Approval For... | 16844255 | 620 days ago | IN | 0 ETH | 0.00092687 | ||||
Set Approval For... | 16621858 | 652 days ago | IN | 0 ETH | 0.00180081 | ||||
Set Approval For... | 16565355 | 660 days ago | IN | 0 ETH | 0.00144381 | ||||
Set Token URI | 16520983 | 666 days ago | IN | 0 ETH | 0.0017635 | ||||
Set Approval For... | 16470544 | 673 days ago | IN | 0 ETH | 0.00119601 | ||||
Set Token URI | 16469837 | 673 days ago | IN | 0 ETH | 0.00138816 | ||||
Set Token URI | 16440773 | 677 days ago | IN | 0 ETH | 0.00141208 | ||||
Set Token URI | 16440770 | 677 days ago | IN | 0 ETH | 0.00141984 | ||||
Set Token URI | 16440765 | 677 days ago | IN | 0 ETH | 0.00140426 | ||||
Set Approval For... | 16428218 | 679 days ago | IN | 0 ETH | 0.00171479 | ||||
Set Token URI | 16345027 | 690 days ago | IN | 0 ETH | 0.00190843 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
EVENFT
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-07 */ // File: IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (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; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 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. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); 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 (rounding == Rounding.Up && 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 down. * * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * 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 10, 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 + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @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) { 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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); 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); } } // File: IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns 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); // ============================== // IERC721Metadata // ============================== /** * @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: ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); address approvedAddress = _tokenApprovals[tokenId]; if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: ERC721AURIStorage.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721AURIStorage is ERC721A { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _exists(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0 || bytes(_tokenURI).length > 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). /* if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } */ return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721AURIStorage: URI set of nonexistent token"); if (bytes(_tokenURI).length > 0) { _tokenURIs[tokenId] = _tokenURI; } else { delete _tokenURIs[tokenId]; } } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contrato.sol pragma solidity ^0.8.4; //import "./ERC721AQueryable.sol"; contract EVENFT is ERC721AURIStorage, DefaultOperatorFilterer, Ownable, ReentrancyGuard { // This sets the name and symbol of our NFT contract when it is created. constructor() ERC721A("Project EVE NFT", "EVENFT") {} /** Este é o máximo de itens disponível na coleção como um todo. Ele pode ser alterado através de "updateMaxMintsAvailable" Inclui todas as fases de mintagem (pré-venda e venda pública) */ uint public MaxMintsAvailable = 400; function updateMaxMintsAvailable(uint64 _NewMaxMintsAvailable) external onlyOwner { require(_NewMaxMintsAvailable >= totalSupply(), "Must be greaters than current supply"); MaxMintsAvailable = _NewMaxMintsAvailable; } uint public limitPerWallet = 999; function updateLimitPerWallet(uint128 _newLimit) external onlyOwner { limitPerWallet = _newLimit; return; } uint128 public mintPrice = 0.08 ether; function updateMintPrice (uint128 _newPrice) external onlyOwner { mintPrice = _newPrice; } /** Este é o flag indicativo de se o mint está publicamente disponível (true) Ele pode ser alterado em "setPublicMintStage" O drop não é afetado por esse flag. */ bool public publicMintActive = false; function setPublicMintActive(bool newState) external onlyOwner returns (bool) { publicMintActive = newState; return publicMintActive; } /** Este é o endereço base do arquivo de metadados correspondente a cada um dos tokens Ele pode ser alterado em "setBaseURI" */ string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function setTokenURI(uint256 tokenId, string memory _tokenURI) external onlyOwner { _setTokenURI(tokenId, _tokenURI); return; } /** Este é o tamanho máximo do lote por transação. O limite tem que ser necessáriamente menor que o limite por carteira. Ele pode ser alterado em setMaximumMintsPerTransaction */ uint private maxMintsPerTransaction = 100; function maximumMintsPerTransaction() public view returns (uint) { return maxMintsPerTransaction; } function setMaximumMintsPerTransaction(uint _newMaximum) external onlyOwner { require(_newMaximum <= limitPerWallet, "Greater than address limit"); require(_newMaximum > 0, "Must be larger than 0"); maxMintsPerTransaction = _newMaximum; } /** Cunhagem em lote (implícita ao requisitante) */ function batchMint(uint _batchSize) external payable { publicMintValidation(msg.sender, _batchSize); // Todos os requisitos satisfeitos, cunhar. _mint(msg.sender,_batchSize); } /** Cunhagem a terceiros. */ function mintTo(address _mintToAddress, uint128 _batchSize) external payable { publicMintValidation(_mintToAddress, _batchSize); // Todos os requisitor satisfeitos, cunhar. _mint(_mintToAddress,_batchSize); } /** Validações comuns aos processos de cunhagem públicos */ function publicMintValidation(address toAddress, uint _batchSize) internal { uint256 total_supply = totalSupply(); // Suprimento está disponível? require((total_supply + _batchSize) <= MaxMintsAvailable, "Not enough Tokens left"); // Menor lote possível é 1 require(_batchSize > 0, "Must be at least One"); // Maior lote possível é o da configuração require(_batchSize <= maxMintsPerTransaction, "Maximum per Transaction is exceeded."); // Mintagem deve estar aberta require(publicMintActive, "Public Mint not active"); // Carteira não pode já conter mais tokens que o máximo permitido require( (balanceOf(toAddress) + _batchSize) <= limitPerWallet, "Address Limit Exceeded" ); // Valor pago deve ser suficiente para todos os tokens! uint256 batchPrice = mintPrice * _batchSize; require( msg.value == batchPrice, "Wrong Batch Price" ); return; } /** Cunhagem especial para o dono do contrato custa apenas a taxa de Gas Pode ser usada para fazer um drop "caro" de novos tokens */ function batchOwnerMintTo(address toAddress, uint _batchSize) external onlyOwner { // A única validação que existe neste caso é se existem tokens disponíveis // Suprimento está disponível? require((totalSupply() + _batchSize) <= MaxMintsAvailable, "Not enough Tokens"); _mint(toAddress, _batchSize); } /** Saque de fundos do contrato para uma carteira específica. */ function withdrawContract(address payable _to, uint256 _amount) public nonReentrant onlyOwner { (bool sent, bytes memory data) = _to.call{value: _amount}(""); require(sent, "Failed to send ETH"); } function burn(uint256 tokenId) external { _burn(tokenId, true); } /* Overrides requeridos pelo filtro de operadores */ function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[],"name":"MaxMintsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchSize","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"uint256","name":"_batchSize","type":"uint256"}],"name":"batchOwnerMintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintsPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_mintToAddress","type":"address"},{"internalType":"uint128","name":"_batchSize","type":"uint128"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaximum","type":"uint256"}],"name":"setMaximumMintsPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_newLimit","type":"uint128"}],"name":"updateLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_NewMaxMintsAvailable","type":"uint64"}],"name":"updateMaxMintsAvailable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_newPrice","type":"uint128"}],"name":"updateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawContract","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610190600b556103e7600c55600d80546001600160881b03191667011c37937e0800001790556064600f553480156200003c57600080fd5b50604080518082018252600f81526e141c9bda9958dd0811559148139195608a1b60208083019182528351808501909452600684526511559153919560d21b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000ab9160029162000278565b508051620000c190600390602084019062000278565b506000805550506daaeb6d7670e522a718067333cd4e3b156200020d5780156200015b57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200013c57600080fd5b505af115801562000151573d6000803e3d6000fd5b505050506200020d565b6001600160a01b03821615620001ac5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000121565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001f357600080fd5b505af115801562000208573d6000803e3d6000fd5b505050505b506200021b90503362000226565b6001600a556200035a565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000286906200031e565b90600052602060002090601f016020900481019282620002aa5760008555620002f5565b82601f10620002c557805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f5578251825591602001919060010190620002d8565b506200030392915062000307565b5090565b5b8082111562000303576000815560010162000308565b600181811c908216806200033357607f821691505b6020821081036200035457634e487b7160e01b600052602260045260246000fd5b50919050565b612269806200036a6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a620ce5a116100a0578063c3a7e9a01161006f578063c3a7e9a0146105c7578063c87b56dd146105e7578063e985e9c514610607578063f2fde38b14610650578063f746f4211461067057600080fd5b8063a620ce5a1461055d578063a7fcf7b514610573578063b67c25a314610586578063b88d4fde146105a757600080fd5b80638da5cb5b116100e75780638da5cb5b146104ca57806395d89b41146104e857806396bfb41a146104fd5780639d9f7b121461051d578063a22cb4651461053d57600080fd5b8063715018a61461046c5780637a10f3c3146104815780638467be0d146104975780638c85aaea146104aa57600080fd5b80632b707c711161019b57806355f804b31161016a57806355f804b3146103b45780636352211e146103d45780636817c76c146103f45780636decf6f71461042c57806370a082311461044c57600080fd5b80632b707c711461033257806341f434341461035257806342842e0e1461037457806342966c681461039457600080fd5b8063095ea7b3116101d7578063095ea7b3146102b7578063162094c4146102d957806318160ddd146102f957806323b872dd1461031257600080fd5b806301ffc9a7146102095780630679fe4d1461023e57806306fdde031461025d578063081812fc1461027f575b600080fd5b34801561021557600080fd5b50610229610224366004611c95565b610690565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50600f545b604051908152602001610235565b34801561026957600080fd5b506102726106e2565b6040516102359190611d0a565b34801561028b57600080fd5b5061029f61029a366004611d1d565b610774565b6040516001600160a01b039091168152602001610235565b3480156102c357600080fd5b506102d76102d2366004611d4b565b6107b8565b005b3480156102e557600080fd5b506102d76102f4366004611e03565b6107d1565b34801561030557600080fd5b506001546000540361024f565b34801561031e57600080fd5b506102d761032d366004611e5e565b610812565b34801561033e57600080fd5b5061022961034d366004611ead565b61083d565b34801561035e57600080fd5b5061029f6daaeb6d7670e522a718067333cd4e81565b34801561038057600080fd5b506102d761038f366004611e5e565b610893565b3480156103a057600080fd5b506102d76103af366004611d1d565b6108b8565b3480156103c057600080fd5b506102d76103cf366004611eca565b6108c6565b3480156103e057600080fd5b5061029f6103ef366004611d1d565b6108fc565b34801561040057600080fd5b50600d54610414906001600160801b031681565b6040516001600160801b039091168152602001610235565b34801561043857600080fd5b506102d7610447366004611d1d565b610907565b34801561045857600080fd5b5061024f610467366004611f3c565b6109d0565b34801561047857600080fd5b506102d7610a19565b34801561048d57600080fd5b5061024f600b5481565b6102d76104a5366004611d1d565b610a4f565b3480156104b657600080fd5b506102d76104c5366004611d4b565b610a63565b3480156104d657600080fd5b506009546001600160a01b031661029f565b3480156104f457600080fd5b50610272610b89565b34801561050957600080fd5b506102d7610518366004611d4b565b610b98565b34801561052957600080fd5b506102d7610538366004611f70565b610c29565b34801561054957600080fd5b506102d7610558366004611f8b565b610c7e565b34801561056957600080fd5b5061024f600c5481565b6102d7610581366004611fc4565b610c92565b34801561059257600080fd5b50600d5461022990600160801b900460ff1681565b3480156105b357600080fd5b506102d76105c2366004611ff9565b610cb8565b3480156105d357600080fd5b506102d76105e2366004612079565b610ce5565b3480156105f357600080fd5b50610272610602366004611d1d565b610d8a565b34801561061357600080fd5b506102296106223660046120a3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065c57600080fd5b506102d761066b366004611f3c565b610e69565b34801561067c57600080fd5b506102d761068b366004611f70565b610f01565b60006301ffc9a760e01b6001600160e01b0319831614806106c157506380ac58cd60e01b6001600160e01b03198316145b806106dc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106f1906120d1565b80601f016020809104026020016040519081016040528092919081815260200182805461071d906120d1565b801561076a5780601f1061073f5761010080835404028352916020019161076a565b820191906000526020600020905b81548152906001019060200180831161074d57829003601f168201915b5050505050905090565b600061077f82610f39565b61079c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816107c281610f60565b6107cc8383611019565b505050565b6009546001600160a01b031633146108045760405162461bcd60e51b81526004016107fb9061210b565b60405180910390fd5b61080e82826110eb565b5050565b826001600160a01b038116331461082c5761082c33610f60565b610837848484611195565b50505050565b6009546000906001600160a01b0316331461086a5760405162461bcd60e51b81526004016107fb9061210b565b50600d805460ff60801b1916600160801b8315158102919091179182905560ff9104165b919050565b826001600160a01b03811633146108ad576108ad33610f60565b6108378484846111a0565b6108c38160016111bb565b50565b6009546001600160a01b031633146108f05760405162461bcd60e51b81526004016107fb9061210b565b6107cc600e8383611b3c565b60006106dc82611329565b6009546001600160a01b031633146109315760405162461bcd60e51b81526004016107fb9061210b565b600c548111156109835760405162461bcd60e51b815260206004820152601a60248201527f47726561746572207468616e2061646472657373206c696d697400000000000060448201526064016107fb565b600081116109cb5760405162461bcd60e51b815260206004820152601560248201527404d757374206265206c6172676572207468616e203605c1b60448201526064016107fb565b600f55565b6000816000036109f3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610a435760405162461bcd60e51b81526004016107fb9061210b565b610a4d6000611397565b565b610a5933826113e9565b6108c33382611603565b6002600a5403610ab55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fb565b6002600a556009546001600160a01b03163314610ae45760405162461bcd60e51b81526004016107fb9061210b565b600080836001600160a01b03168360405160006040518083038185875af1925050503d8060008114610b32576040519150601f19603f3d011682016040523d82523d6000602084013e610b37565b606091505b509150915081610b7e5760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b60448201526064016107fb565b50506001600a555050565b6060600380546106f1906120d1565b6009546001600160a01b03163314610bc25760405162461bcd60e51b81526004016107fb9061210b565b600b5481610bd36001546000540390565b610bdd9190612156565b1115610c1f5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820546f6b656e7360781b60448201526064016107fb565b61080e8282611603565b6009546001600160a01b03163314610c535760405162461bcd60e51b81526004016107fb9061210b565b600d80546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055565b81610c8881610f60565b6107cc83836116de565b610ca582826001600160801b03166113e9565b61080e82826001600160801b0316611603565b836001600160a01b0381163314610cd257610cd233610f60565b610cde85858585611773565b5050505050565b6009546001600160a01b03163314610d0f5760405162461bcd60e51b81526004016107fb9061210b565b600154600054038167ffffffffffffffff161015610d7b5760405162461bcd60e51b8152602060048201526024808201527f4d757374206265206772656174657273207468616e2063757272656e7420737560448201526370706c7960e01b60648201526084016107fb565b67ffffffffffffffff16600b55565b6060610d9582610f39565b5060008281526008602052604081208054610daf906120d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddb906120d1565b8015610e285780601f10610dfd57610100808354040283529160200191610e28565b820191906000526020600020905b815481529060010190602001808311610e0b57829003601f168201915b505050505090506000610e396117b7565b9050805160001480610e4c575060008251115b15610e58575092915050565b610e61846117c6565b949350505050565b6009546001600160a01b03163314610e935760405162461bcd60e51b81526004016107fb9061210b565b6001600160a01b038116610ef85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fb565b6108c381611397565b6009546001600160a01b03163314610f2b5760405162461bcd60e51b81526004016107fb9061210b565b6001600160801b0316600c55565b60008054821080156106dc575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b156108c357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610fcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff1919061216e565b6108c357604051633b79c77360e21b81526001600160a01b03821660048201526024016107fb565b600061102482611329565b9050806001600160a01b0316836001600160a01b0316036110585760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461108f576110728133610622565b61108f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6110f482610f39565b6111585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314155524953746f726167653a2055524920736574206f66206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107fb565b80511561117e57600082815260086020908152604090912082516107cc92840190611bc0565b600082815260086020526040812061080e91611c34565b6107cc838383611849565b6107cc83838360405180602001604052806000815250610cb8565b60006111c683611329565b60008481526006602052604090205490915081906001600160a01b0316831561123c576000336001600160a01b038416148061120757506112078333610622565b8061121a57506001600160a01b03821633145b90508061123a57604051632ce44b5f60e11b815260040160405180910390fd5b505b801561125f57600085815260066020526040902080546001600160a01b03191690555b6001600160a01b038216600090815260056020908152604080832080546001600160801b0301905587835260049091528120600360e01b4260a01b8517179055600160e11b841690036112e2576001850160008181526004602052604081205490036112e05760005481146112e05760008181526004602052604090208490555b505b60405185906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b60008160005481101561137e5760008181526004602052604081205490600160e01b8216900361137c575b80600003611375575060001901600081815260046020526040902054611354565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113f86001546000540390565b600b549091506114088383612156565b111561144f5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da08151bdad95b9cc81b19599d60521b60448201526064016107fb565b600082116114965760405162461bcd60e51b81526020600482015260146024820152734d757374206265206174206c65617374204f6e6560601b60448201526064016107fb565b600f548211156114f45760405162461bcd60e51b8152602060048201526024808201527f4d6178696d756d20706572205472616e73616374696f6e2069732065786365656044820152633232b21760e11b60648201526084016107fb565b600d54600160801b900460ff166115465760405162461bcd60e51b81526020600482015260166024820152755075626c6963204d696e74206e6f742061637469766560501b60448201526064016107fb565b600c5482611553856109d0565b61155d9190612156565b11156115a45760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc8131a5b5a5d08115e18d95959195960521b60448201526064016107fb565b600d546000906115be9084906001600160801b031661218b565b90508034146108375760405162461bcd60e51b815260206004820152601160248201527057726f6e6720426174636820507269636560781b60448201526064016107fb565b6000548260000361162657604051622e076360e81b815260040160405180910390fd5b816000036116475760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116925750600055505050565b336001600160a01b038316036117075760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61177e848484611849565b6001600160a01b0383163b156108375761179a84848484611a02565b610837576040516368d2bf6b60e11b815260040160405180910390fd5b6060600e80546106f1906120d1565b60606117d182610f39565b6117ee57604051630a14c4b560e41b815260040160405180910390fd5b60006117f86117b7565b905080516000036118185760405180602001604052806000815250611375565b8061182284611aed565b6040516020016118339291906121aa565b6040516020818303038152906040529392505050565b600061185482611329565b9050836001600160a01b0316816001600160a01b0316146118875760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b03908116919086163314806118b757506118b78633610622565b806118ca57506001600160a01b03821633145b9050806118ea57604051632ce44b5f60e11b815260040160405180910390fd5b8460000361190b57604051633a954ecd60e21b815260040160405180910390fd5b811561192e57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b88178117909155841690036119b9576001840160008181526004602052604081205490036119b75760005481146119b75760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a379033908990889088906004016121d9565b6020604051808303816000875af1925050508015611a72575060408051601f3d908101601f19168201909252611a6f91810190612216565b60015b611ad0573d808015611aa0576040519150601f19603f3d011682016040523d82523d6000602084013e611aa5565b606091505b508051600003611ac8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611b2a57600183039250600a81066030018353600a9004611b0c565b50819003601f19909101908152919050565b828054611b48906120d1565b90600052602060002090601f016020900481019282611b6a5760008555611bb0565b82601f10611b835782800160ff19823516178555611bb0565b82800160010185558215611bb0579182015b82811115611bb0578235825591602001919060010190611b95565b50611bbc929150611c6a565b5090565b828054611bcc906120d1565b90600052602060002090601f016020900481019282611bee5760008555611bb0565b82601f10611c0757805160ff1916838001178555611bb0565b82800160010185558215611bb0579182015b82811115611bb0578251825591602001919060010190611c19565b508054611c40906120d1565b6000825580601f10611c50575050565b601f0160209004906000526020600020908101906108c391905b5b80821115611bbc5760008155600101611c6b565b6001600160e01b0319811681146108c357600080fd5b600060208284031215611ca757600080fd5b813561137581611c7f565b60005b83811015611ccd578181015183820152602001611cb5565b838111156108375750506000910152565b60008151808452611cf6816020860160208601611cb2565b601f01601f19169290920160200192915050565b6020815260006113756020830184611cde565b600060208284031215611d2f57600080fd5b5035919050565b6001600160a01b03811681146108c357600080fd5b60008060408385031215611d5e57600080fd5b8235611d6981611d36565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611da857611da8611d77565b604051601f8501601f19908116603f01168101908282118183101715611dd057611dd0611d77565b81604052809350858152868686011115611de957600080fd5b858560208301376000602087830101525050509392505050565b60008060408385031215611e1657600080fd5b82359150602083013567ffffffffffffffff811115611e3457600080fd5b8301601f81018513611e4557600080fd5b611e5485823560208401611d8d565b9150509250929050565b600080600060608486031215611e7357600080fd5b8335611e7e81611d36565b92506020840135611e8e81611d36565b929592945050506040919091013590565b80151581146108c357600080fd5b600060208284031215611ebf57600080fd5b813561137581611e9f565b60008060208385031215611edd57600080fd5b823567ffffffffffffffff80821115611ef557600080fd5b818501915085601f830112611f0957600080fd5b813581811115611f1857600080fd5b866020828501011115611f2a57600080fd5b60209290920196919550909350505050565b600060208284031215611f4e57600080fd5b813561137581611d36565b80356001600160801b038116811461088e57600080fd5b600060208284031215611f8257600080fd5b61137582611f59565b60008060408385031215611f9e57600080fd5b8235611fa981611d36565b91506020830135611fb981611e9f565b809150509250929050565b60008060408385031215611fd757600080fd5b8235611fe281611d36565b9150611ff060208401611f59565b90509250929050565b6000806000806080858703121561200f57600080fd5b843561201a81611d36565b9350602085013561202a81611d36565b925060408501359150606085013567ffffffffffffffff81111561204d57600080fd5b8501601f8101871361205e57600080fd5b61206d87823560208401611d8d565b91505092959194509250565b60006020828403121561208b57600080fd5b813567ffffffffffffffff8116811461137557600080fd5b600080604083850312156120b657600080fd5b82356120c181611d36565b91506020830135611fb981611d36565b600181811c908216806120e557607f821691505b60208210810361210557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561216957612169612140565b500190565b60006020828403121561218057600080fd5b815161137581611e9f565b60008160001904831182151516156121a5576121a5612140565b500290565b600083516121bc818460208801611cb2565b8351908301906121d0818360208801611cb2565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061220c90830184611cde565b9695505050505050565b60006020828403121561222857600080fd5b815161137581611c7f56fea2646970667358221220a581f1e6ac4799933550f3b095e77ed9659620a51361e7a32348b27cb131dae164736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106102045760003560e01c8063715018a611610118578063a620ce5a116100a0578063c3a7e9a01161006f578063c3a7e9a0146105c7578063c87b56dd146105e7578063e985e9c514610607578063f2fde38b14610650578063f746f4211461067057600080fd5b8063a620ce5a1461055d578063a7fcf7b514610573578063b67c25a314610586578063b88d4fde146105a757600080fd5b80638da5cb5b116100e75780638da5cb5b146104ca57806395d89b41146104e857806396bfb41a146104fd5780639d9f7b121461051d578063a22cb4651461053d57600080fd5b8063715018a61461046c5780637a10f3c3146104815780638467be0d146104975780638c85aaea146104aa57600080fd5b80632b707c711161019b57806355f804b31161016a57806355f804b3146103b45780636352211e146103d45780636817c76c146103f45780636decf6f71461042c57806370a082311461044c57600080fd5b80632b707c711461033257806341f434341461035257806342842e0e1461037457806342966c681461039457600080fd5b8063095ea7b3116101d7578063095ea7b3146102b7578063162094c4146102d957806318160ddd146102f957806323b872dd1461031257600080fd5b806301ffc9a7146102095780630679fe4d1461023e57806306fdde031461025d578063081812fc1461027f575b600080fd5b34801561021557600080fd5b50610229610224366004611c95565b610690565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50600f545b604051908152602001610235565b34801561026957600080fd5b506102726106e2565b6040516102359190611d0a565b34801561028b57600080fd5b5061029f61029a366004611d1d565b610774565b6040516001600160a01b039091168152602001610235565b3480156102c357600080fd5b506102d76102d2366004611d4b565b6107b8565b005b3480156102e557600080fd5b506102d76102f4366004611e03565b6107d1565b34801561030557600080fd5b506001546000540361024f565b34801561031e57600080fd5b506102d761032d366004611e5e565b610812565b34801561033e57600080fd5b5061022961034d366004611ead565b61083d565b34801561035e57600080fd5b5061029f6daaeb6d7670e522a718067333cd4e81565b34801561038057600080fd5b506102d761038f366004611e5e565b610893565b3480156103a057600080fd5b506102d76103af366004611d1d565b6108b8565b3480156103c057600080fd5b506102d76103cf366004611eca565b6108c6565b3480156103e057600080fd5b5061029f6103ef366004611d1d565b6108fc565b34801561040057600080fd5b50600d54610414906001600160801b031681565b6040516001600160801b039091168152602001610235565b34801561043857600080fd5b506102d7610447366004611d1d565b610907565b34801561045857600080fd5b5061024f610467366004611f3c565b6109d0565b34801561047857600080fd5b506102d7610a19565b34801561048d57600080fd5b5061024f600b5481565b6102d76104a5366004611d1d565b610a4f565b3480156104b657600080fd5b506102d76104c5366004611d4b565b610a63565b3480156104d657600080fd5b506009546001600160a01b031661029f565b3480156104f457600080fd5b50610272610b89565b34801561050957600080fd5b506102d7610518366004611d4b565b610b98565b34801561052957600080fd5b506102d7610538366004611f70565b610c29565b34801561054957600080fd5b506102d7610558366004611f8b565b610c7e565b34801561056957600080fd5b5061024f600c5481565b6102d7610581366004611fc4565b610c92565b34801561059257600080fd5b50600d5461022990600160801b900460ff1681565b3480156105b357600080fd5b506102d76105c2366004611ff9565b610cb8565b3480156105d357600080fd5b506102d76105e2366004612079565b610ce5565b3480156105f357600080fd5b50610272610602366004611d1d565b610d8a565b34801561061357600080fd5b506102296106223660046120a3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065c57600080fd5b506102d761066b366004611f3c565b610e69565b34801561067c57600080fd5b506102d761068b366004611f70565b610f01565b60006301ffc9a760e01b6001600160e01b0319831614806106c157506380ac58cd60e01b6001600160e01b03198316145b806106dc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106f1906120d1565b80601f016020809104026020016040519081016040528092919081815260200182805461071d906120d1565b801561076a5780601f1061073f5761010080835404028352916020019161076a565b820191906000526020600020905b81548152906001019060200180831161074d57829003601f168201915b5050505050905090565b600061077f82610f39565b61079c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816107c281610f60565b6107cc8383611019565b505050565b6009546001600160a01b031633146108045760405162461bcd60e51b81526004016107fb9061210b565b60405180910390fd5b61080e82826110eb565b5050565b826001600160a01b038116331461082c5761082c33610f60565b610837848484611195565b50505050565b6009546000906001600160a01b0316331461086a5760405162461bcd60e51b81526004016107fb9061210b565b50600d805460ff60801b1916600160801b8315158102919091179182905560ff9104165b919050565b826001600160a01b03811633146108ad576108ad33610f60565b6108378484846111a0565b6108c38160016111bb565b50565b6009546001600160a01b031633146108f05760405162461bcd60e51b81526004016107fb9061210b565b6107cc600e8383611b3c565b60006106dc82611329565b6009546001600160a01b031633146109315760405162461bcd60e51b81526004016107fb9061210b565b600c548111156109835760405162461bcd60e51b815260206004820152601a60248201527f47726561746572207468616e2061646472657373206c696d697400000000000060448201526064016107fb565b600081116109cb5760405162461bcd60e51b815260206004820152601560248201527404d757374206265206c6172676572207468616e203605c1b60448201526064016107fb565b600f55565b6000816000036109f3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610a435760405162461bcd60e51b81526004016107fb9061210b565b610a4d6000611397565b565b610a5933826113e9565b6108c33382611603565b6002600a5403610ab55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fb565b6002600a556009546001600160a01b03163314610ae45760405162461bcd60e51b81526004016107fb9061210b565b600080836001600160a01b03168360405160006040518083038185875af1925050503d8060008114610b32576040519150601f19603f3d011682016040523d82523d6000602084013e610b37565b606091505b509150915081610b7e5760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b60448201526064016107fb565b50506001600a555050565b6060600380546106f1906120d1565b6009546001600160a01b03163314610bc25760405162461bcd60e51b81526004016107fb9061210b565b600b5481610bd36001546000540390565b610bdd9190612156565b1115610c1f5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820546f6b656e7360781b60448201526064016107fb565b61080e8282611603565b6009546001600160a01b03163314610c535760405162461bcd60e51b81526004016107fb9061210b565b600d80546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055565b81610c8881610f60565b6107cc83836116de565b610ca582826001600160801b03166113e9565b61080e82826001600160801b0316611603565b836001600160a01b0381163314610cd257610cd233610f60565b610cde85858585611773565b5050505050565b6009546001600160a01b03163314610d0f5760405162461bcd60e51b81526004016107fb9061210b565b600154600054038167ffffffffffffffff161015610d7b5760405162461bcd60e51b8152602060048201526024808201527f4d757374206265206772656174657273207468616e2063757272656e7420737560448201526370706c7960e01b60648201526084016107fb565b67ffffffffffffffff16600b55565b6060610d9582610f39565b5060008281526008602052604081208054610daf906120d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddb906120d1565b8015610e285780601f10610dfd57610100808354040283529160200191610e28565b820191906000526020600020905b815481529060010190602001808311610e0b57829003601f168201915b505050505090506000610e396117b7565b9050805160001480610e4c575060008251115b15610e58575092915050565b610e61846117c6565b949350505050565b6009546001600160a01b03163314610e935760405162461bcd60e51b81526004016107fb9061210b565b6001600160a01b038116610ef85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fb565b6108c381611397565b6009546001600160a01b03163314610f2b5760405162461bcd60e51b81526004016107fb9061210b565b6001600160801b0316600c55565b60008054821080156106dc575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b156108c357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610fcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff1919061216e565b6108c357604051633b79c77360e21b81526001600160a01b03821660048201526024016107fb565b600061102482611329565b9050806001600160a01b0316836001600160a01b0316036110585760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461108f576110728133610622565b61108f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6110f482610f39565b6111585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314155524953746f726167653a2055524920736574206f66206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107fb565b80511561117e57600082815260086020908152604090912082516107cc92840190611bc0565b600082815260086020526040812061080e91611c34565b6107cc838383611849565b6107cc83838360405180602001604052806000815250610cb8565b60006111c683611329565b60008481526006602052604090205490915081906001600160a01b0316831561123c576000336001600160a01b038416148061120757506112078333610622565b8061121a57506001600160a01b03821633145b90508061123a57604051632ce44b5f60e11b815260040160405180910390fd5b505b801561125f57600085815260066020526040902080546001600160a01b03191690555b6001600160a01b038216600090815260056020908152604080832080546001600160801b0301905587835260049091528120600360e01b4260a01b8517179055600160e11b841690036112e2576001850160008181526004602052604081205490036112e05760005481146112e05760008181526004602052604090208490555b505b60405185906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b60008160005481101561137e5760008181526004602052604081205490600160e01b8216900361137c575b80600003611375575060001901600081815260046020526040902054611354565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113f86001546000540390565b600b549091506114088383612156565b111561144f5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da08151bdad95b9cc81b19599d60521b60448201526064016107fb565b600082116114965760405162461bcd60e51b81526020600482015260146024820152734d757374206265206174206c65617374204f6e6560601b60448201526064016107fb565b600f548211156114f45760405162461bcd60e51b8152602060048201526024808201527f4d6178696d756d20706572205472616e73616374696f6e2069732065786365656044820152633232b21760e11b60648201526084016107fb565b600d54600160801b900460ff166115465760405162461bcd60e51b81526020600482015260166024820152755075626c6963204d696e74206e6f742061637469766560501b60448201526064016107fb565b600c5482611553856109d0565b61155d9190612156565b11156115a45760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc8131a5b5a5d08115e18d95959195960521b60448201526064016107fb565b600d546000906115be9084906001600160801b031661218b565b90508034146108375760405162461bcd60e51b815260206004820152601160248201527057726f6e6720426174636820507269636560781b60448201526064016107fb565b6000548260000361162657604051622e076360e81b815260040160405180910390fd5b816000036116475760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116925750600055505050565b336001600160a01b038316036117075760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61177e848484611849565b6001600160a01b0383163b156108375761179a84848484611a02565b610837576040516368d2bf6b60e11b815260040160405180910390fd5b6060600e80546106f1906120d1565b60606117d182610f39565b6117ee57604051630a14c4b560e41b815260040160405180910390fd5b60006117f86117b7565b905080516000036118185760405180602001604052806000815250611375565b8061182284611aed565b6040516020016118339291906121aa565b6040516020818303038152906040529392505050565b600061185482611329565b9050836001600160a01b0316816001600160a01b0316146118875760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b03908116919086163314806118b757506118b78633610622565b806118ca57506001600160a01b03821633145b9050806118ea57604051632ce44b5f60e11b815260040160405180910390fd5b8460000361190b57604051633a954ecd60e21b815260040160405180910390fd5b811561192e57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b88178117909155841690036119b9576001840160008181526004602052604081205490036119b75760005481146119b75760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a379033908990889088906004016121d9565b6020604051808303816000875af1925050508015611a72575060408051601f3d908101601f19168201909252611a6f91810190612216565b60015b611ad0573d808015611aa0576040519150601f19603f3d011682016040523d82523d6000602084013e611aa5565b606091505b508051600003611ac8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611b2a57600183039250600a81066030018353600a9004611b0c565b50819003601f19909101908152919050565b828054611b48906120d1565b90600052602060002090601f016020900481019282611b6a5760008555611bb0565b82601f10611b835782800160ff19823516178555611bb0565b82800160010185558215611bb0579182015b82811115611bb0578235825591602001919060010190611b95565b50611bbc929150611c6a565b5090565b828054611bcc906120d1565b90600052602060002090601f016020900481019282611bee5760008555611bb0565b82601f10611c0757805160ff1916838001178555611bb0565b82800160010185558215611bb0579182015b82811115611bb0578251825591602001919060010190611c19565b508054611c40906120d1565b6000825580601f10611c50575050565b601f0160209004906000526020600020908101906108c391905b5b80821115611bbc5760008155600101611c6b565b6001600160e01b0319811681146108c357600080fd5b600060208284031215611ca757600080fd5b813561137581611c7f565b60005b83811015611ccd578181015183820152602001611cb5565b838111156108375750506000910152565b60008151808452611cf6816020860160208601611cb2565b601f01601f19169290920160200192915050565b6020815260006113756020830184611cde565b600060208284031215611d2f57600080fd5b5035919050565b6001600160a01b03811681146108c357600080fd5b60008060408385031215611d5e57600080fd5b8235611d6981611d36565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611da857611da8611d77565b604051601f8501601f19908116603f01168101908282118183101715611dd057611dd0611d77565b81604052809350858152868686011115611de957600080fd5b858560208301376000602087830101525050509392505050565b60008060408385031215611e1657600080fd5b82359150602083013567ffffffffffffffff811115611e3457600080fd5b8301601f81018513611e4557600080fd5b611e5485823560208401611d8d565b9150509250929050565b600080600060608486031215611e7357600080fd5b8335611e7e81611d36565b92506020840135611e8e81611d36565b929592945050506040919091013590565b80151581146108c357600080fd5b600060208284031215611ebf57600080fd5b813561137581611e9f565b60008060208385031215611edd57600080fd5b823567ffffffffffffffff80821115611ef557600080fd5b818501915085601f830112611f0957600080fd5b813581811115611f1857600080fd5b866020828501011115611f2a57600080fd5b60209290920196919550909350505050565b600060208284031215611f4e57600080fd5b813561137581611d36565b80356001600160801b038116811461088e57600080fd5b600060208284031215611f8257600080fd5b61137582611f59565b60008060408385031215611f9e57600080fd5b8235611fa981611d36565b91506020830135611fb981611e9f565b809150509250929050565b60008060408385031215611fd757600080fd5b8235611fe281611d36565b9150611ff060208401611f59565b90509250929050565b6000806000806080858703121561200f57600080fd5b843561201a81611d36565b9350602085013561202a81611d36565b925060408501359150606085013567ffffffffffffffff81111561204d57600080fd5b8501601f8101871361205e57600080fd5b61206d87823560208401611d8d565b91505092959194509250565b60006020828403121561208b57600080fd5b813567ffffffffffffffff8116811461137557600080fd5b600080604083850312156120b657600080fd5b82356120c181611d36565b91506020830135611fb981611d36565b600181811c908216806120e557607f821691505b60208210810361210557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561216957612169612140565b500190565b60006020828403121561218057600080fd5b815161137581611e9f565b60008160001904831182151516156121a5576121a5612140565b500290565b600083516121bc818460208801611cb2565b8351908301906121d0818360208801611cb2565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061220c90830184611cde565b9695505050505050565b60006020828403121561222857600080fd5b815161137581611c7f56fea2646970667358221220a581f1e6ac4799933550f3b095e77ed9659620a51361e7a32348b27cb131dae164736f6c634300080d0033
Deployed Bytecode Sourcemap
71020:6822:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35359:631;;;;;;;;;;-1:-1:-1;35359:631:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35359:631:0;;;;;;;;73513:124;;;;;;;;;;-1:-1:-1;73605:22:0;;73513:124;;;738:25:1;;;726:2;711:18;73513:124:0;592:177:1;40632:104:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42842:212::-;;;;;;;;;;-1:-1:-1;42842:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;42842:212:0;1710:203:1;77058:161:0;;;;;;;;;;-1:-1:-1;77058:161:0;;;;;:::i;:::-;;:::i;:::-;;73067:163;;;;;;;;;;-1:-1:-1;73067:163:0;;;;;:::i;:::-;;:::i;34355:327::-;;;;;;;;;;-1:-1:-1;34629:12:0;;34408:7;34613:13;:28;34355:327;;77231:167;;;;;;;;;;-1:-1:-1;77231:167:0;;;;;:::i;:::-;;:::i;72435:164::-;;;;;;;;;;-1:-1:-1;72435:164:0;;;;;:::i;:::-;;:::i;2955:145::-;;;;;;;;;;;;3057:42;2955:145;;77410:175;;;;;;;;;;-1:-1:-1;77410:175:0;;;;;:::i;:::-;;:::i;76693:83::-;;;;;;;;;;-1:-1:-1;76693:83:0;;;;;:::i;:::-;;:::i;72945:110::-;;;;;;;;;;-1:-1:-1;72945:110:0;;;;;:::i;:::-;;:::i;40407:148::-;;;;;;;;;;-1:-1:-1;40407:148:0;;;;;:::i;:::-;;:::i;72005:37::-;;;;;;;;;;-1:-1:-1;72005:37:0;;;;-1:-1:-1;;;;;72005:37:0;;;;;;-1:-1:-1;;;;;5497:47:1;;;5479:66;;5467:2;5452:18;72005:37:0;5333:218:1;73653:282:0;;;;;;;;;;-1:-1:-1;73653:282:0;;;;;:::i;:::-;;:::i;36064:240::-;;;;;;;;;;-1:-1:-1;36064:240:0;;;;;:::i;:::-;;:::i;70053:107::-;;;;;;;;;;;;;:::i;71499:35::-;;;;;;;;;;;;;;;;74026:220;;;;;;:::i;:::-;;:::i;76448:233::-;;;;;;;;;;-1:-1:-1;76448:233:0;;;;;:::i;:::-;;:::i;69364:91::-;;;;;;;;;;-1:-1:-1;69439:6:0;;-1:-1:-1;;;;;69439:6:0;69364:91;;40815:108;;;;;;;;;;;;;:::i;75981:363::-;;;;;;;;;;-1:-1:-1;75981:363:0;;;;;:::i;:::-;;:::i;72055:108::-;;;;;;;;;;-1:-1:-1;72055:108:0;;;;;:::i;:::-;;:::i;76866:180::-;;;;;;;;;;-1:-1:-1;76866:180:0;;;;;:::i;:::-;;:::i;71805:32::-;;;;;;;;;;;;;;;;74309:259;;;;;;:::i;:::-;;:::i;72386:36::-;;;;;;;;;;-1:-1:-1;72386:36:0;;;;-1:-1:-1;;;72386:36:0;;;;;;77597:240;;;;;;;;;;-1:-1:-1;77597:240:0;;;;;:::i;:::-;;:::i;71547:246::-;;;;;;;;;;-1:-1:-1;71547:246:0;;;;;:::i;:::-;;:::i;62777:712::-;;;;;;;;;;-1:-1:-1;62777:712:0;;;;;:::i;:::-;;:::i;43535:168::-;;;;;;;;;;-1:-1:-1;43535:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;43658:25:0;;;43632:4;43658:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43535:168;70327:207;;;;;;;;;;-1:-1:-1;70327:207:0;;;;;:::i;:::-;;:::i;71850:143::-;;;;;;;;;;-1:-1:-1;71850:143:0;;;;;:::i;:::-;;:::i;35359:631::-;35444:4;-1:-1:-1;;;;;;;;;35754:25:0;;;;:104;;-1:-1:-1;;;;;;;;;;35833:25:0;;;35754:104;:183;;;-1:-1:-1;;;;;;;;;;35912:25:0;;;35754:183;35732:205;35359:631;-1:-1:-1;;35359:631:0:o;40632:104::-;40686:13;40721:5;40714:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40632:104;:::o;42842:212::-;42910:7;42937:16;42945:7;42937;:16::i;:::-;42932:64;;42962:34;;-1:-1:-1;;;42962:34:0;;;;;;;;;;;42932:64;-1:-1:-1;43020:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43020:24:0;;42842:212::o;77058:161::-;77154:8;4538:30;4559:8;4538:20;:30::i;:::-;77177:32:::1;77191:8;77201:7;77177:13;:32::i;:::-;77058:161:::0;;;:::o;73067:163::-;69439:6;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23;69592:68;;;;-1:-1:-1;;;69592:68:0;;;;;;;:::i;:::-;;;;;;;;;73169:32:::1;73182:7;73191:9;73169:12;:32::i;:::-;73067:163:::0;;:::o;77231:167::-;77332:4;-1:-1:-1;;;;;4344:18:0;;4352:10;4344:18;4340:87;;4381:32;4402:10;4381:20;:32::i;:::-;77351:37:::1;77370:4;77376:2;77380:7;77351:18;:37::i;:::-;77231:167:::0;;;;:::o;72435:164::-;69439:6;;72507:4;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23;69592:68;;;;-1:-1:-1;;;69592:68:0;;;;;;;:::i;:::-;-1:-1:-1;72526:16:0::1;:27:::0;;-1:-1:-1;;;;72526:27:0::1;-1:-1:-1::0;;;72526:27:0;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;72573:16:::0;::::1;;69673:1;72435:164:::0;;;:::o;77410:175::-;77515:4;-1:-1:-1;;;;;4344:18:0;;4352:10;4344:18;4340:87;;4381:32;4402:10;4381:20;:32::i;:::-;77534:41:::1;77557:4;77563:2;77567:7;77534:22;:41::i;76693:83::-:0;76746:20;76752:7;76761:4;76746:5;:20::i;:::-;76693:83;:::o;72945:110::-;69439:6;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23;69592:68;;;;-1:-1:-1;;;69592:68:0;;;;;;;:::i;:::-;73022:23:::1;:13;73038:7:::0;;73022:23:::1;:::i;40407:148::-:0;40471:7;40516:27;40535:7;40516:18;:27::i;73653:282::-;69439:6;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23;69592:68;;;;-1:-1:-1;;;69592:68:0;;;;;;;:::i;:::-;73765:14:::1;;73750:11;:29;;73742:68;;;::::0;-1:-1:-1;;;73742:68:0;;9663:2:1;73742:68:0::1;::::0;::::1;9645:21:1::0;9702:2;9682:18;;;9675:30;9741:28;9721:18;;;9714:56;9787:18;;73742:68:0::1;9461:350:1::0;73742:68:0::1;73845:1;73831:11;:15;73823:49;;;::::0;-1:-1:-1;;;73823:49:0;;10018:2:1;73823:49:0::1;::::0;::::1;10000:21:1::0;10057:2;10037:18;;;10030:30;-1:-1:-1;;;10076:18:1;;;10069:51;10137:18;;73823:49:0::1;9816:345:1::0;73823:49:0::1;73889:22;:36:::0;73653:282::o;36064:240::-;36128:7;36172:5;36182:1;36154:29;36150:70;;36192:28;;-1:-1:-1;;;36192:28:0;;;;;;;;;;;36150:70;-1:-1:-1;;;;;;36240:25:0;;;;;:18;:25;;;;;;31145:13;36240:54;;36064:240::o;70053:107::-;69439:6;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23;69592:68;;;;-1:-1:-1;;;69592:68:0;;;;;;;:::i;:::-;70120:30:::1;70147:1;70120:18;:30::i;:::-;70053:107::o:0;74026:220::-;74092:44;74113:10;74125;74092:20;:44::i;:::-;74208:28;74214:10;74225;74208:5;:28::i;76448:233::-;66361:1;66993:7;;:19;66985:63;;;;-1:-1:-1;;;66985:63:0;;10368:2:1;66985:63:0;;;10350:21:1;10407:2;10387:18;;;10380:30;10446:33;10426:18;;;10419:61;10497:18;;66985:63:0;10166:355:1;66985:63:0;66361:1;67132:7;:18;69439:6;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23:::1;69592:68;;;;-1:-1:-1::0;;;69592:68:0::1;;;;;;;:::i;:::-;76563:9:::2;76574:17:::0;76595:3:::2;-1:-1:-1::0;;;;;76595:8:0::2;76611:7;76595:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76562:61;;;;76644:4;76636:35;;;::::0;-1:-1:-1;;;76636:35:0;;10938:2:1;76636:35:0::2;::::0;::::2;10920:21:1::0;10977:2;10957:18;;;10950:30;-1:-1:-1;;;10996:18:1;;;10989:48;11054:18;;76636:35:0::2;10736:342:1::0;76636:35:0::2;-1:-1:-1::0;;66315:1:0;67323:7;:22;-1:-1:-1;;76448:233:0:o;40815:108::-;40871:13;40906:7;40899:14;;;;;:::i;75981:363::-;69439:6;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23;69592:68;;;;-1:-1:-1;;;69592:68:0;;;;;;;:::i;:::-;76250:17:::1;;76235:10;76219:13;34629:12:::0;;34408:7;34613:13;:28;;34355:327;76219:13:::1;:26;;;;:::i;:::-;76218:49;;76210:79;;;::::0;-1:-1:-1;;;76210:79:0;;11550:2:1;76210:79:0::1;::::0;::::1;11532:21:1::0;11589:2;11569:18;;;11562:30;-1:-1:-1;;;11608:18:1;;;11601:47;11665:18;;76210:79:0::1;11348:341:1::0;76210:79:0::1;76306:28;76312:9;76323:10;76306:5;:28::i;72055:108::-:0;69439:6;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23;69592:68;;;;-1:-1:-1;;;69592:68:0;;;;;;;:::i;:::-;72132:9:::1;:21:::0;;-1:-1:-1;;72132:21:0::1;-1:-1:-1::0;;;;;72132:21:0;;;::::1;::::0;;;::::1;::::0;;72055:108::o;76866:180::-;76970:8;4538:30;4559:8;4538:20;:30::i;:::-;76993:43:::1;77017:8;77027;76993:23;:43::i;74309:259::-:0;74406:48;74427:14;74443:10;-1:-1:-1;;;;;74406:48:0;:20;:48::i;:::-;74526:32;74532:14;74547:10;-1:-1:-1;;;;;74526:32:0;:5;:32::i;77597:240::-;77754:4;-1:-1:-1;;;;;4344:18:0;;4352:10;4344:18;4340:87;;4381:32;4402:10;4381:20;:32::i;:::-;77780:47:::1;77803:4;77809:2;77813:7;77822:4;77780:22;:47::i;:::-;77597:240:::0;;;;;:::o;71547:246::-;69439:6;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23;69592:68;;;;-1:-1:-1;;;69592:68:0;;;;;;;:::i;:::-;34629:12;;34408:7;34613:13;:28;71650:21:::1;:38;;;;71642:87;;;::::0;-1:-1:-1;;;71642:87:0;;11896:2:1;71642:87:0::1;::::0;::::1;11878:21:1::0;11935:2;11915:18;;;11908:30;11974:34;11954:18;;;11947:62;-1:-1:-1;;;12025:18:1;;;12018:34;12069:19;;71642:87:0::1;11694:400:1::0;71642:87:0::1;71742:41;;:17;:41:::0;71547:246::o;62777:712::-;62850:13;62878:16;62886:7;62878;:16::i;:::-;-1:-1:-1;62911:23:0;62937:19;;;:10;:19;;;;;62911:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62969:18;62990:10;:8;:10::i;:::-;62969:31;;63088:4;63082:18;63104:1;63082:23;:54;;;;63135:1;63115:9;63109:23;:27;63082:54;63078:107;;;-1:-1:-1;63162:9:0;62777:712;-1:-1:-1;;62777:712:0:o;63078:107::-;63456:23;63471:7;63456:14;:23::i;:::-;63449:30;62777:712;-1:-1:-1;;;;62777:712:0:o;70327:207::-;69439:6;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23;69592:68;;;;-1:-1:-1;;;69592:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;70418:22:0;::::1;70410:73;;;::::0;-1:-1:-1;;;70410:73:0;;12301:2:1;70410:73:0::1;::::0;::::1;12283:21:1::0;12340:2;12320:18;;;12313:30;12379:34;12359:18;;;12352:62;-1:-1:-1;;;12430:18:1;;;12423:36;12476:19;;70410:73:0::1;12099:402:1::0;70410:73:0::1;70496:28;70515:8;70496:18;:28::i;71850:143::-:0;69439:6;;-1:-1:-1;;;;;69439:6:0;68125:10;69600:23;69592:68;;;;-1:-1:-1;;;69592:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;71938:26:0::1;:14;:26:::0;71850:143::o;45012:283::-;45069:4;45165:13;;45155:7;:23;45110:156;;;;-1:-1:-1;;45218:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;45218:43:0;:48;;45012:283::o;4604:433::-;3057:42;4799:45;:49;4795:233;;4872:67;;-1:-1:-1;;;4872:67:0;;4923:4;4872:67;;;12718:34:1;-1:-1:-1;;;;;12788:15:1;;12768:18;;;12761:43;3057:42:0;;4872;;12653:18:1;;4872:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4867:148;;4969:28;;-1:-1:-1;;;4969:28:0;;-1:-1:-1;;;;;1874:32:1;;4969:28:0;;;1856:51:1;1829:18;;4969:28:0;1710:203:1;42262:504:0;42345:13;42377:27;42396:7;42377:18;:27::i;:::-;42345:61;;42429:5;-1:-1:-1;;;;;42423:11:0;:2;-1:-1:-1;;;;;42423:11:0;;42419:48;;42443:24;;-1:-1:-1;;;42443:24:0;;;;;;;;;;;42419:48;68125:10;-1:-1:-1;;;;;42488:28:0;;;42484:181;;42538:44;42555:5;68125:10;43535:168;:::i;42538:44::-;42533:132;;42612:35;;-1:-1:-1;;;42612:35:0;;;;;;;;;;;42533:132;42681:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42681:29:0;-1:-1:-1;;;;;42681:29:0;;;;;;;;;42728:28;;42681:24;;42728:28;;;;;;;42332:434;42262:504;;:::o;63663:387::-;63765:16;63773:7;63765;:16::i;:::-;63757:76;;;;-1:-1:-1;;;63757:76:0;;13267:2:1;63757:76:0;;;13249:21:1;13306:2;13286:18;;;13279:30;13345:34;13325:18;;;13318:62;-1:-1:-1;;;13396:18:1;;;13389:45;13451:19;;63757:76:0;13065:411:1;63757:76:0;63854:23;;:27;63850:191;;63911:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;63850:191::-;64008:19;;;;:10;:19;;;;;64001:26;;;:::i;43780:182::-;43924:28;43934:4;43940:2;43944:7;43924:9;:28::i;44043:197::-;44191:39;44208:4;44214:2;44218:7;44191:39;;;;;;;;;;;;:16;:39::i;53755:3065::-;53837:27;53867;53886:7;53867:18;:27::i;:::-;53911:12;54002:24;;;:15;:24;;;;;;53837:57;;-1:-1:-1;53837:57:0;;-1:-1:-1;;;;;54002:24:0;54043:318;;;;54079:22;68125:10;-1:-1:-1;;;;;54105:27:0;;;;:93;;-1:-1:-1;54155:43:0;54172:4;68125:10;43535:168;:::i;54155:43::-;54105:154;;;-1:-1:-1;;;;;;54221:38:0;;68125:10;54221:38;54105:154;54079:181;;54286:17;54281:66;;54312:35;;-1:-1:-1;;;54312:35:0;;;;;;;;;;;54281:66;54062:299;54043:318;54522:15;54504:39;54500:107;;54569:24;;;;:15;:24;;;;;54562:31;;-1:-1:-1;;;;;;54562:31:0;;;54500:107;-1:-1:-1;;;;;55219:24:0;;;;;;:18;:24;;;;;;;;:59;;-1:-1:-1;;;;;55219:59:0;;;55530:26;;;:17;:26;;;;;-1:-1:-1;;;55624:15:0;31829:3;55624:41;55578:88;;:170;55530:218;;-1:-1:-1;;;55874:46:0;;:51;;55870:646;;55980:1;55970:11;;55948:19;56107:30;;;:17;:30;;;;;;:35;;56103:396;;56249:13;;56234:11;:28;56230:248;;56400:30;;;;:17;:30;;;;;:52;;;56230:248;55927:589;55870:646;56550:35;;56577:7;;56573:1;;-1:-1:-1;;;;;56550:35:0;;;;;56573:1;;56550:35;-1:-1:-1;;56783:12:0;:14;;;;;;-1:-1:-1;;;53755:3065:0:o;37798:1177::-;37865:7;37902;38012:13;;38005:4;:20;38001:901;;;38052:14;38069:23;;;:17;:23;;;;;;;-1:-1:-1;;;38162:23:0;;:28;;38158:723;;38697:117;38704:6;38714:1;38704:11;38697:117;;-1:-1:-1;;;38777:6:0;38759:25;;;;:17;:25;;;;;;38697:117;;;38849:6;37798:1177;-1:-1:-1;;;37798:1177:0:o;38158:723::-;38027:875;38001:901;38934:31;;-1:-1:-1;;;38934:31:0;;;;;;;;;;;70706:199;70801:6;;;-1:-1:-1;;;;;70820:17:0;;;-1:-1:-1;;;;;;70820:17:0;;;;;;;70855:40;;70801:6;;;70820:17;70801:6;;70855:40;;70782:16;;70855:40;70769:136;70706:199;:::o;74665:1142::-;74753:20;74776:13;34629:12;;34408:7;34613:13;:28;;34355:327;74776:13;74889:17;;74753:36;;-1:-1:-1;74859:25:0;74874:10;74753:36;74859:25;:::i;:::-;74858:48;;74850:83;;;;-1:-1:-1;;;74850:83:0;;13683:2:1;74850:83:0;;;13665:21:1;13722:2;13702:18;;;13695:30;-1:-1:-1;;;13741:18:1;;;13734:52;13803:18;;74850:83:0;13481:346:1;74850:83:0;75011:1;74998:10;:14;74990:47;;;;-1:-1:-1;;;74990:47:0;;14034:2:1;74990:47:0;;;14016:21:1;14073:2;14053:18;;;14046:30;-1:-1:-1;;;14092:18:1;;;14085:50;14152:18;;74990:47:0;13832:344:1;74990:47:0;75134:22;;75120:10;:36;;75112:85;;;;-1:-1:-1;;;75112:85:0;;14383:2:1;75112:85:0;;;14365:21:1;14422:2;14402:18;;;14395:30;14461:34;14441:18;;;14434:62;-1:-1:-1;;;14512:18:1;;;14505:34;14556:19;;75112:85:0;14181:400:1;75112:85:0;75263:16;;-1:-1:-1;;;75263:16:0;;;;75255:51;;;;-1:-1:-1;;;75255:51:0;;14788:2:1;75255:51:0;;;14770:21:1;14827:2;14807:18;;;14800:30;-1:-1:-1;;;14846:18:1;;;14839:52;14908:18;;75255:51:0;14586:346:1;75255:51:0;75466:14;;75451:10;75428:20;75438:9;75428;:20::i;:::-;:33;;;;:::i;:::-;75427:53;;75403:131;;;;-1:-1:-1;;;75403:131:0;;15139:2:1;75403:131:0;;;15121:21:1;15178:2;15158:18;;;15151:30;-1:-1:-1;;;15197:18:1;;;15190:52;15259:18;;75403:131:0;14937:346:1;75403:131:0;75639:9;;75618:18;;75639:22;;75651:10;;-1:-1:-1;;;;;75639:9:0;:22;:::i;:::-;75618:43;;75715:10;75702:9;:23;75678:96;;;;-1:-1:-1;;;75678:96:0;;15663:2:1;75678:96:0;;;15645:21:1;15702:2;15682:18;;;15675:30;-1:-1:-1;;;15721:18:1;;;15714:47;15778:18;;75678:96:0;15461:341:1;48529:1742:0;48596:20;48619:13;48667:2;48674:1;48649:26;48645:58;;48684:19;;-1:-1:-1;;;48684:19:0;;;;;;;;;;;48645:58;48720:8;48732:1;48720:13;48716:44;;48742:18;;-1:-1:-1;;;48742:18:0;;;;;;;;;;;48716:44;-1:-1:-1;;;;;49335:22:0;;;;;;:18;:22;;;;31288:2;49335:22;;;:70;;49373:31;49361:44;;49335:70;;;49662:31;;;:17;:31;;;;;49759:15;31829:3;49759:41;49715:86;;-1:-1:-1;49839:13:0;;32100:3;49824:56;49715:166;49662:219;;:31;49968:23;;;50012:115;50041:40;;50066:14;;;;;-1:-1:-1;;;;;50041:40:0;;;50058:1;;50041:40;;50058:1;;50041:40;50122:3;50107:12;:18;50012:115;;-1:-1:-1;50147:13:0;:28;77058:161;;;:::o;43136:318::-;68125:10;-1:-1:-1;;;;;43237:31:0;;;43233:61;;43277:17;;-1:-1:-1;;;43277:17:0;;;;;;;;;;;43233:61;68125:10;43311:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;43311:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;43311:60:0;;;;;;;;;;43389:55;;540:41:1;;;43311:49:0;;68125:10;43389:55;;513:18:1;43389:55:0;;;;;;;43136:318;;:::o;44321:418::-;44500:28;44510:4;44516:2;44520:7;44500:9;:28::i;:::-;-1:-1:-1;;;;;44545:14:0;;;:19;44541:189;;44586:56;44617:4;44623:2;44627:7;44636:5;44586:30;:56::i;:::-;44581:149;;44672:40;;-1:-1:-1;;;44672:40:0;;;;;;;;;;;72815:118;72875:13;72910;72903:20;;;;;:::i;41004:328::-;41077:13;41110:16;41118:7;41110;:16::i;:::-;41105:59;;41135:29;;-1:-1:-1;;;41135:29:0;;;;;;;;;;;41105:59;41181:21;41205:10;:8;:10::i;:::-;41181:34;;41241:7;41235:21;41260:1;41235:26;:87;;;;;;;;;;;;;;;;;41288:7;41297:18;41307:7;41297:9;:18::i;:::-;41271:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41228:94;41004:328;-1:-1:-1;;;41004:328:0:o;50549:2772::-;50674:27;50704;50723:7;50704:18;:27::i;:::-;50674:57;;50793:4;-1:-1:-1;;;;;50752:45:0;50768:19;-1:-1:-1;;;;;50752:45:0;;50748:86;;50806:28;;-1:-1:-1;;;50806:28:0;;;;;;;;;;;50748:86;50851:23;50877:24;;;:15;:24;;;;;;-1:-1:-1;;;;;50877:24:0;;;;50851:23;50944:27;;68125:10;50944:27;;:89;;-1:-1:-1;50990:43:0;51007:4;68125:10;43535:168;:::i;50990:43::-;50944:146;;;-1:-1:-1;;;;;;51052:38:0;;68125:10;51052:38;50944:146;50918:173;;51113:17;51108:66;;51139:35;;-1:-1:-1;;;51139:35:0;;;;;;;;;;;51108:66;51209:2;51216:1;51191:26;51187:62;;51226:23;;-1:-1:-1;;;51226:23:0;;;;;;;;;;;51187:62;51403:15;51385:39;51381:107;;51450:24;;;;:15;:24;;;;;51443:31;;-1:-1:-1;;;;;;51443:31:0;;;51381:107;-1:-1:-1;;;;;51869:24:0;;;;;;;:18;:24;;;;;;;;51867:26;;-1:-1:-1;;51867:26:0;;;51940:22;;;;;;;;51938:24;;-1:-1:-1;51938:24:0;;;52247:26;;;:17;:26;;;;;-1:-1:-1;;;52339:15:0;31829:3;52339:41;52295:86;;:132;;52247:180;;;52553:46;;:51;;52549:646;;52659:1;52649:11;;52627:19;52786:30;;;:17;:30;;;;;;:35;;52782:396;;52928:13;;52913:11;:28;52909:248;;53079:30;;;;:17;:30;;;;;:52;;;52909:248;52606:589;52549:646;53248:7;53244:2;-1:-1:-1;;;;;53229:27:0;53238:4;-1:-1:-1;;;;;53229:27:0;;;;;;;;;;;50661:2660;;;50549:2772;;;:::o;57334:754::-;57530:88;;-1:-1:-1;;;57530:88:0;;57507:4;;-1:-1:-1;;;;;57530:45:0;;;;;:88;;68125:10;;57597:4;;57603:7;;57612:5;;57530:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57530:88:0;;;;;;;;-1:-1:-1;;57530:88:0;;;;;;;;;;;;:::i;:::-;;;57526:553;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57823:6;:13;57840:1;57823:18;57819:247;;57871:40;;-1:-1:-1;;;57871:40:0;;;;;;;;;;;57819:247;58020:6;58014:13;58005:6;58001:2;57997:15;57990:38;57526:553;-1:-1:-1;;;;;;57695:64:0;-1:-1:-1;;;57695:64:0;;-1:-1:-1;57334:754:0;;;;;;:::o;60232:2021::-;60713:4;60707:11;;60720:3;60703:21;;60802:17;;;;61524:11;;;61399:5;61660:2;61674;61664:13;;61656:22;61524:11;61643:36;61717:2;61707:13;;61287:708;61738:4;61287:708;;;61920:1;61915:3;61911:11;61904:18;;61973:2;61967:4;61963:13;61959:2;61955:22;61950:3;61942:36;61837:2;61827:13;;61287:708;;;-1:-1:-1;62029:13:0;;;-1:-1:-1;;62148:12:0;;;62212:19;;;62148:12;60232:2021;-1:-1:-1;60232:2021:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:131::-;-1:-1:-1;;;;;1993:31:1;;1983:42;;1973:70;;2039:1;2036;2029:12;2054:315;2122:6;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2238:9;2225:23;2257:31;2282:5;2257:31;:::i;:::-;2307:5;2359:2;2344:18;;;;2331:32;;-1:-1:-1;;;2054:315:1:o;2374:127::-;2435:10;2430:3;2426:20;2423:1;2416:31;2466:4;2463:1;2456:15;2490:4;2487:1;2480:15;2506:632;2571:5;2601:18;2642:2;2634:6;2631:14;2628:40;;;2648:18;;:::i;:::-;2723:2;2717:9;2691:2;2777:15;;-1:-1:-1;;2773:24:1;;;2799:2;2769:33;2765:42;2753:55;;;2823:18;;;2843:22;;;2820:46;2817:72;;;2869:18;;:::i;:::-;2909:10;2905:2;2898:22;2938:6;2929:15;;2968:6;2960;2953:22;3008:3;2999:6;2994:3;2990:16;2987:25;2984:45;;;3025:1;3022;3015:12;2984:45;3075:6;3070:3;3063:4;3055:6;3051:17;3038:44;3130:1;3123:4;3114:6;3106;3102:19;3098:30;3091:41;;;;2506:632;;;;;:::o;3143:519::-;3221:6;3229;3282:2;3270:9;3261:7;3257:23;3253:32;3250:52;;;3298:1;3295;3288:12;3250:52;3334:9;3321:23;3311:33;;3395:2;3384:9;3380:18;3367:32;3422:18;3414:6;3411:30;3408:50;;;3454:1;3451;3444:12;3408:50;3477:22;;3530:4;3522:13;;3518:27;-1:-1:-1;3508:55:1;;3559:1;3556;3549:12;3508:55;3582:74;3648:7;3643:2;3630:16;3625:2;3621;3617:11;3582:74;:::i;:::-;3572:84;;;3143:519;;;;;:::o;3667:456::-;3744:6;3752;3760;3813:2;3801:9;3792:7;3788:23;3784:32;3781:52;;;3829:1;3826;3819:12;3781:52;3868:9;3855:23;3887:31;3912:5;3887:31;:::i;:::-;3937:5;-1:-1:-1;3994:2:1;3979:18;;3966:32;4007:33;3966:32;4007:33;:::i;:::-;3667:456;;4059:7;;-1:-1:-1;;;4113:2:1;4098:18;;;;4085:32;;3667:456::o;4128:118::-;4214:5;4207:13;4200:21;4193:5;4190:32;4180:60;;4236:1;4233;4226:12;4251:241;4307:6;4360:2;4348:9;4339:7;4335:23;4331:32;4328:52;;;4376:1;4373;4366:12;4328:52;4415:9;4402:23;4434:28;4456:5;4434:28;:::i;4736:592::-;4807:6;4815;4868:2;4856:9;4847:7;4843:23;4839:32;4836:52;;;4884:1;4881;4874:12;4836:52;4924:9;4911:23;4953:18;4994:2;4986:6;4983:14;4980:34;;;5010:1;5007;5000:12;4980:34;5048:6;5037:9;5033:22;5023:32;;5093:7;5086:4;5082:2;5078:13;5074:27;5064:55;;5115:1;5112;5105:12;5064:55;5155:2;5142:16;5181:2;5173:6;5170:14;5167:34;;;5197:1;5194;5187:12;5167:34;5242:7;5237:2;5228:6;5224:2;5220:15;5216:24;5213:37;5210:57;;;5263:1;5260;5253:12;5210:57;5294:2;5286:11;;;;;5316:6;;-1:-1:-1;4736:592:1;;-1:-1:-1;;;;4736:592:1:o;5556:247::-;5615:6;5668:2;5656:9;5647:7;5643:23;5639:32;5636:52;;;5684:1;5681;5674:12;5636:52;5723:9;5710:23;5742:31;5767:5;5742:31;:::i;6136:188::-;6204:20;;-1:-1:-1;;;;;6253:46:1;;6243:57;;6233:85;;6314:1;6311;6304:12;6329:186;6388:6;6441:2;6429:9;6420:7;6416:23;6412:32;6409:52;;;6457:1;6454;6447:12;6409:52;6480:29;6499:9;6480:29;:::i;6520:382::-;6585:6;6593;6646:2;6634:9;6625:7;6621:23;6617:32;6614:52;;;6662:1;6659;6652:12;6614:52;6701:9;6688:23;6720:31;6745:5;6720:31;:::i;:::-;6770:5;-1:-1:-1;6827:2:1;6812:18;;6799:32;6840:30;6799:32;6840:30;:::i;:::-;6889:7;6879:17;;;6520:382;;;;;:::o;6907:321::-;6975:6;6983;7036:2;7024:9;7015:7;7011:23;7007:32;7004:52;;;7052:1;7049;7042:12;7004:52;7091:9;7078:23;7110:31;7135:5;7110:31;:::i;:::-;7160:5;-1:-1:-1;7184:38:1;7218:2;7203:18;;7184:38;:::i;:::-;7174:48;;6907:321;;;;;:::o;7233:795::-;7328:6;7336;7344;7352;7405:3;7393:9;7384:7;7380:23;7376:33;7373:53;;;7422:1;7419;7412:12;7373:53;7461:9;7448:23;7480:31;7505:5;7480:31;:::i;:::-;7530:5;-1:-1:-1;7587:2:1;7572:18;;7559:32;7600:33;7559:32;7600:33;:::i;:::-;7652:7;-1:-1:-1;7706:2:1;7691:18;;7678:32;;-1:-1:-1;7761:2:1;7746:18;;7733:32;7788:18;7777:30;;7774:50;;;7820:1;7817;7810:12;7774:50;7843:22;;7896:4;7888:13;;7884:27;-1:-1:-1;7874:55:1;;7925:1;7922;7915:12;7874:55;7948:74;8014:7;8009:2;7996:16;7991:2;7987;7983:11;7948:74;:::i;:::-;7938:84;;;7233:795;;;;;;;:::o;8033:284::-;8091:6;8144:2;8132:9;8123:7;8119:23;8115:32;8112:52;;;8160:1;8157;8150:12;8112:52;8199:9;8186:23;8249:18;8242:5;8238:30;8231:5;8228:41;8218:69;;8283:1;8280;8273:12;8322:388;8390:6;8398;8451:2;8439:9;8430:7;8426:23;8422:32;8419:52;;;8467:1;8464;8457:12;8419:52;8506:9;8493:23;8525:31;8550:5;8525:31;:::i;:::-;8575:5;-1:-1:-1;8632:2:1;8617:18;;8604:32;8645:33;8604:32;8645:33;:::i;8715:380::-;8794:1;8790:12;;;;8837;;;8858:61;;8912:4;8904:6;8900:17;8890:27;;8858:61;8965:2;8957:6;8954:14;8934:18;8931:38;8928:161;;9011:10;9006:3;9002:20;8999:1;8992:31;9046:4;9043:1;9036:15;9074:4;9071:1;9064:15;8928:161;;8715:380;;;:::o;9100:356::-;9302:2;9284:21;;;9321:18;;;9314:30;9380:34;9375:2;9360:18;;9353:62;9447:2;9432:18;;9100:356::o;11083:127::-;11144:10;11139:3;11135:20;11132:1;11125:31;11175:4;11172:1;11165:15;11199:4;11196:1;11189:15;11215:128;11255:3;11286:1;11282:6;11279:1;11276:13;11273:39;;;11292:18;;:::i;:::-;-1:-1:-1;11328:9:1;;11215:128::o;12815:245::-;12882:6;12935:2;12923:9;12914:7;12910:23;12906:32;12903:52;;;12951:1;12948;12941:12;12903:52;12983:9;12977:16;13002:28;13024:5;13002:28;:::i;15288:168::-;15328:7;15394:1;15390;15386:6;15382:14;15379:1;15376:21;15371:1;15364:9;15357:17;15353:45;15350:71;;;15401:18;;:::i;:::-;-1:-1:-1;15441:9:1;;15288:168::o;15807:470::-;15986:3;16024:6;16018:13;16040:53;16086:6;16081:3;16074:4;16066:6;16062:17;16040:53;:::i;:::-;16156:13;;16115:16;;;;16178:57;16156:13;16115:16;16212:4;16200:17;;16178:57;:::i;:::-;16251:20;;15807:470;-1:-1:-1;;;;15807:470:1:o;16282:489::-;-1:-1:-1;;;;;16551:15:1;;;16533:34;;16603:15;;16598:2;16583:18;;16576:43;16650:2;16635:18;;16628:34;;;16698:3;16693:2;16678:18;;16671:31;;;16476:4;;16719:46;;16745:19;;16737:6;16719:46;:::i;:::-;16711:54;16282:489;-1:-1:-1;;;;;;16282:489:1:o;16776:249::-;16845:6;16898:2;16886:9;16877:7;16873:23;16869:32;16866:52;;;16914:1;16911;16904:12;16866:52;16946:9;16940:16;16965:30;16989:5;16965:30;:::i
Swarm Source
ipfs://a581f1e6ac4799933550f3b095e77ed9659620a51361e7a32348b27cb131dae1
Loading...
Loading
Loading...
Loading
OVERVIEW
A DAO built by women who are a reference in the areas of technology, culture, entrepreneurship and the financial market.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.