Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
777 UNK
Holders
208
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 UNKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UnknownSociety
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-27 */ // File: operator-filter-registry/src/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: operator-filter-registry/src/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: operator-filter-registry/src/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: @openzeppelin/contracts/security/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: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_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) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @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: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.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(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // 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` // - [232..255] `extraData` 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 (owner == address(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 auxiliary 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 auxiliary 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; // Cast `aux` with assembly to avoid redundant masking. assembly { 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; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * 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 Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); 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-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 { transferFrom(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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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 Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @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: contracts/UnknownSociety.sol pragma solidity ^0.8.17; contract UnknownSociety is DefaultOperatorFilterer, ERC721A, Ownable, ReentrancyGuard { enum SaleStage{ INACTIVE, WHITELIST, SOLDOUT } enum MintType{ TEAM, WHITELIST, AIRDROP } string private _URI = "https://unknown777.net/nft/metadata/unrevealed.json?"; address private signer; uint256 private salePrice = 0.069 ether; SaleStage public saleStage = SaleStage.INACTIVE; uint256 public constant MAX_SUPPLY = 777; uint256 public constant maxPerWallet = 1; mapping(MintType => uint256) public supply; mapping(MintType => uint256) public minted; mapping(address => uint256) public walletMint; struct Airdrop { address holder; uint256 amount; } event Minted(address sender, uint amount, MintType mintType); constructor() ERC721A("Unknown Society", "UNK") { signer = msg.sender; supply[MintType.TEAM] = 10; supply[MintType.WHITELIST] = 767; } function setSaleStage(SaleStage _newStage) external onlyOwner { saleStage = _newStage; } function setPrice(uint256 _salePrice) external onlyOwner { salePrice = _salePrice; } function adjustSupply(MintType _type, uint256 _newSupply) external onlyOwner { require(_newSupply + 1 > minted[_type], "Cannot adjust supply below minted"); supply[_type] = _newSupply; } function setBaseURI(string memory _newURI) external onlyOwner { _URI = _newURI; } function setSigner(address _signer) external onlyOwner { signer = _signer; } function _baseURI() internal view virtual override returns (string memory) { return _URI; } function ownerMint(MintType _type, address receiver, uint256 amount) external validateSupply(_type, amount) onlyOwner { minted[_type] += amount; _mint(receiver, amount); emit Minted(receiver, amount, _type); } function whitelistMint(bytes calldata signature, uint256 amount) external payable validateMint(SaleStage.WHITELIST, amount) validateSupply(MintType.WHITELIST, amount) nonReentrant { require(_isVerifiedSignature(signature), "Invalid Signature"); minted[MintType.WHITELIST] += amount; walletMint[msg.sender] += amount; _mint(msg.sender, amount); emit Minted(msg.sender, amount, MintType.WHITELIST); } function sendAirdrop(Airdrop[] memory _aidrops) external onlyOwner { for (uint256 i = 0; i < _aidrops.length; ++i) { minted[MintType.AIRDROP] += _aidrops[i].amount; _mint(_aidrops[i].holder, _aidrops[i].amount); } } function _isVerifiedSignature(bytes calldata signature) internal view returns (bool) { bytes32 digest = keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", bytes32(uint256(uint160(msg.sender))) ) ); return ECDSA.recover(digest, signature) == signer; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } 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); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } modifier validateSupply(MintType _type, uint256 amount) { require(minted[_type] + amount < supply[_type] + 1, "Mint would exceed supply"); require(totalSupply() + amount < MAX_SUPPLY + 1, "Mint would exceed max supply"); _; } modifier validateMint(SaleStage _stage, uint256 amount) { require(_stage != SaleStage.SOLDOUT, "Sold Out"); require(_stage == saleStage, "Current type of sale is not active"); require(walletMint[msg.sender] + amount < maxPerWallet + 1, "Max mint per wallet"); require(msg.value >= salePrice * amount, "Ether value sent is not correct"); _; } }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","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":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum UnknownSociety.MintType","name":"mintType","type":"uint8"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum UnknownSociety.MintType","name":"_type","type":"uint8"},{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"adjustSupply","outputs":[],"stateMutability":"nonpayable","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":"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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum UnknownSociety.MintType","name":"","type":"uint8"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum UnknownSociety.MintType","name":"_type","type":"uint8"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStage","outputs":[{"internalType":"enum UnknownSociety.SaleStage","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct UnknownSociety.Airdrop[]","name":"_aidrops","type":"tuple[]"}],"name":"sendAirdrop","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum UnknownSociety.SaleStage","name":"_newStage","type":"uint8"}],"name":"setSaleStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum UnknownSociety.MintType","name":"","type":"uint8"}],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"","type":"address"}],"name":"walletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260346080818152906200295660a039600a906200002290826200037d565b5066f5232269808000600c55600d805460ff191690553480156200004557600080fd5b50604080518082018252600f81526e556e6b6e6f776e20536f636965747960881b60208083019190915282518084019093526003835262554e4b60e81b9083015290733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b15620001e35780156200013157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200011257600080fd5b505af115801562000127573d6000803e3d6000fd5b50505050620001e3565b6001600160a01b03821615620001825760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000f7565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001c957600080fd5b505af1158015620001de573d6000803e3d6000fd5b505050505b5060029050620001f483826200037d565b5060036200020382826200037d565b5050600160005550620002163362000286565b60016009819055600b80546001600160a01b03191633179055600e602052600a7fe710864318d4a32f37d6ce54cb3fadbef648dd12d8dbdf53973564d56b7f881c556000526102ff7fa7c5ba7114a813b50159add3a36832908dc83db71d0b9a24c2ad0f83be9582075562000449565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200030357607f821691505b6020821081036200032457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200037857600081815260208120601f850160051c81016020861015620003535750805b601f850160051c820191505b8181101562000374578281556001016200035f565b5050505b505050565b81516001600160401b03811115620003995762000399620002d8565b620003b181620003aa8454620002ee565b846200032a565b602080601f831160018114620003e95760008415620003d05750858301515b600019600386901b1c1916600185901b17855562000374565b600085815260208120601f198616915b828110156200041a57888601518255948401946001909101908401620003f9565b5085821015620004395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6124fd80620004596000396000f3fe6080604052600436106101ee5760003560e01c80634f054d871161010d57806391b7f5ed116100a0578063b88d4fde1161006f578063b88d4fde1461059a578063c87b56dd146105ba578063c8dbbd36146105da578063e985e9c5146105fa578063f2fde38b1461061a57600080fd5b806391b7f5ed1461052557806395d89b4114610545578063a22cb4651461055a578063b44c57671461057a57600080fd5b80636c19e783116100dc5780636c19e783146104b257806370a08231146104d2578063715018a6146104f25780638da5cb5b1461050757600080fd5b80634f054d871461043257806355f804b31461045257806362c8975d146104725780636352211e1461049257600080fd5b806323b872dd1161018557806341f434341161015457806341f43434146103b457806342842e0e146103d6578063453c2310146103f65780634aaca86d1461040b57600080fd5b806323b872dd1461033c57806331b4562e1461035c57806332cb6b0c146103895780633ccfd60b1461039f57600080fd5b8063095ea7b3116101c1578063095ea7b3146102975780630cabd0a6146102b75780631056ae31146102f257806318160ddd1461031f57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a57806308e3f86814610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611d0e565b61063a565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61068c565b60405161021f9190611d7b565b34801561025657600080fd5b5061026a610265366004611d8e565b61071e565b6040516001600160a01b03909116815260200161021f565b610295610290366004611da7565b610762565b005b3480156102a357600080fd5b506102956102b2366004611e3b565b610b4b565b3480156102c357600080fd5b506102e46102d2366004611e72565b600f6020526000908152604090205481565b60405190815260200161021f565b3480156102fe57600080fd5b506102e461030d366004611e8f565b60106020526000908152604090205481565b34801561032b57600080fd5b5060015460005403600019016102e4565b34801561034857600080fd5b50610295610357366004611eaa565b610b64565b34801561036857600080fd5b506102e4610377366004611e72565b600e6020526000908152604090205481565b34801561039557600080fd5b506102e461030981565b3480156103ab57600080fd5b50610295610b8f565b3480156103c057600080fd5b5061026a6daaeb6d7670e522a718067333cd4e81565b3480156103e257600080fd5b506102956103f1366004611eaa565b610bca565b34801561040257600080fd5b506102e4600181565b34801561041757600080fd5b50600d546104259060ff1681565b60405161021f9190611f1a565b34801561043e57600080fd5b5061029561044d366004611f2d565b610bef565b34801561045e57600080fd5b5061029561046d366004612015565b610dcd565b34801561047e57600080fd5b5061029561048d36600461205e565b610de1565b34801561049e57600080fd5b5061026a6104ad366004611d8e565b610eb2565b3480156104be57600080fd5b506102956104cd366004611e8f565b610ebd565b3480156104de57600080fd5b506102e46104ed366004611e8f565b610ee7565b3480156104fe57600080fd5b50610295610f36565b34801561051357600080fd5b506008546001600160a01b031661026a565b34801561053157600080fd5b50610295610540366004611d8e565b610f4a565b34801561055157600080fd5b5061023d610f57565b34801561056657600080fd5b50610295610575366004612140565b610f66565b34801561058657600080fd5b50610295610595366004611e72565b610f7a565b3480156105a657600080fd5b506102956105b5366004612177565b610fa9565b3480156105c657600080fd5b5061023d6105d5366004611d8e565b610fd6565b3480156105e657600080fd5b506102956105f53660046121f3565b61105a565b34801561060657600080fd5b50610213610615366004612211565b611139565b34801561062657600080fd5b50610295610635366004611e8f565b611167565b60006301ffc9a760e01b6001600160e01b03198316148061066b57506380ac58cd60e01b6001600160e01b03198316145b806106865750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461069b90612244565b80601f01602080910402602001604051908101604052809291908181526020018280546106c790612244565b80156107145780601f106106e957610100808354040283529160200191610714565b820191906000526020600020905b8154815290600101906020018083116106f757829003601f168201915b5050505050905090565b6000610729826111e0565b610746576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600181610773565b60405180910390fd5b600d5460ff16600281111561078a5761078a611ee6565b82600281111561079c5761079c611ee6565b146107f45760405162461bcd60e51b815260206004820152602260248201527f43757272656e742074797065206f662073616c65206973206e6f742061637469604482015261766560f01b606482015260840161076a565b6107ff600180612294565b3360009081526010602052604090205461081a908390612294565b1061085d5760405162461bcd60e51b815260206004820152601360248201527213585e081b5a5b9d081c195c881dd85b1b195d606a1b604482015260640161076a565b80600c5461086b91906122a7565b3410156108ba5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161076a565b60016000819052600e6020527fa7c5ba7114a813b50159add3a36832908dc83db71d0b9a24c2ad0f83be9582075484906108f49083612294565b81600f600085600281111561090b5761090b611ee6565b600281111561091c5761091c611ee6565b8152602001908152602001600020546109359190612294565b1061097d5760405162461bcd60e51b81526020600482015260186024820152774d696e7420776f756c642065786365656420737570706c7960401b604482015260640161076a565b61098a6103096001612294565b60015460005483919003600019016109a29190612294565b106109ef5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c7900000000604482015260640161076a565b600260095403610a415760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076a565b6002600955610a508787611215565b610a905760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b604482015260640161076a565b60016000908152600f6020527f169f97de0d9a84d840042b17d3c6b9638b3d6fd9024c9eb0c7a306a17b49f88f8054879290610acd908490612294565b90915550503360009081526010602052604081208054879290610af1908490612294565b90915550610b01905033866112c1565b7fdcb23284f3935b5557998e99dcc286e29744c5000723d99eecd5d6f5694f6e1133866001604051610b35939291906122be565b60405180910390a1505060016009555050505050565b81610b55816113a1565b610b5f838361145a565b505050565b826001600160a01b0381163314610b7e57610b7e336113a1565b610b898484846114fa565b50505050565b610b97611693565b6040514790339082156108fc029083906000818181858888f19350505050158015610bc6573d6000803e3d6000fd5b5050565b826001600160a01b0381163314610be457610be4336113a1565b610b898484846116ed565b8281600e6000836002811115610c0757610c07611ee6565b6002811115610c1857610c18611ee6565b8152602001908152602001600020546001610c339190612294565b81600f6000856002811115610c4a57610c4a611ee6565b6002811115610c5b57610c5b611ee6565b815260200190815260200160002054610c749190612294565b10610cbc5760405162461bcd60e51b81526020600482015260186024820152774d696e7420776f756c642065786365656420737570706c7960401b604482015260640161076a565b610cc96103096001612294565b6001546000548391900360001901610ce19190612294565b10610d2e5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c7900000000604482015260640161076a565b610d36611693565b82600f6000876002811115610d4d57610d4d611ee6565b6002811115610d5e57610d5e611ee6565b81526020019081526020016000206000828254610d7b9190612294565b90915550610d8b905084846112c1565b7fdcb23284f3935b5557998e99dcc286e29744c5000723d99eecd5d6f5694f6e11848487604051610dbe939291906122be565b60405180910390a15050505050565b610dd5611693565b600a610bc68282612332565b610de9611693565b60005b8151811015610bc657818181518110610e0757610e076123f2565b602002602001015160200151600f6000600280811115610e2957610e29611ee6565b6002811115610e3a57610e3a611ee6565b81526020019081526020016000206000828254610e579190612294565b92505081905550610ea2828281518110610e7357610e736123f2565b602002602001015160000151838381518110610e9157610e916123f2565b6020026020010151602001516112c1565b610eab81612408565b9050610dec565b600061068682611708565b610ec5611693565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610f10576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610f3e611693565b610f486000611777565b565b610f52611693565b600c55565b60606003805461069b90612244565b81610f70816113a1565b610b5f83836117c9565b610f82611693565b600d805482919060ff19166001836002811115610fa157610fa1611ee6565b021790555050565b836001600160a01b0381163314610fc357610fc3336113a1565b610fcf8585858561185e565b5050505050565b6060610fe1826111e0565b610ffe57604051630a14c4b560e41b815260040160405180910390fd5b60006110086118a2565b905080516000036110285760405180602001604052806000815250611053565b80611032846118b1565b604051602001611043929190612421565b6040516020818303038152906040525b9392505050565b611062611693565b600f600083600281111561107857611078611ee6565b600281111561108957611089611ee6565b8152602001908152602001600020548160016110a59190612294565b116110fc5760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f742061646a75737420737570706c792062656c6f77206d696e74656044820152601960fa1b606482015260840161076a565b80600e600084600281111561111357611113611ee6565b600281111561112457611124611ee6565b81526020810191909152604001600020555050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61116f611693565b6001600160a01b0381166111d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076a565b6111dd81611777565b50565b6000816001111580156111f4575060005482105b8015610686575050600090815260046020526040902054600160e01b161590565b6040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c8201526000908190605c0160408051601f198184030181528282528051602091820120600b54601f880183900483028501830190935286845293506001600160a01b03909116916112af91849190889088908190840183828082843760009201919091525061190092505050565b6001600160a01b031614949350505050565b6000546001600160a01b0383166112ea57604051622e076360e81b815260040160405180910390fd5b8160000361130b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113555760005550505050565b6daaeb6d7670e522a718067333cd4e3b156111dd57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561140e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114329190612450565b6111dd57604051633b79c77360e21b81526001600160a01b038216600482015260240161076a565b600061146582610eb2565b9050336001600160a01b0382161461149e576114818133611139565b61149e576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061150582611708565b9050836001600160a01b0316816001600160a01b0316146115385760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417611585576115688633611139565b61158557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166115ac57604051633a954ecd60e21b815260040160405180910390fd5b80156115b757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611649576001840160008181526004602052604081205490036116475760005481146116475760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610f485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076a565b610b5f83838360405180602001604052806000815250610fa9565b6000818060011161175e5760005481101561175e5760008181526004602052604081205490600160e01b8216900361175c575b8060000361105357506000190160008181526004602052604090205461173b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036117f25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611869848484610b64565b6001600160a01b0383163b15610b895761188584848484611924565b610b89576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a805461069b90612244565b604080516080810191829052607f0190826030600a8206018353600a90045b80156118ee57600183039250600a81066030018353600a90046118d0565b50819003601f19909101908152919050565b600080600061190f8585611a10565b9150915061191c81611a55565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061195990339089908890889060040161246d565b6020604051808303816000875af1925050508015611994575060408051601f3d908101601f19168201909252611991918101906124aa565b60015b6119f2573d8080156119c2576040519150601f19603f3d011682016040523d82523d6000602084013e6119c7565b606091505b5080516000036119ea576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000808251604103611a465760208301516040840151606085015160001a611a3a87828585611c0b565b94509450505050611a4e565b506000905060025b9250929050565b6000816004811115611a6957611a69611ee6565b03611a715750565b6001816004811115611a8557611a85611ee6565b03611ad25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161076a565b6002816004811115611ae657611ae6611ee6565b03611b335760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161076a565b6003816004811115611b4757611b47611ee6565b03611b9f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161076a565b6004816004811115611bb357611bb3611ee6565b036111dd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161076a565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611c425750600090506003611cef565b8460ff16601b14158015611c5a57508460ff16601c14155b15611c6b5750600090506004611cef565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611cbf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611ce857600060019250925050611cef565b9150600090505b94509492505050565b6001600160e01b0319811681146111dd57600080fd5b600060208284031215611d2057600080fd5b813561105381611cf8565b60005b83811015611d46578181015183820152602001611d2e565b50506000910152565b60008151808452611d67816020860160208601611d2b565b601f01601f19169290920160200192915050565b6020815260006110536020830184611d4f565b600060208284031215611da057600080fd5b5035919050565b600080600060408486031215611dbc57600080fd5b833567ffffffffffffffff80821115611dd457600080fd5b818601915086601f830112611de857600080fd5b813581811115611df757600080fd5b876020828501011115611e0957600080fd5b6020928301989097509590910135949350505050565b80356001600160a01b0381168114611e3657600080fd5b919050565b60008060408385031215611e4e57600080fd5b611e5783611e1f565b946020939093013593505050565b600381106111dd57600080fd5b600060208284031215611e8457600080fd5b813561105381611e65565b600060208284031215611ea157600080fd5b61105382611e1f565b600080600060608486031215611ebf57600080fd5b611ec884611e1f565b9250611ed660208501611e1f565b9150604084013590509250925092565b634e487b7160e01b600052602160045260246000fd5b600381106111dd57634e487b7160e01b600052602160045260246000fd5b60208101611f2783611efc565b91905290565b600080600060608486031215611f4257600080fd5b8335611ec881611e65565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff81118282101715611f8657611f86611f4d565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715611fb557611fb5611f4d565b604052919050565b600067ffffffffffffffff831115611fd757611fd7611f4d565b611fea601f8401601f1916602001611f8c565b9050828152838383011115611ffe57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561202757600080fd5b813567ffffffffffffffff81111561203e57600080fd5b8201601f8101841361204f57600080fd5b611a0884823560208401611fbd565b6000602080838503121561207157600080fd5b823567ffffffffffffffff8082111561208957600080fd5b818501915085601f83011261209d57600080fd5b8135818111156120af576120af611f4d565b6120bd848260051b01611f8c565b818152848101925060069190911b8301840190878211156120dd57600080fd5b928401925b8184101561212757604084890312156120fb5760008081fd5b612103611f63565b61210c85611e1f565b815284860135868201528352604090930192918401916120e2565b979650505050505050565b80151581146111dd57600080fd5b6000806040838503121561215357600080fd5b61215c83611e1f565b9150602083013561216c81612132565b809150509250929050565b6000806000806080858703121561218d57600080fd5b61219685611e1f565b93506121a460208601611e1f565b925060408501359150606085013567ffffffffffffffff8111156121c757600080fd5b8501601f810187136121d857600080fd5b6121e787823560208401611fbd565b91505092959194509250565b6000806040838503121561220657600080fd5b8235611e5781611e65565b6000806040838503121561222457600080fd5b61222d83611e1f565b915061223b60208401611e1f565b90509250929050565b600181811c9082168061225857607f821691505b60208210810361227857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106865761068661227e565b80820281158282048414176106865761068661227e565b6001600160a01b038416815260208101839052606081016122de83611efc565b826040830152949350505050565b601f821115610b5f57600081815260208120601f850160051c810160208610156123135750805b601f850160051c820191505b8181101561168b5782815560010161231f565b815167ffffffffffffffff81111561234c5761234c611f4d565b6123608161235a8454612244565b846122ec565b602080601f831160018114612395576000841561237d5750858301515b600019600386901b1c1916600185901b17855561168b565b600085815260208120601f198616915b828110156123c4578886015182559484019460019091019084016123a5565b50858210156123e25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006001820161241a5761241a61227e565b5060010190565b60008351612433818460208801611d2b565b835190830190612447818360208801611d2b565b01949350505050565b60006020828403121561246257600080fd5b815161105381612132565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124a090830184611d4f565b9695505050505050565b6000602082840312156124bc57600080fd5b815161105381611cf856fea2646970667358221220e741fbbcc6fc8e355520119c768d32c016f953c6a3468d066e2cf95126e7c5e964736f6c6343000811003368747470733a2f2f756e6b6e6f776e3737372e6e65742f6e66742f6d657461646174612f756e72657665616c65642e6a736f6e3f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80634f054d871161010d57806391b7f5ed116100a0578063b88d4fde1161006f578063b88d4fde1461059a578063c87b56dd146105ba578063c8dbbd36146105da578063e985e9c5146105fa578063f2fde38b1461061a57600080fd5b806391b7f5ed1461052557806395d89b4114610545578063a22cb4651461055a578063b44c57671461057a57600080fd5b80636c19e783116100dc5780636c19e783146104b257806370a08231146104d2578063715018a6146104f25780638da5cb5b1461050757600080fd5b80634f054d871461043257806355f804b31461045257806362c8975d146104725780636352211e1461049257600080fd5b806323b872dd1161018557806341f434341161015457806341f43434146103b457806342842e0e146103d6578063453c2310146103f65780634aaca86d1461040b57600080fd5b806323b872dd1461033c57806331b4562e1461035c57806332cb6b0c146103895780633ccfd60b1461039f57600080fd5b8063095ea7b3116101c1578063095ea7b3146102975780630cabd0a6146102b75780631056ae31146102f257806318160ddd1461031f57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a57806308e3f86814610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611d0e565b61063a565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61068c565b60405161021f9190611d7b565b34801561025657600080fd5b5061026a610265366004611d8e565b61071e565b6040516001600160a01b03909116815260200161021f565b610295610290366004611da7565b610762565b005b3480156102a357600080fd5b506102956102b2366004611e3b565b610b4b565b3480156102c357600080fd5b506102e46102d2366004611e72565b600f6020526000908152604090205481565b60405190815260200161021f565b3480156102fe57600080fd5b506102e461030d366004611e8f565b60106020526000908152604090205481565b34801561032b57600080fd5b5060015460005403600019016102e4565b34801561034857600080fd5b50610295610357366004611eaa565b610b64565b34801561036857600080fd5b506102e4610377366004611e72565b600e6020526000908152604090205481565b34801561039557600080fd5b506102e461030981565b3480156103ab57600080fd5b50610295610b8f565b3480156103c057600080fd5b5061026a6daaeb6d7670e522a718067333cd4e81565b3480156103e257600080fd5b506102956103f1366004611eaa565b610bca565b34801561040257600080fd5b506102e4600181565b34801561041757600080fd5b50600d546104259060ff1681565b60405161021f9190611f1a565b34801561043e57600080fd5b5061029561044d366004611f2d565b610bef565b34801561045e57600080fd5b5061029561046d366004612015565b610dcd565b34801561047e57600080fd5b5061029561048d36600461205e565b610de1565b34801561049e57600080fd5b5061026a6104ad366004611d8e565b610eb2565b3480156104be57600080fd5b506102956104cd366004611e8f565b610ebd565b3480156104de57600080fd5b506102e46104ed366004611e8f565b610ee7565b3480156104fe57600080fd5b50610295610f36565b34801561051357600080fd5b506008546001600160a01b031661026a565b34801561053157600080fd5b50610295610540366004611d8e565b610f4a565b34801561055157600080fd5b5061023d610f57565b34801561056657600080fd5b50610295610575366004612140565b610f66565b34801561058657600080fd5b50610295610595366004611e72565b610f7a565b3480156105a657600080fd5b506102956105b5366004612177565b610fa9565b3480156105c657600080fd5b5061023d6105d5366004611d8e565b610fd6565b3480156105e657600080fd5b506102956105f53660046121f3565b61105a565b34801561060657600080fd5b50610213610615366004612211565b611139565b34801561062657600080fd5b50610295610635366004611e8f565b611167565b60006301ffc9a760e01b6001600160e01b03198316148061066b57506380ac58cd60e01b6001600160e01b03198316145b806106865750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461069b90612244565b80601f01602080910402602001604051908101604052809291908181526020018280546106c790612244565b80156107145780601f106106e957610100808354040283529160200191610714565b820191906000526020600020905b8154815290600101906020018083116106f757829003601f168201915b5050505050905090565b6000610729826111e0565b610746576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600181610773565b60405180910390fd5b600d5460ff16600281111561078a5761078a611ee6565b82600281111561079c5761079c611ee6565b146107f45760405162461bcd60e51b815260206004820152602260248201527f43757272656e742074797065206f662073616c65206973206e6f742061637469604482015261766560f01b606482015260840161076a565b6107ff600180612294565b3360009081526010602052604090205461081a908390612294565b1061085d5760405162461bcd60e51b815260206004820152601360248201527213585e081b5a5b9d081c195c881dd85b1b195d606a1b604482015260640161076a565b80600c5461086b91906122a7565b3410156108ba5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161076a565b60016000819052600e6020527fa7c5ba7114a813b50159add3a36832908dc83db71d0b9a24c2ad0f83be9582075484906108f49083612294565b81600f600085600281111561090b5761090b611ee6565b600281111561091c5761091c611ee6565b8152602001908152602001600020546109359190612294565b1061097d5760405162461bcd60e51b81526020600482015260186024820152774d696e7420776f756c642065786365656420737570706c7960401b604482015260640161076a565b61098a6103096001612294565b60015460005483919003600019016109a29190612294565b106109ef5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c7900000000604482015260640161076a565b600260095403610a415760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076a565b6002600955610a508787611215565b610a905760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b604482015260640161076a565b60016000908152600f6020527f169f97de0d9a84d840042b17d3c6b9638b3d6fd9024c9eb0c7a306a17b49f88f8054879290610acd908490612294565b90915550503360009081526010602052604081208054879290610af1908490612294565b90915550610b01905033866112c1565b7fdcb23284f3935b5557998e99dcc286e29744c5000723d99eecd5d6f5694f6e1133866001604051610b35939291906122be565b60405180910390a1505060016009555050505050565b81610b55816113a1565b610b5f838361145a565b505050565b826001600160a01b0381163314610b7e57610b7e336113a1565b610b898484846114fa565b50505050565b610b97611693565b6040514790339082156108fc029083906000818181858888f19350505050158015610bc6573d6000803e3d6000fd5b5050565b826001600160a01b0381163314610be457610be4336113a1565b610b898484846116ed565b8281600e6000836002811115610c0757610c07611ee6565b6002811115610c1857610c18611ee6565b8152602001908152602001600020546001610c339190612294565b81600f6000856002811115610c4a57610c4a611ee6565b6002811115610c5b57610c5b611ee6565b815260200190815260200160002054610c749190612294565b10610cbc5760405162461bcd60e51b81526020600482015260186024820152774d696e7420776f756c642065786365656420737570706c7960401b604482015260640161076a565b610cc96103096001612294565b6001546000548391900360001901610ce19190612294565b10610d2e5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c7900000000604482015260640161076a565b610d36611693565b82600f6000876002811115610d4d57610d4d611ee6565b6002811115610d5e57610d5e611ee6565b81526020019081526020016000206000828254610d7b9190612294565b90915550610d8b905084846112c1565b7fdcb23284f3935b5557998e99dcc286e29744c5000723d99eecd5d6f5694f6e11848487604051610dbe939291906122be565b60405180910390a15050505050565b610dd5611693565b600a610bc68282612332565b610de9611693565b60005b8151811015610bc657818181518110610e0757610e076123f2565b602002602001015160200151600f6000600280811115610e2957610e29611ee6565b6002811115610e3a57610e3a611ee6565b81526020019081526020016000206000828254610e579190612294565b92505081905550610ea2828281518110610e7357610e736123f2565b602002602001015160000151838381518110610e9157610e916123f2565b6020026020010151602001516112c1565b610eab81612408565b9050610dec565b600061068682611708565b610ec5611693565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610f10576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610f3e611693565b610f486000611777565b565b610f52611693565b600c55565b60606003805461069b90612244565b81610f70816113a1565b610b5f83836117c9565b610f82611693565b600d805482919060ff19166001836002811115610fa157610fa1611ee6565b021790555050565b836001600160a01b0381163314610fc357610fc3336113a1565b610fcf8585858561185e565b5050505050565b6060610fe1826111e0565b610ffe57604051630a14c4b560e41b815260040160405180910390fd5b60006110086118a2565b905080516000036110285760405180602001604052806000815250611053565b80611032846118b1565b604051602001611043929190612421565b6040516020818303038152906040525b9392505050565b611062611693565b600f600083600281111561107857611078611ee6565b600281111561108957611089611ee6565b8152602001908152602001600020548160016110a59190612294565b116110fc5760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f742061646a75737420737570706c792062656c6f77206d696e74656044820152601960fa1b606482015260840161076a565b80600e600084600281111561111357611113611ee6565b600281111561112457611124611ee6565b81526020810191909152604001600020555050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61116f611693565b6001600160a01b0381166111d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076a565b6111dd81611777565b50565b6000816001111580156111f4575060005482105b8015610686575050600090815260046020526040902054600160e01b161590565b6040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c8201526000908190605c0160408051601f198184030181528282528051602091820120600b54601f880183900483028501830190935286845293506001600160a01b03909116916112af91849190889088908190840183828082843760009201919091525061190092505050565b6001600160a01b031614949350505050565b6000546001600160a01b0383166112ea57604051622e076360e81b815260040160405180910390fd5b8160000361130b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113555760005550505050565b6daaeb6d7670e522a718067333cd4e3b156111dd57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561140e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114329190612450565b6111dd57604051633b79c77360e21b81526001600160a01b038216600482015260240161076a565b600061146582610eb2565b9050336001600160a01b0382161461149e576114818133611139565b61149e576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061150582611708565b9050836001600160a01b0316816001600160a01b0316146115385760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417611585576115688633611139565b61158557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166115ac57604051633a954ecd60e21b815260040160405180910390fd5b80156115b757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611649576001840160008181526004602052604081205490036116475760005481146116475760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610f485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076a565b610b5f83838360405180602001604052806000815250610fa9565b6000818060011161175e5760005481101561175e5760008181526004602052604081205490600160e01b8216900361175c575b8060000361105357506000190160008181526004602052604090205461173b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036117f25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611869848484610b64565b6001600160a01b0383163b15610b895761188584848484611924565b610b89576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a805461069b90612244565b604080516080810191829052607f0190826030600a8206018353600a90045b80156118ee57600183039250600a81066030018353600a90046118d0565b50819003601f19909101908152919050565b600080600061190f8585611a10565b9150915061191c81611a55565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061195990339089908890889060040161246d565b6020604051808303816000875af1925050508015611994575060408051601f3d908101601f19168201909252611991918101906124aa565b60015b6119f2573d8080156119c2576040519150601f19603f3d011682016040523d82523d6000602084013e6119c7565b606091505b5080516000036119ea576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000808251604103611a465760208301516040840151606085015160001a611a3a87828585611c0b565b94509450505050611a4e565b506000905060025b9250929050565b6000816004811115611a6957611a69611ee6565b03611a715750565b6001816004811115611a8557611a85611ee6565b03611ad25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161076a565b6002816004811115611ae657611ae6611ee6565b03611b335760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161076a565b6003816004811115611b4757611b47611ee6565b03611b9f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161076a565b6004816004811115611bb357611bb3611ee6565b036111dd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161076a565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611c425750600090506003611cef565b8460ff16601b14158015611c5a57508460ff16601c14155b15611c6b5750600090506004611cef565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611cbf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611ce857600060019250925050611cef565b9150600090505b94509492505050565b6001600160e01b0319811681146111dd57600080fd5b600060208284031215611d2057600080fd5b813561105381611cf8565b60005b83811015611d46578181015183820152602001611d2e565b50506000910152565b60008151808452611d67816020860160208601611d2b565b601f01601f19169290920160200192915050565b6020815260006110536020830184611d4f565b600060208284031215611da057600080fd5b5035919050565b600080600060408486031215611dbc57600080fd5b833567ffffffffffffffff80821115611dd457600080fd5b818601915086601f830112611de857600080fd5b813581811115611df757600080fd5b876020828501011115611e0957600080fd5b6020928301989097509590910135949350505050565b80356001600160a01b0381168114611e3657600080fd5b919050565b60008060408385031215611e4e57600080fd5b611e5783611e1f565b946020939093013593505050565b600381106111dd57600080fd5b600060208284031215611e8457600080fd5b813561105381611e65565b600060208284031215611ea157600080fd5b61105382611e1f565b600080600060608486031215611ebf57600080fd5b611ec884611e1f565b9250611ed660208501611e1f565b9150604084013590509250925092565b634e487b7160e01b600052602160045260246000fd5b600381106111dd57634e487b7160e01b600052602160045260246000fd5b60208101611f2783611efc565b91905290565b600080600060608486031215611f4257600080fd5b8335611ec881611e65565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff81118282101715611f8657611f86611f4d565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715611fb557611fb5611f4d565b604052919050565b600067ffffffffffffffff831115611fd757611fd7611f4d565b611fea601f8401601f1916602001611f8c565b9050828152838383011115611ffe57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561202757600080fd5b813567ffffffffffffffff81111561203e57600080fd5b8201601f8101841361204f57600080fd5b611a0884823560208401611fbd565b6000602080838503121561207157600080fd5b823567ffffffffffffffff8082111561208957600080fd5b818501915085601f83011261209d57600080fd5b8135818111156120af576120af611f4d565b6120bd848260051b01611f8c565b818152848101925060069190911b8301840190878211156120dd57600080fd5b928401925b8184101561212757604084890312156120fb5760008081fd5b612103611f63565b61210c85611e1f565b815284860135868201528352604090930192918401916120e2565b979650505050505050565b80151581146111dd57600080fd5b6000806040838503121561215357600080fd5b61215c83611e1f565b9150602083013561216c81612132565b809150509250929050565b6000806000806080858703121561218d57600080fd5b61219685611e1f565b93506121a460208601611e1f565b925060408501359150606085013567ffffffffffffffff8111156121c757600080fd5b8501601f810187136121d857600080fd5b6121e787823560208401611fbd565b91505092959194509250565b6000806040838503121561220657600080fd5b8235611e5781611e65565b6000806040838503121561222457600080fd5b61222d83611e1f565b915061223b60208401611e1f565b90509250929050565b600181811c9082168061225857607f821691505b60208210810361227857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106865761068661227e565b80820281158282048414176106865761068661227e565b6001600160a01b038416815260208101839052606081016122de83611efc565b826040830152949350505050565b601f821115610b5f57600081815260208120601f850160051c810160208610156123135750805b601f850160051c820191505b8181101561168b5782815560010161231f565b815167ffffffffffffffff81111561234c5761234c611f4d565b6123608161235a8454612244565b846122ec565b602080601f831160018114612395576000841561237d5750858301515b600019600386901b1c1916600185901b17855561168b565b600085815260208120601f198616915b828110156123c4578886015182559484019460019091019084016123a5565b50858210156123e25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006001820161241a5761241a61227e565b5060010190565b60008351612433818460208801611d2b565b835190830190612447818360208801611d2b565b01949350505050565b60006020828403121561246257600080fd5b815161105381612132565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124a090830184611d4f565b9695505050505050565b6000602082840312156124bc57600080fd5b815161105381611cf856fea2646970667358221220e741fbbcc6fc8e355520119c768d32c016f953c6a3468d066e2cf95126e7c5e964736f6c63430008110033
Deployed Bytecode Sourcemap
68060:5016:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37839:615;;;;;;;;;;-1:-1:-1;37839:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37839:615:0;;;;;;;;43486:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45440:204::-;;;;;;;;;;-1:-1:-1;45440:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;45440:204:0;1533:203:1;70062:478:0;;;;;;:::i;:::-;;:::i;:::-;;71513:157;;;;;;;;;;-1:-1:-1;71513:157:0;;;;;:::i;:::-;;:::i;68619:42::-;;;;;;;;;;-1:-1:-1;68619:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;3377:25:1;;;3365:2;3350:18;68619:42:0;3231:177:1;68668:45:0;;;;;;;;;;-1:-1:-1;68668:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;36893:315;;;;;;;;;;-1:-1:-1;71311:1:0;37159:12;36946:7;37143:13;:28;-1:-1:-1;;37143:46:0;36893:315;;71678:163;;;;;;;;;;-1:-1:-1;71678:163:0;;;;;:::i;:::-;;:::i;68570:42::-;;;;;;;;;;-1:-1:-1;68570:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;68476:40;;;;;;;;;;;;68513:3;68476:40;;72264:145;;;;;;;;;;;;;:::i;2927:143::-;;;;;;;;;;;;3027:42;2927:143;;71849:171;;;;;;;;;;-1:-1:-1;71849:171:0;;;;;:::i;:::-;;:::i;68523:40::-;;;;;;;;;;;;68562:1;68523:40;;68422:47;;;;;;;;;;-1:-1:-1;68422:47:0;;;;;;;;;;;;;;;:::i;69793:261::-;;;;;;;;;;-1:-1:-1;69793:261:0;;;;;:::i;:::-;;:::i;69479:95::-;;;;;;;;;;-1:-1:-1;69479:95:0;;;;;:::i;:::-;;:::i;70548:279::-;;;;;;;;;;-1:-1:-1;70548:279:0;;;;;:::i;:::-;;:::i;43275:144::-;;;;;;;;;;-1:-1:-1;43275:144:0;;;;;:::i;:::-;;:::i;69582:90::-;;;;;;;;;;-1:-1:-1;69582:90:0;;;;;:::i;:::-;;:::i;38518:224::-;;;;;;;;;;-1:-1:-1;38518:224:0;;;;;:::i;:::-;;:::i;22430:103::-;;;;;;;;;;;;;:::i;21782:87::-;;;;;;;;;;-1:-1:-1;21855:6:0;;-1:-1:-1;;;;;21855:6:0;21782:87;;69156:98;;;;;;;;;;-1:-1:-1;69156:98:0;;;;;:::i;:::-;;:::i;43655:104::-;;;;;;;;;;;;;:::i;71329:176::-;;;;;;;;;;-1:-1:-1;71329:176:0;;;;;:::i;:::-;;:::i;69046:102::-;;;;;;;;;;-1:-1:-1;69046:102:0;;;;;:::i;:::-;;:::i;72028:228::-;;;;;;;;;;-1:-1:-1;72028:228:0;;;;;:::i;:::-;;:::i;43830:318::-;;;;;;;;;;-1:-1:-1;43830:318:0;;;;;:::i;:::-;;:::i;69262:209::-;;;;;;;;;;-1:-1:-1;69262:209:0;;;;;:::i;:::-;;:::i;46095:164::-;;;;;;;;;;-1:-1:-1;46095:164:0;;;;;:::i;:::-;;:::i;22688:201::-;;;;;;;;;;-1:-1:-1;22688:201:0;;;;;:::i;:::-;;:::i;37839:615::-;37924:4;-1:-1:-1;;;;;;;;;38224:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;38301:25:0;;;38224:102;:179;;;-1:-1:-1;;;;;;;;;;38378:25:0;;;38224:179;38204:199;37839:615;-1:-1:-1;;37839:615:0:o;43486:100::-;43540:13;43573:5;43566:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43486:100;:::o;45440:204::-;45508:7;45533:16;45541:7;45533;:16::i;:::-;45528:64;;45558:34;;-1:-1:-1;;;45558:34:0;;;;;;;;;;;45528:64;-1:-1:-1;45612:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45612:24:0;;45440:204::o;70062:478::-;70172:19;70193:6;72749:48;;;;;;;;;;;72826:9;;;;72816:19;;;;;;;;:::i;:::-;:6;:19;;;;;;;;:::i;:::-;;72808:66;;;;-1:-1:-1;;;72808:66:0;;10881:2:1;72808:66:0;;;10863:21:1;10920:2;10900:18;;;10893:30;10959:34;10939:18;;;10932:62;-1:-1:-1;;;11010:18:1;;;11003:32;11052:19;;72808:66:0;10679:398:1;72808:66:0;72927:16;68562:1;;72927:16;:::i;:::-;72904:10;72893:22;;;;:10;:22;;;;;;:31;;72918:6;;72893:31;:::i;:::-;:50;72885:82;;;;-1:-1:-1;;;72885:82:0;;11546:2:1;72885:82:0;;;11528:21:1;11585:2;11565:18;;;11558:30;-1:-1:-1;;;11604:18:1;;;11597:49;11663:18;;72885:82:0;11344:343:1;72885:82:0;73011:6;72999:9;;:18;;;;:::i;:::-;72986:9;:31;;72978:75;;;;-1:-1:-1;;;72978:75:0;;12067:2:1;72978:75:0;;;12049:21:1;12106:2;12086:18;;;12079:30;12145:33;12125:18;;;12118:61;12196:18;;72978:75:0;11865:355:1;72978:75:0;70221:18:::1;72517:13;::::0;;;:6:::1;:13;::::0;;;70241:6;;72517:17:::1;::::0;70221:18;72517:17:::1;:::i;:::-;72508:6;72492;:13;72499:5;72492:13;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:22;;;;:::i;:::-;:42;72484:79;;;::::0;-1:-1:-1;;;72484:79:0;;12427:2:1;72484:79:0::1;::::0;::::1;12409:21:1::0;12466:2;12446:18;;;12439:30;-1:-1:-1;;;12485:18:1;;;12478:54;12549:18;;72484:79:0::1;12225:348:1::0;72484:79:0::1;72607:14;68513:3;72620:1;72607:14;:::i;:::-;71311:1:::0;37159:12;36946:7;37143:13;72598:6;;37143:28;;-1:-1:-1;;37143:46:0;72582:22:::1;;;;:::i;:::-;:39;72574:80;;;::::0;-1:-1:-1;;;72574:80:0;;12780:2:1;72574:80:0::1;::::0;::::1;12762:21:1::0;12819:2;12799:18;;;12792:30;12858;12838:18;;;12831:58;12906:18;;72574:80:0::1;12578:352:1::0;72574:80:0::1;7237:1:::2;7835:7;;:19:::0;7827:63:::2;;;::::0;-1:-1:-1;;;7827:63:0;;13137:2:1;7827:63:0::2;::::0;::::2;13119:21:1::0;13176:2;13156:18;;;13149:30;13215:33;13195:18;;;13188:61;13266:18;;7827:63:0::2;12935:355:1::0;7827:63:0::2;7237:1;7968:7;:18:::0;70291:31:::3;70312:9:::0;;70291:20:::3;:31::i;:::-;70283:61;;;::::0;-1:-1:-1;;;70283:61:0;;13497:2:1;70283:61:0::3;::::0;::::3;13479:21:1::0;13536:2;13516:18;;;13509:30;-1:-1:-1;;;13555:18:1;;;13548:47;13612:18;;70283:61:0::3;13295:341:1::0;70283:61:0::3;70362:18;70355:26;::::0;;;:6:::3;:26;::::0;;:36;;70385:6;;70355:26;:36:::3;::::0;70385:6;;70355:36:::3;:::i;:::-;::::0;;;-1:-1:-1;;70413:10:0::3;70402:22;::::0;;;:10:::3;:22;::::0;;;;:32;;70428:6;;70402:22;:32:::3;::::0;70428:6;;70402:32:::3;:::i;:::-;::::0;;;-1:-1:-1;70445:25:0::3;::::0;-1:-1:-1;70451:10:0::3;70463:6:::0;70445:5:::3;:25::i;:::-;70486:46;70493:10;70505:6;70513:18;70486:46;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;7193:1:0::2;8147:7;:22:::0;-1:-1:-1;;;;;70062:478:0:o;71513:157::-;71609:8;4448:30;4469:8;4448:20;:30::i;:::-;71630:32:::1;71644:8;71654:7;71630:13;:32::i;:::-;71513:157:::0;;;:::o;71678:163::-;71779:4;-1:-1:-1;;;;;4268:18:0;;4276:10;4268:18;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;71796:37:::1;71815:4;71821:2;71825:7;71796:18;:37::i;:::-;71678:163:::0;;;;:::o;72264:145::-;21668:13;:11;:13::i;:::-;72364:37:::1;::::0;72332:21:::1;::::0;72372:10:::1;::::0;72364:37;::::1;;;::::0;72332:21;;72314:15:::1;72364:37:::0;72314:15;72364:37;72332:21;72372:10;72364:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;72303:106;72264:145::o:0;71849:171::-;71954:4;-1:-1:-1;;;;;4268:18:0;;4276:10;4268:18;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;71971:41:::1;71994:4;72000:2;72004:7;71971:22;:41::i;69793:261::-:0;69896:5;69903:6;72517;:13;72524:5;72517:13;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72533:1;72517:17;;;;:::i;:::-;72508:6;72492;:13;72499:5;72492:13;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:22;;;;:::i;:::-;:42;72484:79;;;;-1:-1:-1;;;72484:79:0;;12427:2:1;72484:79:0;;;12409:21:1;12466:2;12446:18;;;12439:30;-1:-1:-1;;;12485:18:1;;;12478:54;12549:18;;72484:79:0;12225:348:1;72484:79:0;72607:14;68513:3;72620:1;72607:14;:::i;:::-;71311:1;37159:12;36946:7;37143:13;72598:6;;37143:28;;-1:-1:-1;;37143:46:0;72582:22;;;;:::i;:::-;:39;72574:80;;;;-1:-1:-1;;;72574:80:0;;12780:2:1;72574:80:0;;;12762:21:1;12819:2;12799:18;;;12792:30;12858;12838:18;;;12831:58;12906:18;;72574:80:0;12578:352:1;72574:80:0;21668:13:::1;:11;:13::i;:::-;69959:6:::2;69942;:13;69949:5;69942:13;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;69976:23:0::2;::::0;-1:-1:-1;69982:8:0;69992:6;69976:5:::2;:23::i;:::-;70015:31;70022:8;70032:6;70040:5;70015:31;;;;;;;;:::i;:::-;;;;;;;;69793:261:::0;;;;;:::o;69479:95::-;21668:13;:11;:13::i;:::-;69552:4:::1;:14;69559:7:::0;69552:4;:14:::1;:::i;70548:279::-:0;21668:13;:11;:13::i;:::-;70646:9:::1;70641:179;70665:8;:15;70661:1;:19;70641:179;;;70730:8;70739:1;70730:11;;;;;;;;:::i;:::-;;;;;;;:18;;;70702:6;:24;70709:16;70702:24:::0;::::1;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;70763:45;70769:8;70778:1;70769:11;;;;;;;;:::i;:::-;;;;;;;:18;;;70789:8;70798:1;70789:11;;;;;;;;:::i;:::-;;;;;;;:18;;;70763:5;:45::i;:::-;70682:3;::::0;::::1;:::i;:::-;;;70641:179;;43275:144:::0;43339:7;43382:27;43401:7;43382:18;:27::i;69582:90::-;21668:13;:11;:13::i;:::-;69648:6:::1;:16:::0;;-1:-1:-1;;;;;;69648:16:0::1;-1:-1:-1::0;;;;;69648:16:0;;;::::1;::::0;;;::::1;::::0;;69582:90::o;38518:224::-;38582:7;-1:-1:-1;;;;;38606:19:0;;38602:60;;38634:28;;-1:-1:-1;;;38634:28:0;;;;;;;;;;;38602:60;-1:-1:-1;;;;;;38680:25:0;;;;;:18;:25;;;;;;33073:13;38680:54;;38518:224::o;22430:103::-;21668:13;:11;:13::i;:::-;22495:30:::1;22522:1;22495:18;:30::i;:::-;22430:103::o:0;69156:98::-;21668:13;:11;:13::i;:::-;69224:9:::1;:22:::0;69156:98::o;43655:104::-;43711:13;43744:7;43737:14;;;;;:::i;71329:176::-;71433:8;4448:30;4469:8;4448:20;:30::i;:::-;71454:43:::1;71478:8;71488;71454:23;:43::i;69046:102::-:0;21668:13;:11;:13::i;:::-;69119:9:::1;:21:::0;;69131:9;;69119;-1:-1:-1;;69119:21:0::1;::::0;69131:9;69119:21:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;69046:102:::0;:::o;72028:228::-;72179:4;-1:-1:-1;;;;;4268:18:0;;4276:10;4268:18;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;72201:47:::1;72224:4;72230:2;72234:7;72243:4;72201:22;:47::i;:::-;72028:228:::0;;;;;:::o;43830:318::-;43903:13;43934:16;43942:7;43934;:16::i;:::-;43929:59;;43959:29;;-1:-1:-1;;;43959:29:0;;;;;;;;;;;43929:59;44001:21;44025:10;:8;:10::i;:::-;44001:34;;44059:7;44053:21;44078:1;44053:26;:87;;;;;;;;;;;;;;;;;44106:7;44115:18;44125:7;44115:9;:18::i;:::-;44089:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44053:87;44046:94;43830:318;-1:-1:-1;;;43830:318:0:o;69262:209::-;21668:13;:11;:13::i;:::-;69375:6:::1;:13;69382:5;69375:13;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69358:10;69371:1;69358:14;;;;:::i;:::-;:30;69350:76;;;::::0;-1:-1:-1;;;69350:76:0;;17229:2:1;69350:76:0::1;::::0;::::1;17211:21:1::0;17268:2;17248:18;;;17241:30;17307:34;17287:18;;;17280:62;-1:-1:-1;;;17358:18:1;;;17351:31;17399:19;;69350:76:0::1;17027:397:1::0;69350:76:0::1;69453:10;69437:6;:13;69444:5;69437:13;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;69437:13:0;:26;-1:-1:-1;;69262:209:0:o;46095:164::-;-1:-1:-1;;;;;46216:25:0;;;46192:4;46216:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46095:164::o;22688:201::-;21668:13;:11;:13::i;:::-;-1:-1:-1;;;;;22777:22:0;::::1;22769:73;;;::::0;-1:-1:-1;;;22769:73:0;;17631:2:1;22769:73:0::1;::::0;::::1;17613:21:1::0;17670:2;17650:18;;;17643:30;17709:34;17689:18;;;17682:62;-1:-1:-1;;;17760:18:1;;;17753:36;17806:19;;22769:73:0::1;17429:402:1::0;22769:73:0::1;22853:28;22872:8;22853:18;:28::i;:::-;22688:201:::0;:::o;47240:273::-;47297:4;47353:7;71311:1;47334:26;;:66;;;;;47387:13;;47377:7;:23;47334:66;:152;;;;-1:-1:-1;;47438:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;47438:43:0;:48;;47240:273::o;70835:376::-;70992:140;;18078:66:1;70992:140:0;;;18066:79:1;71104:10:0;18161:12:1;;;18154:28;70929:4:0;;;;18198:12:1;;70992:140:0;;;-1:-1:-1;;70992:140:0;;;;;;;;;70968:175;;70992:140;70968:175;;;;71197:6;;71161:32;;;;;;;;;;;;;;;;;;70968:175;-1:-1:-1;;;;;;71197:6:0;;;;71161:32;;70968:175;;70992:140;71183:9;;;;;;71161:32;;71183:9;;;;71161:32;;;;;;;;;-1:-1:-1;71161:13:0;;-1:-1:-1;;;71161:32:0:i;:::-;-1:-1:-1;;;;;71161:42:0;;;70835:376;-1:-1:-1;;;;70835:376:0:o;49071:1529::-;49136:20;49159:13;-1:-1:-1;;;;;49187:16:0;;49183:48;;49212:19;;-1:-1:-1;;;49212:19:0;;;;;;;;;;;49183:48;49246:8;49258:1;49246:13;49242:44;;49268:18;;-1:-1:-1;;;49268:18:0;;;;;;;;;;;49242:44;-1:-1:-1;;;;;49774:22:0;;;;;;:18;:22;;33210:2;49774:22;;:70;;49812:31;49800:44;;49774:70;;;43174:11;43150:22;43146:40;-1:-1:-1;44884:15:0;;44859:23;44855:45;43143:51;43133:62;50087:31;;;;:17;:31;;;;;:173;50105:12;50336:23;;;50374:101;50401:35;;50426:9;;;;;-1:-1:-1;;;;;50401:35:0;;;50418:1;;50401:35;;50418:1;;50401:35;50470:3;50460:7;:13;50374:101;;50491:13;:19;-1:-1:-1;71513:157:0;;;:::o;4506:419::-;3027:42;4697:45;:49;4693:225;;4768:67;;-1:-1:-1;;;4768:67:0;;4819:4;4768:67;;;18433:34:1;-1:-1:-1;;;;;18503:15:1;;18483:18;;;18476:43;3027:42:0;;4768;;18368:18:1;;4768:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4763:144;;4863:28;;-1:-1:-1;;;4863:28:0;;-1:-1:-1;;;;;1697:32:1;;4863:28:0;;;1679:51:1;1652:18;;4863:28:0;1533:203:1;44980:394:0;45061:13;45077:16;45085:7;45077;:16::i;:::-;45061:32;-1:-1:-1;65888:10:0;-1:-1:-1;;;;;45110:28:0;;;45106:175;;45158:44;45175:5;65888:10;46095:164;:::i;45158:44::-;45153:128;;45230:35;;-1:-1:-1;;;45230:35:0;;;;;;;;;;;45153:128;45293:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45293:29:0;-1:-1:-1;;;;;45293:29:0;;;;;;;;;45338:28;;45293:24;;45338:28;;;;;;;45050:324;44980:394;;:::o;54705:2800::-;54839:27;54869;54888:7;54869:18;:27::i;:::-;54839:57;;54954:4;-1:-1:-1;;;;;54913:45:0;54929:19;-1:-1:-1;;;;;54913:45:0;;54909:86;;54967:28;;-1:-1:-1;;;54967:28:0;;;;;;;;;;;54909:86;55009:27;53435:21;;;53262:15;53477:4;53470:36;53559:4;53543:21;;53649:26;;65888:10;54402:30;;;-1:-1:-1;;;;;54100:26:0;;54381:19;;;54378:55;55188:174;;55275:43;55292:4;65888:10;46095:164;:::i;55275:43::-;55270:92;;55327:35;;-1:-1:-1;;;55327:35:0;;;;;;;;;;;55270:92;-1:-1:-1;;;;;55379:16:0;;55375:52;;55404:23;;-1:-1:-1;;;55404:23:0;;;;;;;;;;;55375:52;55576:15;55573:160;;;55716:1;55695:19;55688:30;55573:160;-1:-1:-1;;;;;56111:24:0;;;;;;;:18;:24;;;;;;56109:26;;-1:-1:-1;;56109:26:0;;;56180:22;;;;;;;;;56178:24;;-1:-1:-1;56178:24:0;;;43174:11;43150:22;43146:40;43133:62;-1:-1:-1;;;43133:62:0;56473:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;56767:46:0;;:51;;56763:626;;56871:1;56861:11;;56839:19;56994:30;;;:17;:30;;;;;;:35;;56990:384;;57132:13;;57117:11;:28;57113:242;;57279:30;;;;:17;:30;;;;;:52;;;57113:242;56820:569;56763:626;57436:7;57432:2;-1:-1:-1;;;;;57417:27:0;57426:4;-1:-1:-1;;;;;57417:27:0;;;;;;;;;;;57455:42;54828:2677;;;54705:2800;;;:::o;21947:132::-;21855:6;;-1:-1:-1;;;;;21855:6:0;65888:10;22011:23;22003:68;;;;-1:-1:-1;;;22003:68:0;;18982:2:1;22003:68:0;;;18964:21:1;;;19001:18;;;18994:30;19060:34;19040:18;;;19033:62;19112:18;;22003:68:0;18780:356:1;46330:185:0;46468:39;46485:4;46491:2;46495:7;46468:39;;;;;;;;;;;;:16;:39::i;40192:1129::-;40259:7;40294;;71311:1;40343:23;40339:915;;40396:13;;40389:4;:20;40385:869;;;40434:14;40451:23;;;:17;:23;;;;;;;-1:-1:-1;;;40540:23:0;;:28;;40536:699;;41059:113;41066:6;41076:1;41066:11;41059:113;;-1:-1:-1;;;41137:6:0;41119:25;;;;:17;:25;;;;;;41059:113;;40536:699;40411:843;40385:869;41282:31;;-1:-1:-1;;;41282:31:0;;;;;;;;;;;23049:191;23142:6;;;-1:-1:-1;;;;;23159:17:0;;;-1:-1:-1;;;;;;23159:17:0;;;;;;;23192:40;;23142:6;;;23159:17;23142:6;;23192:40;;23123:16;;23192:40;23112:128;23049:191;:::o;45716:308::-;65888:10;-1:-1:-1;;;;;45815:31:0;;;45811:61;;45855:17;;-1:-1:-1;;;45855:17:0;;;;;;;;;;;45811:61;65888:10;45885:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;45885:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;45885:60:0;;;;;;;;;;45961:55;;540:41:1;;;45885:49:0;;65888:10;45961:55;;513:18:1;45961:55:0;;;;;;;45716:308;;:::o;46586:399::-;46753:31;46766:4;46772:2;46776:7;46753:12;:31::i;:::-;-1:-1:-1;;;;;46799:14:0;;;:19;46795:183;;46838:56;46869:4;46875:2;46879:7;46888:5;46838:30;:56::i;:::-;46833:145;;46922:40;;-1:-1:-1;;;46922:40:0;;;;;;;;;;;69680:105;69740:13;69773:4;69766:11;;;;;:::i;66012:1960::-;66481:4;66475:11;;66488:3;66471:21;;66566:17;;;;67262:11;;;67141:5;67394:2;67408;67398:13;;67390:22;67262:11;67377:36;67449:2;67439:13;;67033:697;67468:4;67033:697;;;67659:1;67654:3;67650:11;67643:18;;67710:2;67704:4;67700:13;67696:2;67692:22;67687:3;67679:36;67563:2;67553:13;;67033:697;;;-1:-1:-1;67760:13:0;;;-1:-1:-1;;67875:12:0;;;67935:19;;;67875:12;66012:1960;-1:-1:-1;66012:1960:0:o;14537:231::-;14615:7;14636:17;14655:18;14677:27;14688:4;14694:9;14677:10;:27::i;:::-;14635:69;;;;14715:18;14727:5;14715:11;:18::i;:::-;-1:-1:-1;14751:9:0;14537:231;-1:-1:-1;;;14537:231:0:o;61456:716::-;61640:88;;-1:-1:-1;;;61640:88:0;;61619:4;;-1:-1:-1;;;;;61640:45:0;;;;;:88;;65888:10;;61707:4;;61713:7;;61722:5;;61640:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61640:88:0;;;;;;;;-1:-1:-1;;61640:88:0;;;;;;;;;;;;:::i;:::-;;;61636:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61923:6;:13;61940:1;61923:18;61919:235;;61969:40;;-1:-1:-1;;;61969:40:0;;;;;;;;;;;61919:235;62112:6;62106:13;62097:6;62093:2;62089:15;62082:38;61636:529;-1:-1:-1;;;;;;61799:64:0;-1:-1:-1;;;61799:64:0;;-1:-1:-1;61636:529:0;61456:716;;;;;;:::o;12988:747::-;13069:7;13078:12;13107:9;:16;13127:2;13107:22;13103:625;;13451:4;13436:20;;13430:27;13501:4;13486:20;;13480:27;13559:4;13544:20;;13538:27;13146:9;13530:36;13602:25;13613:4;13530:36;13430:27;13480;13602:10;:25::i;:::-;13595:32;;;;;;;;;13103:625;-1:-1:-1;13676:1:0;;-1:-1:-1;13680:35:0;13103:625;12988:747;;;;;:::o;11259:643::-;11337:20;11328:5;:29;;;;;;;;:::i;:::-;;11324:571;;11259:643;:::o;11324:571::-;11435:29;11426:5;:38;;;;;;;;:::i;:::-;;11422:473;;11481:34;;-1:-1:-1;;;11481:34:0;;20091:2:1;11481:34:0;;;20073:21:1;20130:2;20110:18;;;20103:30;20169:26;20149:18;;;20142:54;20213:18;;11481:34:0;19889:348:1;11422:473:0;11546:35;11537:5;:44;;;;;;;;:::i;:::-;;11533:362;;11598:41;;-1:-1:-1;;;11598:41:0;;20444:2:1;11598:41:0;;;20426:21:1;20483:2;20463:18;;;20456:30;20522:33;20502:18;;;20495:61;20573:18;;11598:41:0;20242:355:1;11533:362:0;11670:30;11661:5;:39;;;;;;;;:::i;:::-;;11657:238;;11717:44;;-1:-1:-1;;;11717:44:0;;20804:2:1;11717:44:0;;;20786:21:1;20843:2;20823:18;;;20816:30;20882:34;20862:18;;;20855:62;-1:-1:-1;;;20933:18:1;;;20926:32;20975:19;;11717:44:0;20602:398:1;11657:238:0;11792:30;11783:5;:39;;;;;;;;:::i;:::-;;11779:116;;11839:44;;-1:-1:-1;;;11839:44:0;;21207:2:1;11839:44:0;;;21189:21:1;21246:2;21226:18;;;21219:30;21285:34;21265:18;;;21258:62;-1:-1:-1;;;21336:18:1;;;21329:32;21378:19;;11839:44:0;21005:398:1;15989:1632:0;16120:7;;17054:66;17041:79;;17037:163;;;-1:-1:-1;17153:1:0;;-1:-1:-1;17157:30:0;17137:51;;17037:163;17214:1;:7;;17219:2;17214:7;;:18;;;;;17225:1;:7;;17230:2;17225:7;;17214:18;17210:102;;;-1:-1:-1;17265:1:0;;-1:-1:-1;17269:30:0;17249:51;;17210:102;17426:24;;;17409:14;17426:24;;;;;;;;;21635:25:1;;;21708:4;21696:17;;21676:18;;;21669:45;;;;21730:18;;;21723:34;;;21773:18;;;21766:34;;;17426:24:0;;21607:19:1;;17426:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;17426:24:0;;-1:-1:-1;;17426:24:0;;;-1:-1:-1;;;;;;;17465:20:0;;17461:103;;17518:1;17522:29;17502:50;;;;;;;17461:103;17584:6;-1:-1:-1;17592:20:0;;-1:-1:-1;15989:1632:0;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:665::-;1820:6;1828;1836;1889:2;1877:9;1868:7;1864:23;1860:32;1857:52;;;1905:1;1902;1895:12;1857:52;1945:9;1932:23;1974:18;2015:2;2007:6;2004:14;2001:34;;;2031:1;2028;2021:12;2001:34;2069:6;2058:9;2054:22;2044:32;;2114:7;2107:4;2103:2;2099:13;2095:27;2085:55;;2136:1;2133;2126:12;2085:55;2176:2;2163:16;2202:2;2194:6;2191:14;2188:34;;;2218:1;2215;2208:12;2188:34;2265:7;2258:4;2249:6;2245:2;2241:15;2237:26;2234:39;2231:59;;;2286:1;2283;2276:12;2231:59;2317:4;2309:13;;;;2341:6;;-1:-1:-1;2379:20:1;;;;2366:34;;1741:665;-1:-1:-1;;;;1741:665:1:o;2411:173::-;2479:20;;-1:-1:-1;;;;;2528:31:1;;2518:42;;2508:70;;2574:1;2571;2564:12;2508:70;2411:173;;;:::o;2589:254::-;2657:6;2665;2718:2;2706:9;2697:7;2693:23;2689:32;2686:52;;;2734:1;2731;2724:12;2686:52;2757:29;2776:9;2757:29;:::i;:::-;2747:39;2833:2;2818:18;;;;2805:32;;-1:-1:-1;;;2589:254:1:o;2848:107::-;2929:1;2922:5;2919:12;2909:40;;2945:1;2942;2935:12;2960:266;3032:6;3085:2;3073:9;3064:7;3060:23;3056:32;3053:52;;;3101:1;3098;3091:12;3053:52;3140:9;3127:23;3159:37;3190:5;3159:37;:::i;3413:186::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3564:29;3583:9;3564:29;:::i;3604:328::-;3681:6;3689;3697;3750:2;3738:9;3729:7;3725:23;3721:32;3718:52;;;3766:1;3763;3756:12;3718:52;3789:29;3808:9;3789:29;:::i;:::-;3779:39;;3837:38;3871:2;3860:9;3856:18;3837:38;:::i;:::-;3827:48;;3922:2;3911:9;3907:18;3894:32;3884:42;;3604:328;;;;;:::o;4176:127::-;4237:10;4232:3;4228:20;4225:1;4218:31;4268:4;4265:1;4258:15;4292:4;4289:1;4282:15;4308:211;4390:1;4383:5;4380:12;4370:143;;4435:10;4430:3;4426:20;4423:1;4416:31;4470:4;4467:1;4460:15;4498:4;4495:1;4488:15;4524:237;4670:2;4655:18;;4682:39;4714:6;4682:39;:::i;:::-;4730:25;;;4524:237;:::o;4766:408::-;4856:6;4864;4872;4925:2;4913:9;4904:7;4900:23;4896:32;4893:52;;;4941:1;4938;4931:12;4893:52;4980:9;4967:23;4999:37;5030:5;4999:37;:::i;5179:127::-;5240:10;5235:3;5231:20;5228:1;5221:31;5271:4;5268:1;5261:15;5295:4;5292:1;5285:15;5311:257;5383:4;5377:11;;;5415:17;;5462:18;5447:34;;5483:22;;;5444:62;5441:88;;;5509:18;;:::i;:::-;5545:4;5538:24;5311:257;:::o;5573:275::-;5644:2;5638:9;5709:2;5690:13;;-1:-1:-1;;5686:27:1;5674:40;;5744:18;5729:34;;5765:22;;;5726:62;5723:88;;;5791:18;;:::i;:::-;5827:2;5820:22;5573:275;;-1:-1:-1;5573:275:1:o;5853:407::-;5918:5;5952:18;5944:6;5941:30;5938:56;;;5974:18;;:::i;:::-;6012:57;6057:2;6036:15;;-1:-1:-1;;6032:29:1;6063:4;6028:40;6012:57;:::i;:::-;6003:66;;6092:6;6085:5;6078:21;6132:3;6123:6;6118:3;6114:16;6111:25;6108:45;;;6149:1;6146;6139:12;6108:45;6198:6;6193:3;6186:4;6179:5;6175:16;6162:43;6252:1;6245:4;6236:6;6229:5;6225:18;6221:29;6214:40;5853:407;;;;;:::o;6265:451::-;6334:6;6387:2;6375:9;6366:7;6362:23;6358:32;6355:52;;;6403:1;6400;6393:12;6355:52;6443:9;6430:23;6476:18;6468:6;6465:30;6462:50;;;6508:1;6505;6498:12;6462:50;6531:22;;6584:4;6576:13;;6572:27;-1:-1:-1;6562:55:1;;6613:1;6610;6603:12;6562:55;6636:74;6702:7;6697:2;6684:16;6679:2;6675;6671:11;6636:74;:::i;6721:1241::-;6830:6;6861:2;6904;6892:9;6883:7;6879:23;6875:32;6872:52;;;6920:1;6917;6910:12;6872:52;6960:9;6947:23;6989:18;7030:2;7022:6;7019:14;7016:34;;;7046:1;7043;7036:12;7016:34;7084:6;7073:9;7069:22;7059:32;;7129:7;7122:4;7118:2;7114:13;7110:27;7100:55;;7151:1;7148;7141:12;7100:55;7187:2;7174:16;7209:2;7205;7202:10;7199:36;;;7215:18;;:::i;:::-;7255:36;7287:2;7282;7279:1;7275:10;7271:19;7255:36;:::i;:::-;7325:15;;;7356:12;;;;-1:-1:-1;7407:1:1;7403:10;;;;7395:19;;7391:28;;;7431:19;;;7428:39;;;7463:1;7460;7453:12;7428:39;7487:11;;;;7507:425;7523:6;7518:3;7515:15;7507:425;;;7605:4;7599:3;7590:7;7586:17;7582:28;7579:118;;;7651:1;7680:2;7676;7669:14;7579:118;7723:22;;:::i;:::-;7772:23;7791:3;7772:23;:::i;:::-;7758:38;;7845:12;;;7832:26;7816:14;;;7809:50;7872:18;;7549:4;7540:14;;;;7910:12;;;;7507:425;;;7951:5;6721:1241;-1:-1:-1;;;;;;;6721:1241:1:o;7967:118::-;8053:5;8046:13;8039:21;8032:5;8029:32;8019:60;;8075:1;8072;8065:12;8090:315;8155:6;8163;8216:2;8204:9;8195:7;8191:23;8187:32;8184:52;;;8232:1;8229;8222:12;8184:52;8255:29;8274:9;8255:29;:::i;:::-;8245:39;;8334:2;8323:9;8319:18;8306:32;8347:28;8369:5;8347:28;:::i;:::-;8394:5;8384:15;;;8090:315;;;;;:::o;8682:667::-;8777:6;8785;8793;8801;8854:3;8842:9;8833:7;8829:23;8825:33;8822:53;;;8871:1;8868;8861:12;8822:53;8894:29;8913:9;8894:29;:::i;:::-;8884:39;;8942:38;8976:2;8965:9;8961:18;8942:38;:::i;:::-;8932:48;;9027:2;9016:9;9012:18;8999:32;8989:42;;9082:2;9071:9;9067:18;9054:32;9109:18;9101:6;9098:30;9095:50;;;9141:1;9138;9131:12;9095:50;9164:22;;9217:4;9209:13;;9205:27;-1:-1:-1;9195:55:1;;9246:1;9243;9236:12;9195:55;9269:74;9335:7;9330:2;9317:16;9312:2;9308;9304:11;9269:74;:::i;:::-;9259:84;;;8682:667;;;;;;;:::o;9354:334::-;9435:6;9443;9496:2;9484:9;9475:7;9471:23;9467:32;9464:52;;;9512:1;9509;9502:12;9464:52;9551:9;9538:23;9570:37;9601:5;9570:37;:::i;9693:260::-;9761:6;9769;9822:2;9810:9;9801:7;9797:23;9793:32;9790:52;;;9838:1;9835;9828:12;9790:52;9861:29;9880:9;9861:29;:::i;:::-;9851:39;;9909:38;9943:2;9932:9;9928:18;9909:38;:::i;:::-;9899:48;;9693:260;;;;;:::o;9958:380::-;10037:1;10033:12;;;;10080;;;10101:61;;10155:4;10147:6;10143:17;10133:27;;10101:61;10208:2;10200:6;10197:14;10177:18;10174:38;10171:161;;10254:10;10249:3;10245:20;10242:1;10235:31;10289:4;10286:1;10279:15;10317:4;10314:1;10307:15;10171:161;;9958:380;;;:::o;11082:127::-;11143:10;11138:3;11134:20;11131:1;11124:31;11174:4;11171:1;11164:15;11198:4;11195:1;11188:15;11214:125;11279:9;;;11300:10;;;11297:36;;;11313:18;;:::i;11692:168::-;11765:9;;;11796;;11813:15;;;11807:22;;11793:37;11783:71;;11834:18;;:::i;13641:404::-;-1:-1:-1;;;;;13872:32:1;;13854:51;;13936:2;13921:18;;13914:34;;;13842:2;13827:18;;13957:39;13989:6;13957:39;:::i;:::-;14032:6;14027:2;14016:9;14012:18;14005:34;13641:404;;;;;;:::o;14176:545::-;14278:2;14273:3;14270:11;14267:448;;;14314:1;14339:5;14335:2;14328:17;14384:4;14380:2;14370:19;14454:2;14442:10;14438:19;14435:1;14431:27;14425:4;14421:38;14490:4;14478:10;14475:20;14472:47;;;-1:-1:-1;14513:4:1;14472:47;14568:2;14563:3;14559:12;14556:1;14552:20;14546:4;14542:31;14532:41;;14623:82;14641:2;14634:5;14631:13;14623:82;;;14686:17;;;14667:1;14656:13;14623:82;;14897:1352;15023:3;15017:10;15050:18;15042:6;15039:30;15036:56;;;15072:18;;:::i;:::-;15101:97;15191:6;15151:38;15183:4;15177:11;15151:38;:::i;:::-;15145:4;15101:97;:::i;:::-;15253:4;;15317:2;15306:14;;15334:1;15329:663;;;;16036:1;16053:6;16050:89;;;-1:-1:-1;16105:19:1;;;16099:26;16050:89;-1:-1:-1;;14854:1:1;14850:11;;;14846:24;14842:29;14832:40;14878:1;14874:11;;;14829:57;16152:81;;15299:944;;15329:663;14123:1;14116:14;;;14160:4;14147:18;;-1:-1:-1;;15365:20:1;;;15483:236;15497:7;15494:1;15491:14;15483:236;;;15586:19;;;15580:26;15565:42;;15678:27;;;;15646:1;15634:14;;;;15513:19;;15483:236;;;15487:3;15747:6;15738:7;15735:19;15732:201;;;15808:19;;;15802:26;-1:-1:-1;;15891:1:1;15887:14;;;15903:3;15883:24;15879:37;15875:42;15860:58;15845:74;;15732:201;-1:-1:-1;;;;;15979:1:1;15963:14;;;15959:22;15946:36;;-1:-1:-1;14897:1352:1:o;16254:127::-;16315:10;16310:3;16306:20;16303:1;16296:31;16346:4;16343:1;16336:15;16370:4;16367:1;16360:15;16386:135;16425:3;16446:17;;;16443:43;;16466:18;;:::i;:::-;-1:-1:-1;16513:1:1;16502:13;;16386:135::o;16526:496::-;16705:3;16743:6;16737:13;16759:66;16818:6;16813:3;16806:4;16798:6;16794:17;16759:66;:::i;:::-;16888:13;;16847:16;;;;16910:70;16888:13;16847:16;16957:4;16945:17;;16910:70;:::i;:::-;16996:20;;16526:496;-1:-1:-1;;;;16526:496:1:o;18530:245::-;18597:6;18650:2;18638:9;18629:7;18625:23;18621:32;18618:52;;;18666:1;18663;18656:12;18618:52;18698:9;18692:16;18717:28;18739:5;18717:28;:::i;19141:489::-;-1:-1:-1;;;;;19410:15:1;;;19392:34;;19462:15;;19457:2;19442:18;;19435:43;19509:2;19494:18;;19487:34;;;19557:3;19552:2;19537:18;;19530:31;;;19335:4;;19578:46;;19604:19;;19596:6;19578:46;:::i;:::-;19570:54;19141:489;-1:-1:-1;;;;;;19141:489:1:o;19635:249::-;19704:6;19757:2;19745:9;19736:7;19732:23;19728:32;19725:52;;;19773:1;19770;19763:12;19725:52;19805:9;19799:16;19824:30;19848:5;19824:30;:::i
Swarm Source
ipfs://e741fbbcc6fc8e355520119c768d32c016f953c6a3468d066e2cf95126e7c5e9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.