ERC-721
Overview
Max Total Supply
10,000 DOGE
Holders
3,550
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 DOGELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoDoges
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-14 */ // File: IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: 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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: IERC721A.sol // ERC721A Contracts v4.2.3 pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores 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 via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: ERC721A.sol pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 virtual { 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; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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 ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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); } /** * @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 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)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 virtual { uint256 startTokenId = _currentIndex; 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 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _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 virtual { 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 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 virtual { _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 Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { 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 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 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; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @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: CryptoDoges.sol pragma solidity ^0.8.13; contract CryptoDoges is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer{ using Strings for uint256; uint256 public _maxSupply = 10000; uint256 public maxMintAmountPerWallet = 3; uint256 public maxMintAmountPerTx = 3; string baseURL = ""; string ExtensionURL = ".json"; uint256 _initalPrice = 0 ether; uint256 public costOfNFT = 0 ether; uint256 public numberOfFreeNFTs = 10000; string HiddenURL; bool revealed = true; bool paused = false; error ContractPaused(); error MaxMintWalletExceeded(); error MaxSupply(); error InvalidMintAmount(); error InsufficientFund(); error NoSmartContract(); error TokenNotExisting(); constructor(string memory _initBaseURI) ERC721A("CryptoDoges", "DOGE") { baseURL = _initBaseURI; } // ================== Mint Function ======================= modifier mintCompliance(uint256 _mintAmount) { if (msg.sender != tx.origin) revert NoSmartContract(); if (totalSupply() + _mintAmount > _maxSupply) revert MaxSupply(); if (_mintAmount > maxMintAmountPerTx) revert InvalidMintAmount(); if(paused) revert ContractPaused(); _; } modifier mintPriceCompliance(uint256 _mintAmount) { if(balanceOf(msg.sender) + _mintAmount > maxMintAmountPerWallet) revert MaxMintWalletExceeded(); if (_mintAmount < 0 || _mintAmount > maxMintAmountPerWallet) revert InvalidMintAmount(); if (msg.value < checkCost(_mintAmount)) revert InsufficientFund(); _; } /// @notice compliance of minting /// @dev user (msg.sender) mint /// @param _mintAmount the amount of tokens to mint function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount){ _safeMint(msg.sender, _mintAmount); } /// @dev user (msg.sender) mint /// @param _mintAmount the amount of tokens to mint /// @return value from number to mint function checkCost(uint256 _mintAmount) public view returns (uint256) { uint256 totalMints = _mintAmount + balanceOf(msg.sender); if ((totalMints <= numberOfFreeNFTs) ) { return _initalPrice; } else if ((balanceOf(msg.sender) == 0) && (totalMints > numberOfFreeNFTs) ) { uint256 total = costOfNFT * (_mintAmount - numberOfFreeNFTs); return total; } else { uint256 total2 = costOfNFT * _mintAmount; return total2; } } /// @notice airdrop function to airdrop same amount of tokens to addresses /// @dev only owner function /// @param accounts array of addresses /// @param amount the amount of tokens to airdrop users function airdrop(address[] memory accounts, uint256 amount)public onlyOwner mintCompliance(amount) { for(uint256 i = 0; i < accounts.length; i++){ _safeMint(accounts[i], amount); } } // =================== Orange Functions (Owner Only) =============== /// @dev pause/unpause minting function pause() public onlyOwner { paused = !paused; } /// @dev set URI /// @param uri new URI function setbaseURL(string memory uri) public onlyOwner{ baseURL = uri; } /// @dev extension URI like 'json' function setExtensionURL(string memory uri) public onlyOwner{ ExtensionURL = uri; } /// @dev set new cost of tokenId in WEI /// @param _cost new price in wei function setCostPrice(uint256 _cost) public onlyOwner{ costOfNFT = _cost; } /// @dev only owner /// @param perTx new max mint per transaction function setMaxMintAmountPerTx(uint256 perTx) public onlyOwner{ maxMintAmountPerTx = perTx; } /// @dev only owner /// @param perWallet new max mint per wallet function setMaxMintAmountPerWallet(uint256 perWallet) public onlyOwner{ maxMintAmountPerWallet = perWallet; } /// @dev only owner /// @param perWallet set free number of nft per wallet function setnumberOfFreeNFTs(uint256 perWallet) public onlyOwner{ numberOfFreeNFTs = perWallet; } // ================================ Withdraw Function ==================== /// @notice withdraw ether from contract. /// @dev only owner function function withdraw() public onlyOwner nonReentrant{ (bool owner, ) = payable(owner()).call{value: address(this).balance}(''); require(owner); } // =================== Blue Functions (View Only) ==================== /// @dev return uri of token ID /// @param tokenId token ID to find uri for ///@return value for 'tokenId uri' function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) { if (!_exists(tokenId)) revert TokenNotExisting(); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : ''; } /// @dev tokenId to start (1) function _startTokenId() internal view virtual override returns (uint256) { return 1; } ///@dev maxSupply of token /// @return max supply function _baseURI() internal view virtual override returns (string memory) { return baseURL; } /// @dev internal function to /// @param from user address where token belongs /// @param to user address /// @param tokenId number of tokenId function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } /// @dev internal function to /// @param from user address where token belongs /// @param to user address /// @param tokenId number of tokenId function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } /// @dev internal function to /// @param from user address where token belongs /// @param to user address /// @param tokenId number of tokenId function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"InsufficientFund","type":"error"},{"inputs":[],"name":"InvalidMintAmount","type":"error"},{"inputs":[],"name":"MaxMintWalletExceeded","type":"error"},{"inputs":[],"name":"MaxSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoSmartContract","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":"TokenNotExisting","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":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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":"_mintAmount","type":"uint256"}],"name":"checkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costOfNFT","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfFreeNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setExtensionURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setbaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setnumberOfFreeNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612710600a556003600b556003600c5560405180602001604052806000815250600d90816200003491906200073d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e90816200007b91906200073d565b506000600f5560006010556127106011556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff021916908315150217905550348015620000cf57600080fd5b5060405162003f2238038062003f228339818101604052810190620000f5919062000988565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f43727970746f446f6765730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444f47450000000000000000000000000000000000000000000000000000000081525081600290816200018991906200073d565b5080600390816200019b91906200073d565b50620001ac620003ec60201b60201c565b6000819055505050620001d4620001c8620003f560201b60201c565b620003fd60201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003d157801562000297576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200025d92919062000a1e565b600060405180830381600087803b1580156200027857600080fd5b505af11580156200028d573d6000803e3d6000fd5b50505050620003d0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000351576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200031792919062000a1e565b600060405180830381600087803b1580156200033257600080fd5b505af115801562000347573d6000803e3d6000fd5b50505050620003cf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200039a919062000a4b565b600060405180830381600087803b158015620003b557600080fd5b505af1158015620003ca573d6000803e3d6000fd5b505050505b5b5b505080600d9081620003e491906200073d565b505062000a68565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200054557607f821691505b6020821081036200055b576200055a620004fd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005c57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000586565b620005d1868362000586565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200061e620006186200061284620005e9565b620005f3565b620005e9565b9050919050565b6000819050919050565b6200063a83620005fd565b62000652620006498262000625565b84845462000593565b825550505050565b600090565b620006696200065a565b620006768184846200062f565b505050565b5b818110156200069e57620006926000826200065f565b6001810190506200067c565b5050565b601f821115620006ed57620006b78162000561565b620006c28462000576565b81016020851015620006d2578190505b620006ea620006e18562000576565b8301826200067b565b50505b505050565b600082821c905092915050565b60006200071260001984600802620006f2565b1980831691505092915050565b60006200072d8383620006ff565b9150826002028217905092915050565b6200074882620004c3565b67ffffffffffffffff811115620007645762000763620004ce565b5b6200077082546200052c565b6200077d828285620006a2565b600060209050601f831160018114620007b55760008415620007a0578287015190505b620007ac85826200071f565b8655506200081c565b601f198416620007c58662000561565b60005b82811015620007ef57848901518255600182019150602085019450602081019050620007c8565b868310156200080f57848901516200080b601f891682620006ff565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200085e8262000842565b810181811067ffffffffffffffff8211171562000880576200087f620004ce565b5b80604052505050565b60006200089562000824565b9050620008a3828262000853565b919050565b600067ffffffffffffffff821115620008c657620008c5620004ce565b5b620008d18262000842565b9050602081019050919050565b60005b83811015620008fe578082015181840152602081019050620008e1565b60008484015250505050565b6000620009216200091b84620008a8565b62000889565b90508281526020810184848401111562000940576200093f6200083d565b5b6200094d848285620008de565b509392505050565b600082601f8301126200096d576200096c62000838565b5b81516200097f8482602086016200090a565b91505092915050565b600060208284031215620009a157620009a06200082e565b5b600082015167ffffffffffffffff811115620009c257620009c162000833565b5b620009d08482850162000955565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a0682620009d9565b9050919050565b62000a1881620009f9565b82525050565b600060408201905062000a35600083018562000a0d565b62000a44602083018462000a0d565b9392505050565b600060208201905062000a62600083018462000a0d565b92915050565b6134aa8062000a786000396000f3fe6080604052600436106101f95760003560e01c8063766b7d091161010d578063b071401b116100a0578063c204642c1161006f578063c204642c146106a2578063c87b56dd146106cb578063e098ff7314610708578063e985e9c514610733578063f2fde38b14610770576101f9565b8063b071401b14610607578063b0fe641414610630578063b88d4fde1461065b578063bc951b9114610677576101f9565b806394354fd0116100dc57806394354fd01461056c57806395d89b4114610597578063a0712d68146105c2578063a22cb465146105de576101f9565b8063766b7d09146104d85780638456cb59146105015780638da5cb5b1461051857806393e90b2314610543576101f9565b80633ccfd60b11610190578063626ab3b81161015f578063626ab3b8146103f55780636352211e1461041e578063676f26021461045b57806370a0823114610484578063715018a6146104c1576101f9565b80633ccfd60b1461036e57806341f434341461038557806342842e0e146103b05780634d534a7d146103cc576101f9565b806311b4a832116101cc57806311b4a832146102bf57806318160ddd146102fc57806322f4596f1461032757806323b872dd14610352576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906124ed565b610799565b6040516102329190612535565b60405180910390f35b34801561024757600080fd5b5061025061082b565b60405161025d91906125e0565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612638565b6108bd565b60405161029a91906126a6565b60405180910390f35b6102bd60048036038101906102b891906126ed565b61093c565b005b3480156102cb57600080fd5b506102e660048036038101906102e19190612638565b610a80565b6040516102f3919061273c565b60405180910390f35b34801561030857600080fd5b50610311610b11565b60405161031e919061273c565b60405180910390f35b34801561033357600080fd5b5061033c610b28565b604051610349919061273c565b60405180910390f35b61036c60048036038101906103679190612757565b610b2e565b005b34801561037a57600080fd5b50610383610b7d565b005b34801561039157600080fd5b5061039a610c15565b6040516103a79190612809565b60405180910390f35b6103ca60048036038101906103c59190612757565b610c27565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612959565b610c76565b005b34801561040157600080fd5b5061041c60048036038101906104179190612959565b610c91565b005b34801561042a57600080fd5b5061044560048036038101906104409190612638565b610cac565b60405161045291906126a6565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612638565b610cbe565b005b34801561049057600080fd5b506104ab60048036038101906104a691906129a2565b610cd0565b6040516104b8919061273c565b60405180910390f35b3480156104cd57600080fd5b506104d6610d88565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190612638565b610d9c565b005b34801561050d57600080fd5b50610516610dae565b005b34801561052457600080fd5b5061052d610de2565b60405161053a91906126a6565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612638565b610e0c565b005b34801561057857600080fd5b50610581610e1e565b60405161058e919061273c565b60405180910390f35b3480156105a357600080fd5b506105ac610e24565b6040516105b991906125e0565b60405180910390f35b6105dc60048036038101906105d79190612638565b610eb6565b005b3480156105ea57600080fd5b50610605600480360381019061060091906129fb565b6110d5565b005b34801561061357600080fd5b5061062e60048036038101906106299190612638565b6111e0565b005b34801561063c57600080fd5b506106456111f2565b604051610652919061273c565b60405180910390f35b61067560048036038101906106709190612adc565b6111f8565b005b34801561068357600080fd5b5061068c611249565b604051610699919061273c565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190612c27565b61124f565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190612638565b6113d7565b6040516106ff91906125e0565b60405180910390f35b34801561071457600080fd5b5061071d611475565b60405161072a919061273c565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190612c83565b61147b565b6040516107679190612535565b60405180910390f35b34801561077c57600080fd5b50610797600480360381019061079291906129a2565b61150f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083a90612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461086690612cf2565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c882611592565b6108fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782610cac565b90508073ffffffffffffffffffffffffffffffffffffffff166109686115f1565b73ffffffffffffffffffffffffffffffffffffffff16146109cb576109948161098f6115f1565b61147b565b6109ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610a8c33610cd0565b83610a979190612d52565b90506011548111610aad57600f54915050610b0c565b6000610ab833610cd0565b148015610ac6575060115481115b15610af457600060115484610adb9190612d86565b601054610ae89190612dba565b90508092505050610b0c565b600083601054610b049190612dba565b905080925050505b919050565b6000610b1b6115f9565b6001546000540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6c57610b6b33611602565b5b610b778484846116ff565b50505050565b610b85611a21565b610b8d611a9f565b6000610b97610de2565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bba90612e2d565b60006040518083038185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c0a57600080fd5b50610c13611aee565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6557610c6433611602565b5b610c70848484611af8565b50505050565b610c7e611a21565b80600e9081610c8d9190612fe4565b5050565b610c99611a21565b80600d9081610ca89190612fe4565b5050565b6000610cb782611b18565b9050919050565b610cc6611a21565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d37576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d90611a21565b610d9a6000611be4565b565b610da4611a21565b80600b8190555050565b610db6611a21565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e14611a21565b8060118190555050565b600c5481565b606060038054610e3390612cf2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5f90612cf2565b8015610eac5780601f10610e8157610100808354040283529160200191610eac565b820191906000526020600020905b815481529060010190602001808311610e8f57829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610f28610b11565b610f329190612d52565b1115610f6a576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115610fa6576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615610fed576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b5481610ffb33610cd0565b6110059190612d52565b111561103d576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081108061104d5750600b5481115b15611084576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61108d81610a80565b3410156110c6576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110d03384611caa565b505050565b80600760006110e26115f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661118f6115f1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d49190612535565b60405180910390a35050565b6111e8611a21565b80600c8190555050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112365761123533611602565b5b61124285858585611cc8565b5050505050565b600b5481565b611257611a21565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112bd576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816112c9610b11565b6112d39190612d52565b111561130b576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611347576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff161561138e576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83518110156113d1576113be8482815181106113b0576113af6130b6565b5b602002602001015184611caa565b80806113c9906130e5565b915050611391565b50505050565b60606113e282611592565b611418576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611422611d3b565b90506000815111611442576040518060200160405280600081525061146d565b8061144c84611dcd565b60405160200161145d929190613169565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611517611a21565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906131ff565b60405180910390fd5b61158f81611be4565b50565b60008161159d6115f9565b111580156115ac575060005482105b80156115ea575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156116fc576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161167992919061321f565b602060405180830381865afa158015611696573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ba919061325d565b6116fb57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116f291906126a6565b60405180910390fd5b5b50565b600061170a82611b18565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611771576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061177d84611e9b565b91509150611793818761178e6115f1565b611ec2565b6117df576117a8866117a36115f1565b61147b565b6117de576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611845576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118528686866001611f06565b801561185d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061192b85611907888887611f0c565b7c020000000000000000000000000000000000000000000000000000000017611f34565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119b157600060018501905060006004600083815260200190815260200160002054036119af5760005481146119ae578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a198686866001611f5f565b505050505050565b611a29611f65565b73ffffffffffffffffffffffffffffffffffffffff16611a47610de2565b73ffffffffffffffffffffffffffffffffffffffff1614611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a94906132d6565b60405180910390fd5b565b600260095403611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613342565b60405180910390fd5b6002600981905550565b6001600981905550565b611b13838383604051806020016040528060008152506111f8565b505050565b60008082905080611b276115f9565b11611bad57600054811015611bac5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611baa575b60008103611ba0576004600083600190039350838152602001908152602001600020549050611b76565b8092505050611bdf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cc4828260405180602001604052806000815250611f6d565b5050565b611cd3848484610b2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d3557611cfe8484848461200a565b611d34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611d4a90612cf2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7690612cf2565b8015611dc35780601f10611d9857610100808354040283529160200191611dc3565b820191906000526020600020905b815481529060010190602001808311611da657829003601f168201915b5050505050905090565b606060006001611ddc8461215a565b01905060008167ffffffffffffffff811115611dfb57611dfa61282e565b5b6040519080825280601f01601f191660200182016040528015611e2d5781602001600182028036833780820191505090505b509050600082602001820190505b600115611e90578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e8457611e83613362565b5b04945060008503611e3b575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f238686846122ad565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611f7783836122b6565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461200557600080549050600083820390505b611fb7600086838060010194508661200a565b611fed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fa457816000541461200257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120306115f1565b8786866040518563ffffffff1660e01b815260040161205294939291906133e6565b6020604051808303816000875af192505050801561208e57506040513d601f19601f8201168201806040525081019061208b9190613447565b60015b612107573d80600081146120be576040519150601f19603f3d011682016040523d82523d6000602084013e6120c3565b606091505b5060008151036120ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106121b8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121ae576121ad613362565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121f5576d04ee2d6d415b85acef810000000083816121eb576121ea613362565b5b0492506020810190505b662386f26fc10000831061222457662386f26fc10000838161221a57612219613362565b5b0492506010810190505b6305f5e100831061224d576305f5e100838161224357612242613362565b5b0492506008810190505b612710831061227257612710838161226857612267613362565b5b0492506004810190505b60648310612295576064838161228b5761228a613362565b5b0492506002810190505b600a83106122a4576001810190505b80915050919050565b60009392505050565b600080549050600082036122f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123036000848385611f06565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061237a8361236b6000866000611f0c565b61237485612471565b17611f34565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461241b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123e0565b5060008203612456576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061246c6000848385611f5f565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124ca81612495565b81146124d557600080fd5b50565b6000813590506124e7816124c1565b92915050565b6000602082840312156125035761250261248b565b5b6000612511848285016124d8565b91505092915050565b60008115159050919050565b61252f8161251a565b82525050565b600060208201905061254a6000830184612526565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561258a57808201518184015260208101905061256f565b60008484015250505050565b6000601f19601f8301169050919050565b60006125b282612550565b6125bc818561255b565b93506125cc81856020860161256c565b6125d581612596565b840191505092915050565b600060208201905081810360008301526125fa81846125a7565b905092915050565b6000819050919050565b61261581612602565b811461262057600080fd5b50565b6000813590506126328161260c565b92915050565b60006020828403121561264e5761264d61248b565b5b600061265c84828501612623565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061269082612665565b9050919050565b6126a081612685565b82525050565b60006020820190506126bb6000830184612697565b92915050565b6126ca81612685565b81146126d557600080fd5b50565b6000813590506126e7816126c1565b92915050565b600080604083850312156127045761270361248b565b5b6000612712858286016126d8565b925050602061272385828601612623565b9150509250929050565b61273681612602565b82525050565b6000602082019050612751600083018461272d565b92915050565b6000806000606084860312156127705761276f61248b565b5b600061277e868287016126d8565b935050602061278f868287016126d8565b92505060406127a086828701612623565b9150509250925092565b6000819050919050565b60006127cf6127ca6127c584612665565b6127aa565b612665565b9050919050565b60006127e1826127b4565b9050919050565b60006127f3826127d6565b9050919050565b612803816127e8565b82525050565b600060208201905061281e60008301846127fa565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61286682612596565b810181811067ffffffffffffffff821117156128855761288461282e565b5b80604052505050565b6000612898612481565b90506128a4828261285d565b919050565b600067ffffffffffffffff8211156128c4576128c361282e565b5b6128cd82612596565b9050602081019050919050565b82818337600083830152505050565b60006128fc6128f7846128a9565b61288e565b90508281526020810184848401111561291857612917612829565b5b6129238482856128da565b509392505050565b600082601f8301126129405761293f612824565b5b81356129508482602086016128e9565b91505092915050565b60006020828403121561296f5761296e61248b565b5b600082013567ffffffffffffffff81111561298d5761298c612490565b5b6129998482850161292b565b91505092915050565b6000602082840312156129b8576129b761248b565b5b60006129c6848285016126d8565b91505092915050565b6129d88161251a565b81146129e357600080fd5b50565b6000813590506129f5816129cf565b92915050565b60008060408385031215612a1257612a1161248b565b5b6000612a20858286016126d8565b9250506020612a31858286016129e6565b9150509250929050565b600067ffffffffffffffff821115612a5657612a5561282e565b5b612a5f82612596565b9050602081019050919050565b6000612a7f612a7a84612a3b565b61288e565b905082815260208101848484011115612a9b57612a9a612829565b5b612aa68482856128da565b509392505050565b600082601f830112612ac357612ac2612824565b5b8135612ad3848260208601612a6c565b91505092915050565b60008060008060808587031215612af657612af561248b565b5b6000612b04878288016126d8565b9450506020612b15878288016126d8565b9350506040612b2687828801612623565b925050606085013567ffffffffffffffff811115612b4757612b46612490565b5b612b5387828801612aae565b91505092959194509250565b600067ffffffffffffffff821115612b7a57612b7961282e565b5b602082029050602081019050919050565b600080fd5b6000612ba3612b9e84612b5f565b61288e565b90508083825260208201905060208402830185811115612bc657612bc5612b8b565b5b835b81811015612bef5780612bdb88826126d8565b845260208401935050602081019050612bc8565b5050509392505050565b600082601f830112612c0e57612c0d612824565b5b8135612c1e848260208601612b90565b91505092915050565b60008060408385031215612c3e57612c3d61248b565b5b600083013567ffffffffffffffff811115612c5c57612c5b612490565b5b612c6885828601612bf9565b9250506020612c7985828601612623565b9150509250929050565b60008060408385031215612c9a57612c9961248b565b5b6000612ca8858286016126d8565b9250506020612cb9858286016126d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d0a57607f821691505b602082108103612d1d57612d1c612cc3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d5d82612602565b9150612d6883612602565b9250828201905080821115612d8057612d7f612d23565b5b92915050565b6000612d9182612602565b9150612d9c83612602565b9250828203905081811115612db457612db3612d23565b5b92915050565b6000612dc582612602565b9150612dd083612602565b9250828202612dde81612602565b91508282048414831517612df557612df4612d23565b5b5092915050565b600081905092915050565b50565b6000612e17600083612dfc565b9150612e2282612e07565b600082019050919050565b6000612e3882612e0a565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ea47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e67565b612eae8683612e67565b95508019841693508086168417925050509392505050565b6000612ee1612edc612ed784612602565b6127aa565b612602565b9050919050565b6000819050919050565b612efb83612ec6565b612f0f612f0782612ee8565b848454612e74565b825550505050565b600090565b612f24612f17565b612f2f818484612ef2565b505050565b5b81811015612f5357612f48600082612f1c565b600181019050612f35565b5050565b601f821115612f9857612f6981612e42565b612f7284612e57565b81016020851015612f81578190505b612f95612f8d85612e57565b830182612f34565b50505b505050565b600082821c905092915050565b6000612fbb60001984600802612f9d565b1980831691505092915050565b6000612fd48383612faa565b9150826002028217905092915050565b612fed82612550565b67ffffffffffffffff8111156130065761300561282e565b5b6130108254612cf2565b61301b828285612f57565b600060209050601f83116001811461304e576000841561303c578287015190505b6130468582612fc8565b8655506130ae565b601f19841661305c86612e42565b60005b828110156130845784890151825560018201915060208501945060208101905061305f565b868310156130a1578489015161309d601f891682612faa565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006130f082612602565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361312257613121612d23565b5b600182019050919050565b600081905092915050565b600061314382612550565b61314d818561312d565b935061315d81856020860161256c565b80840191505092915050565b60006131758285613138565b91506131818284613138565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131e960268361255b565b91506131f48261318d565b604082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b60006040820190506132346000830185612697565b6132416020830184612697565b9392505050565b600081519050613257816129cf565b92915050565b6000602082840312156132735761327261248b565b5b600061328184828501613248565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132c060208361255b565b91506132cb8261328a565b602082019050919050565b600060208201905081810360008301526132ef816132b3565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061332c601f8361255b565b9150613337826132f6565b602082019050919050565b6000602082019050818103600083015261335b8161331f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006133b882613391565b6133c2818561339c565b93506133d281856020860161256c565b6133db81612596565b840191505092915050565b60006080820190506133fb6000830187612697565b6134086020830186612697565b613415604083018561272d565b818103606083015261342781846133ad565b905095945050505050565b600081519050613441816124c1565b92915050565b60006020828403121561345d5761345c61248b565b5b600061346b84828501613432565b9150509291505056fea264697066735822122084b288ba61983bf735b31fcffeeeccac59103a8fd7f76ab4e036f43d9b49002364736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56514b4178443372515a59716d466f35634e385054786b79575161726a3147704b6e505935454441733248382f00000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063766b7d091161010d578063b071401b116100a0578063c204642c1161006f578063c204642c146106a2578063c87b56dd146106cb578063e098ff7314610708578063e985e9c514610733578063f2fde38b14610770576101f9565b8063b071401b14610607578063b0fe641414610630578063b88d4fde1461065b578063bc951b9114610677576101f9565b806394354fd0116100dc57806394354fd01461056c57806395d89b4114610597578063a0712d68146105c2578063a22cb465146105de576101f9565b8063766b7d09146104d85780638456cb59146105015780638da5cb5b1461051857806393e90b2314610543576101f9565b80633ccfd60b11610190578063626ab3b81161015f578063626ab3b8146103f55780636352211e1461041e578063676f26021461045b57806370a0823114610484578063715018a6146104c1576101f9565b80633ccfd60b1461036e57806341f434341461038557806342842e0e146103b05780634d534a7d146103cc576101f9565b806311b4a832116101cc57806311b4a832146102bf57806318160ddd146102fc57806322f4596f1461032757806323b872dd14610352576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906124ed565b610799565b6040516102329190612535565b60405180910390f35b34801561024757600080fd5b5061025061082b565b60405161025d91906125e0565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612638565b6108bd565b60405161029a91906126a6565b60405180910390f35b6102bd60048036038101906102b891906126ed565b61093c565b005b3480156102cb57600080fd5b506102e660048036038101906102e19190612638565b610a80565b6040516102f3919061273c565b60405180910390f35b34801561030857600080fd5b50610311610b11565b60405161031e919061273c565b60405180910390f35b34801561033357600080fd5b5061033c610b28565b604051610349919061273c565b60405180910390f35b61036c60048036038101906103679190612757565b610b2e565b005b34801561037a57600080fd5b50610383610b7d565b005b34801561039157600080fd5b5061039a610c15565b6040516103a79190612809565b60405180910390f35b6103ca60048036038101906103c59190612757565b610c27565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612959565b610c76565b005b34801561040157600080fd5b5061041c60048036038101906104179190612959565b610c91565b005b34801561042a57600080fd5b5061044560048036038101906104409190612638565b610cac565b60405161045291906126a6565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612638565b610cbe565b005b34801561049057600080fd5b506104ab60048036038101906104a691906129a2565b610cd0565b6040516104b8919061273c565b60405180910390f35b3480156104cd57600080fd5b506104d6610d88565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190612638565b610d9c565b005b34801561050d57600080fd5b50610516610dae565b005b34801561052457600080fd5b5061052d610de2565b60405161053a91906126a6565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612638565b610e0c565b005b34801561057857600080fd5b50610581610e1e565b60405161058e919061273c565b60405180910390f35b3480156105a357600080fd5b506105ac610e24565b6040516105b991906125e0565b60405180910390f35b6105dc60048036038101906105d79190612638565b610eb6565b005b3480156105ea57600080fd5b50610605600480360381019061060091906129fb565b6110d5565b005b34801561061357600080fd5b5061062e60048036038101906106299190612638565b6111e0565b005b34801561063c57600080fd5b506106456111f2565b604051610652919061273c565b60405180910390f35b61067560048036038101906106709190612adc565b6111f8565b005b34801561068357600080fd5b5061068c611249565b604051610699919061273c565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190612c27565b61124f565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190612638565b6113d7565b6040516106ff91906125e0565b60405180910390f35b34801561071457600080fd5b5061071d611475565b60405161072a919061273c565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190612c83565b61147b565b6040516107679190612535565b60405180910390f35b34801561077c57600080fd5b50610797600480360381019061079291906129a2565b61150f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083a90612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461086690612cf2565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c882611592565b6108fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782610cac565b90508073ffffffffffffffffffffffffffffffffffffffff166109686115f1565b73ffffffffffffffffffffffffffffffffffffffff16146109cb576109948161098f6115f1565b61147b565b6109ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610a8c33610cd0565b83610a979190612d52565b90506011548111610aad57600f54915050610b0c565b6000610ab833610cd0565b148015610ac6575060115481115b15610af457600060115484610adb9190612d86565b601054610ae89190612dba565b90508092505050610b0c565b600083601054610b049190612dba565b905080925050505b919050565b6000610b1b6115f9565b6001546000540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6c57610b6b33611602565b5b610b778484846116ff565b50505050565b610b85611a21565b610b8d611a9f565b6000610b97610de2565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bba90612e2d565b60006040518083038185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c0a57600080fd5b50610c13611aee565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6557610c6433611602565b5b610c70848484611af8565b50505050565b610c7e611a21565b80600e9081610c8d9190612fe4565b5050565b610c99611a21565b80600d9081610ca89190612fe4565b5050565b6000610cb782611b18565b9050919050565b610cc6611a21565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d37576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d90611a21565b610d9a6000611be4565b565b610da4611a21565b80600b8190555050565b610db6611a21565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e14611a21565b8060118190555050565b600c5481565b606060038054610e3390612cf2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5f90612cf2565b8015610eac5780601f10610e8157610100808354040283529160200191610eac565b820191906000526020600020905b815481529060010190602001808311610e8f57829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610f28610b11565b610f329190612d52565b1115610f6a576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115610fa6576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615610fed576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b5481610ffb33610cd0565b6110059190612d52565b111561103d576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081108061104d5750600b5481115b15611084576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61108d81610a80565b3410156110c6576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110d03384611caa565b505050565b80600760006110e26115f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661118f6115f1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d49190612535565b60405180910390a35050565b6111e8611a21565b80600c8190555050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112365761123533611602565b5b61124285858585611cc8565b5050505050565b600b5481565b611257611a21565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112bd576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816112c9610b11565b6112d39190612d52565b111561130b576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611347576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff161561138e576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83518110156113d1576113be8482815181106113b0576113af6130b6565b5b602002602001015184611caa565b80806113c9906130e5565b915050611391565b50505050565b60606113e282611592565b611418576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611422611d3b565b90506000815111611442576040518060200160405280600081525061146d565b8061144c84611dcd565b60405160200161145d929190613169565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611517611a21565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906131ff565b60405180910390fd5b61158f81611be4565b50565b60008161159d6115f9565b111580156115ac575060005482105b80156115ea575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156116fc576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161167992919061321f565b602060405180830381865afa158015611696573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ba919061325d565b6116fb57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116f291906126a6565b60405180910390fd5b5b50565b600061170a82611b18565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611771576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061177d84611e9b565b91509150611793818761178e6115f1565b611ec2565b6117df576117a8866117a36115f1565b61147b565b6117de576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611845576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118528686866001611f06565b801561185d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061192b85611907888887611f0c565b7c020000000000000000000000000000000000000000000000000000000017611f34565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119b157600060018501905060006004600083815260200190815260200160002054036119af5760005481146119ae578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a198686866001611f5f565b505050505050565b611a29611f65565b73ffffffffffffffffffffffffffffffffffffffff16611a47610de2565b73ffffffffffffffffffffffffffffffffffffffff1614611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a94906132d6565b60405180910390fd5b565b600260095403611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613342565b60405180910390fd5b6002600981905550565b6001600981905550565b611b13838383604051806020016040528060008152506111f8565b505050565b60008082905080611b276115f9565b11611bad57600054811015611bac5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611baa575b60008103611ba0576004600083600190039350838152602001908152602001600020549050611b76565b8092505050611bdf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cc4828260405180602001604052806000815250611f6d565b5050565b611cd3848484610b2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d3557611cfe8484848461200a565b611d34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611d4a90612cf2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7690612cf2565b8015611dc35780601f10611d9857610100808354040283529160200191611dc3565b820191906000526020600020905b815481529060010190602001808311611da657829003601f168201915b5050505050905090565b606060006001611ddc8461215a565b01905060008167ffffffffffffffff811115611dfb57611dfa61282e565b5b6040519080825280601f01601f191660200182016040528015611e2d5781602001600182028036833780820191505090505b509050600082602001820190505b600115611e90578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e8457611e83613362565b5b04945060008503611e3b575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f238686846122ad565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611f7783836122b6565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461200557600080549050600083820390505b611fb7600086838060010194508661200a565b611fed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fa457816000541461200257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120306115f1565b8786866040518563ffffffff1660e01b815260040161205294939291906133e6565b6020604051808303816000875af192505050801561208e57506040513d601f19601f8201168201806040525081019061208b9190613447565b60015b612107573d80600081146120be576040519150601f19603f3d011682016040523d82523d6000602084013e6120c3565b606091505b5060008151036120ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106121b8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121ae576121ad613362565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121f5576d04ee2d6d415b85acef810000000083816121eb576121ea613362565b5b0492506020810190505b662386f26fc10000831061222457662386f26fc10000838161221a57612219613362565b5b0492506010810190505b6305f5e100831061224d576305f5e100838161224357612242613362565b5b0492506008810190505b612710831061227257612710838161226857612267613362565b5b0492506004810190505b60648310612295576064838161228b5761228a613362565b5b0492506002810190505b600a83106122a4576001810190505b80915050919050565b60009392505050565b600080549050600082036122f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123036000848385611f06565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061237a8361236b6000866000611f0c565b61237485612471565b17611f34565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461241b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123e0565b5060008203612456576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061246c6000848385611f5f565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124ca81612495565b81146124d557600080fd5b50565b6000813590506124e7816124c1565b92915050565b6000602082840312156125035761250261248b565b5b6000612511848285016124d8565b91505092915050565b60008115159050919050565b61252f8161251a565b82525050565b600060208201905061254a6000830184612526565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561258a57808201518184015260208101905061256f565b60008484015250505050565b6000601f19601f8301169050919050565b60006125b282612550565b6125bc818561255b565b93506125cc81856020860161256c565b6125d581612596565b840191505092915050565b600060208201905081810360008301526125fa81846125a7565b905092915050565b6000819050919050565b61261581612602565b811461262057600080fd5b50565b6000813590506126328161260c565b92915050565b60006020828403121561264e5761264d61248b565b5b600061265c84828501612623565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061269082612665565b9050919050565b6126a081612685565b82525050565b60006020820190506126bb6000830184612697565b92915050565b6126ca81612685565b81146126d557600080fd5b50565b6000813590506126e7816126c1565b92915050565b600080604083850312156127045761270361248b565b5b6000612712858286016126d8565b925050602061272385828601612623565b9150509250929050565b61273681612602565b82525050565b6000602082019050612751600083018461272d565b92915050565b6000806000606084860312156127705761276f61248b565b5b600061277e868287016126d8565b935050602061278f868287016126d8565b92505060406127a086828701612623565b9150509250925092565b6000819050919050565b60006127cf6127ca6127c584612665565b6127aa565b612665565b9050919050565b60006127e1826127b4565b9050919050565b60006127f3826127d6565b9050919050565b612803816127e8565b82525050565b600060208201905061281e60008301846127fa565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61286682612596565b810181811067ffffffffffffffff821117156128855761288461282e565b5b80604052505050565b6000612898612481565b90506128a4828261285d565b919050565b600067ffffffffffffffff8211156128c4576128c361282e565b5b6128cd82612596565b9050602081019050919050565b82818337600083830152505050565b60006128fc6128f7846128a9565b61288e565b90508281526020810184848401111561291857612917612829565b5b6129238482856128da565b509392505050565b600082601f8301126129405761293f612824565b5b81356129508482602086016128e9565b91505092915050565b60006020828403121561296f5761296e61248b565b5b600082013567ffffffffffffffff81111561298d5761298c612490565b5b6129998482850161292b565b91505092915050565b6000602082840312156129b8576129b761248b565b5b60006129c6848285016126d8565b91505092915050565b6129d88161251a565b81146129e357600080fd5b50565b6000813590506129f5816129cf565b92915050565b60008060408385031215612a1257612a1161248b565b5b6000612a20858286016126d8565b9250506020612a31858286016129e6565b9150509250929050565b600067ffffffffffffffff821115612a5657612a5561282e565b5b612a5f82612596565b9050602081019050919050565b6000612a7f612a7a84612a3b565b61288e565b905082815260208101848484011115612a9b57612a9a612829565b5b612aa68482856128da565b509392505050565b600082601f830112612ac357612ac2612824565b5b8135612ad3848260208601612a6c565b91505092915050565b60008060008060808587031215612af657612af561248b565b5b6000612b04878288016126d8565b9450506020612b15878288016126d8565b9350506040612b2687828801612623565b925050606085013567ffffffffffffffff811115612b4757612b46612490565b5b612b5387828801612aae565b91505092959194509250565b600067ffffffffffffffff821115612b7a57612b7961282e565b5b602082029050602081019050919050565b600080fd5b6000612ba3612b9e84612b5f565b61288e565b90508083825260208201905060208402830185811115612bc657612bc5612b8b565b5b835b81811015612bef5780612bdb88826126d8565b845260208401935050602081019050612bc8565b5050509392505050565b600082601f830112612c0e57612c0d612824565b5b8135612c1e848260208601612b90565b91505092915050565b60008060408385031215612c3e57612c3d61248b565b5b600083013567ffffffffffffffff811115612c5c57612c5b612490565b5b612c6885828601612bf9565b9250506020612c7985828601612623565b9150509250929050565b60008060408385031215612c9a57612c9961248b565b5b6000612ca8858286016126d8565b9250506020612cb9858286016126d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d0a57607f821691505b602082108103612d1d57612d1c612cc3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d5d82612602565b9150612d6883612602565b9250828201905080821115612d8057612d7f612d23565b5b92915050565b6000612d9182612602565b9150612d9c83612602565b9250828203905081811115612db457612db3612d23565b5b92915050565b6000612dc582612602565b9150612dd083612602565b9250828202612dde81612602565b91508282048414831517612df557612df4612d23565b5b5092915050565b600081905092915050565b50565b6000612e17600083612dfc565b9150612e2282612e07565b600082019050919050565b6000612e3882612e0a565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ea47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e67565b612eae8683612e67565b95508019841693508086168417925050509392505050565b6000612ee1612edc612ed784612602565b6127aa565b612602565b9050919050565b6000819050919050565b612efb83612ec6565b612f0f612f0782612ee8565b848454612e74565b825550505050565b600090565b612f24612f17565b612f2f818484612ef2565b505050565b5b81811015612f5357612f48600082612f1c565b600181019050612f35565b5050565b601f821115612f9857612f6981612e42565b612f7284612e57565b81016020851015612f81578190505b612f95612f8d85612e57565b830182612f34565b50505b505050565b600082821c905092915050565b6000612fbb60001984600802612f9d565b1980831691505092915050565b6000612fd48383612faa565b9150826002028217905092915050565b612fed82612550565b67ffffffffffffffff8111156130065761300561282e565b5b6130108254612cf2565b61301b828285612f57565b600060209050601f83116001811461304e576000841561303c578287015190505b6130468582612fc8565b8655506130ae565b601f19841661305c86612e42565b60005b828110156130845784890151825560018201915060208501945060208101905061305f565b868310156130a1578489015161309d601f891682612faa565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006130f082612602565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361312257613121612d23565b5b600182019050919050565b600081905092915050565b600061314382612550565b61314d818561312d565b935061315d81856020860161256c565b80840191505092915050565b60006131758285613138565b91506131818284613138565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131e960268361255b565b91506131f48261318d565b604082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b60006040820190506132346000830185612697565b6132416020830184612697565b9392505050565b600081519050613257816129cf565b92915050565b6000602082840312156132735761327261248b565b5b600061328184828501613248565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132c060208361255b565b91506132cb8261328a565b602082019050919050565b600060208201905081810360008301526132ef816132b3565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061332c601f8361255b565b9150613337826132f6565b602082019050919050565b6000602082019050818103600083015261335b8161331f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006133b882613391565b6133c2818561339c565b93506133d281856020860161256c565b6133db81612596565b840191505092915050565b60006080820190506133fb6000830187612697565b6134086020830186612697565b613415604083018561272d565b818103606083015261342781846133ad565b905095945050505050565b600081519050613441816124c1565b92915050565b60006020828403121561345d5761345c61248b565b5b600061346b84828501613432565b9150509291505056fea264697066735822122084b288ba61983bf735b31fcffeeeccac59103a8fd7f76ab4e036f43d9b49002364736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56514b4178443372515a59716d466f35634e385054786b79575161726a3147704b6e505935454441733248382f00000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmVQKAxD3rQZYqmFo5cN8PTxkyWQarj1GpKnPY5EDAs2H8/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d56514b4178443372515a59716d466f35634e385054786b
Arg [3] : 79575161726a3147704b6e505935454441733248382f00000000000000000000
Deployed Bytecode Sourcemap
78345:7386:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26450:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27352:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33843:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33276:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80716:550;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23103:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78482:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84725:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83367:197;;;;;;;;;;;;;:::i;:::-;;2867:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85104:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82189:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82040:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28745:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82405:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24287:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77454:103;;;;;;;;;;;;;:::i;:::-;;82807:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81882:75;;;;;;;;;;;;;:::i;:::-;;76806:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83051:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78586:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27528:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80360:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34401:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82598:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78810:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85482:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78530:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81526:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83795:367;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78761:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34792:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77712:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26450:639;26535:4;26874:10;26859:25;;:11;:25;;;;:102;;;;26951:10;26936:25;;:11;:25;;;;26859:102;:179;;;;27028:10;27013:25;;:11;:25;;;;26859:179;26839:199;;26450:639;;;:::o;27352:100::-;27406:13;27439:5;27432:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27352:100;:::o;33843:218::-;33919:7;33944:16;33952:7;33944;:16::i;:::-;33939:64;;33969:34;;;;;;;;;;;;;;33939:64;34023:15;:24;34039:7;34023:24;;;;;;;;;;;:30;;;;;;;;;;;;34016:37;;33843:218;;;:::o;33276:408::-;33365:13;33381:16;33389:7;33381;:16::i;:::-;33365:32;;33437:5;33414:28;;:19;:17;:19::i;:::-;:28;;;33410:175;;33462:44;33479:5;33486:19;:17;:19::i;:::-;33462:16;:44::i;:::-;33457:128;;33534:35;;;;;;;;;;;;;;33457:128;33410:175;33630:2;33597:15;:24;33613:7;33597:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33668:7;33664:2;33648:28;;33657:5;33648:28;;;;;;;;;;;;33354:330;33276:408;;:::o;80716:550::-;80777:7;80799:18;80834:21;80844:10;80834:9;:21::i;:::-;80820:11;:35;;;;:::i;:::-;80799:56;;80887:16;;80873:10;:30;80868:387;;80927:12;;80920:19;;;;;80868:387;80989:1;80964:21;80974:10;80964:9;:21::i;:::-;:26;80963:63;;;;;81009:16;;80996:10;:29;80963:63;80959:296;;;81043:13;81086:16;;81072:11;:30;;;;:::i;:::-;81059:9;;:44;;;;:::i;:::-;81043:60;;81123:5;81116:12;;;;;;80959:296;81173:14;81202:11;81190:9;;:23;;;;:::i;:::-;81173:40;;81233:6;81226:13;;;;80716:550;;;;:::o;23103:323::-;23164:7;23392:15;:13;:15::i;:::-;23377:12;;23361:13;;:28;:46;23354:53;;23103:323;:::o;78482:33::-;;;;:::o;84725:176::-;84835:4;4216:10;4208:18;;:4;:18;;;4204:83;;4243:32;4264:10;4243:20;:32::i;:::-;4204:83;84852:37:::1;84871:4;84877:2;84881:7;84852:18;:37::i;:::-;84725:176:::0;;;;:::o;83367:197::-;76692:13;:11;:13::i;:::-;7564:21:::1;:19;:21::i;:::-;83456:10:::2;83480:7;:5;:7::i;:::-;83472:21;;83501;83472:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83455:72;;;83546:5;83538:14;;;::::0;::::2;;83416:148;7608:20:::1;:18;:20::i;:::-;83367:197::o:0;2867:143::-;2967:42;2867:143;:::o;85104:183::-;85217:4;4216:10;4208:18;;:4;:18;;;4204:83;;4243:32;4264:10;4243:20;:32::i;:::-;4204:83;85234:41:::1;85257:4;85263:2;85267:7;85234:22;:41::i;:::-;85104:183:::0;;;;:::o;82189:103::-;76692:13;:11;:13::i;:::-;82277:3:::1;82262:12;:18;;;;;;:::i;:::-;;82189:103:::0;:::o;82040:93::-;76692:13;:11;:13::i;:::-;82118:3:::1;82108:7;:13;;;;;;:::i;:::-;;82040:93:::0;:::o;28745:152::-;28817:7;28860:27;28879:7;28860:18;:27::i;:::-;28837:52;;28745:152;;;:::o;82405:95::-;76692:13;:11;:13::i;:::-;82483:5:::1;82471:9;:17;;;;82405:95:::0;:::o;24287:233::-;24359:7;24400:1;24383:19;;:5;:19;;;24379:60;;24411:28;;;;;;;;;;;;;;24379:60;18446:13;24457:18;:25;24476:5;24457:25;;;;;;;;;;;;;;;;:55;24450:62;;24287:233;;;:::o;77454:103::-;76692:13;:11;:13::i;:::-;77519:30:::1;77546:1;77519:18;:30::i;:::-;77454:103::o:0;82807:129::-;76692:13;:11;:13::i;:::-;82915:9:::1;82890:22;:34;;;;82807:129:::0;:::o;81882:75::-;76692:13;:11;:13::i;:::-;81939:6:::1;;;;;;;;;;;81938:7;81929:6;;:16;;;;;;;;;;;;;;;;;;81882:75::o:0;76806:87::-;76852:7;76879:6;;;;;;;;;;;76872:13;;76806:87;:::o;83051:117::-;76692:13;:11;:13::i;:::-;83147:9:::1;83128:16;:28;;;;83051:117:::0;:::o;78586:37::-;;;;:::o;27528:104::-;27584:13;27617:7;27610:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27528:104;:::o;80360:194::-;80425:11;79540:9;79526:23;;:10;:23;;;79522:53;;79558:17;;;;;;;;;;;;;;79522:53;79625:10;;79611:11;79594:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;79590:65;;;79644:11;;;;;;;;;;;;;;79590:65;79688:18;;79674:11;:32;79670:64;;;79715:19;;;;;;;;;;;;;;79670:64;79752:6;;;;;;;;;;;79749:34;;;79767:16;;;;;;;;;;;;;;79749:34;80458:11:::1;79929:22;;79915:11;79891:21;79901:10;79891:9;:21::i;:::-;:35;;;;:::i;:::-;:60;79888:95;;;79960:23;;;;;;;;;;;;;;79888:95;80016:1;80002:11;:15;:55;;;;80035:22;;80021:11;:36;80002:55;79998:87;;;80066:19;;;;;;;;;;;;;;79998:87;80118:22;80128:11;80118:9;:22::i;:::-;80106:9;:34;80102:65;;;80149:18;;;;;;;;;;;;;;80102:65;80506:34:::2;80516:10;80528:11;80506:9;:34::i;:::-;79798:1:::1;80360:194:::0;;:::o;34401:234::-;34548:8;34496:18;:39;34515:19;:17;:19::i;:::-;34496:39;;;;;;;;;;;;;;;:49;34536:8;34496:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;34608:8;34572:55;;34587:19;:17;:19::i;:::-;34572:55;;;34618:8;34572:55;;;;;;:::i;:::-;;;;;;;;34401:234;;:::o;82598:113::-;76692:13;:11;:13::i;:::-;82694:5:::1;82673:18;:26;;;;82598:113:::0;:::o;78810:39::-;;;;:::o;85482:244::-;85641:4;4216:10;4208:18;;:4;:18;;;4204:83;;4243:32;4264:10;4243:20;:32::i;:::-;4204:83;85667:47:::1;85690:4;85696:2;85700:7;85709:4;85667:22;:47::i;:::-;85482:244:::0;;;;;:::o;78530:41::-;;;;:::o;81526:224::-;76692:13;:11;:13::i;:::-;81617:6:::1;79540:9;79526:23;;:10;:23;;;79522:53;;79558:17;;;;;;;;;;;;;;79522:53;79625:10;;79611:11;79594:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;79590:65;;;79644:11;;;;;;;;;;;;;;79590:65;79688:18;;79674:11;:32;79670:64;;;79715:19;;;;;;;;;;;;;;79670:64;79752:6;;;;;;;;;;;79749:34;;;79767:16;;;;;;;;;;;;;;79749:34;81642:9:::2;81638:101;81661:8;:15;81657:1;:19;81638:101;;;81695:30;81705:8;81714:1;81705:11;;;;;;;;:::i;:::-;;;;;;;;81718:6;81695:9;:30::i;:::-;81678:3;;;;;:::i;:::-;;;;81638:101;;;;76716:1:::1;81526:224:::0;;:::o;83795:367::-;83869:13;83902:16;83910:7;83902;:16::i;:::-;83897:48;;83927:18;;;;;;;;;;;;;;83897:48;83973:28;84004:10;:8;:10::i;:::-;83973:41;;84063:1;84038:14;84032:28;:32;:118;;;;;;;;;;;;;;;;;84100:14;84116:18;:7;:16;:18::i;:::-;84083:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84032:118;84025:125;;;83795:367;;;:::o;78761:34::-;;;;:::o;34792:164::-;34889:4;34913:18;:25;34932:5;34913:25;;;;;;;;;;;;;;;:35;34939:8;34913:35;;;;;;;;;;;;;;;;;;;;;;;;;34906:42;;34792:164;;;;:::o;77712:201::-;76692:13;:11;:13::i;:::-;77821:1:::1;77801:22;;:8;:22;;::::0;77793:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;77877:28;77896:8;77877:18;:28::i;:::-;77712:201:::0;:::o;35214:282::-;35279:4;35335:7;35316:15;:13;:15::i;:::-;:26;;:66;;;;;35369:13;;35359:7;:23;35316:66;:153;;;;;35468:1;19222:8;35420:17;:26;35438:7;35420:26;;;;;;;;;;;;:44;:49;35316:153;35296:173;;35214:282;;;:::o;57522:105::-;57582:7;57609:10;57602:17;;57522:105;:::o;84221:107::-;84286:7;84315:1;84308:8;;84221:107;:::o;4446:419::-;4685:1;2967:42;4637:45;;;:49;4633:225;;;2967:42;4708;;;4759:4;4766:8;4708:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4703:144;;4822:8;4803:28;;;;;;;;;;;:::i;:::-;;;;;;;;4703:144;4633:225;4446:419;:::o;37482:2825::-;37624:27;37654;37673:7;37654:18;:27::i;:::-;37624:57;;37739:4;37698:45;;37714:19;37698:45;;;37694:86;;37752:28;;;;;;;;;;;;;;37694:86;37794:27;37823:23;37850:35;37877:7;37850:26;:35::i;:::-;37793:92;;;;37985:68;38010:15;38027:4;38033:19;:17;:19::i;:::-;37985:24;:68::i;:::-;37980:180;;38073:43;38090:4;38096:19;:17;:19::i;:::-;38073:16;:43::i;:::-;38068:92;;38125:35;;;;;;;;;;;;;;38068:92;37980:180;38191:1;38177:16;;:2;:16;;;38173:52;;38202:23;;;;;;;;;;;;;;38173:52;38238:43;38260:4;38266:2;38270:7;38279:1;38238:21;:43::i;:::-;38374:15;38371:160;;;38514:1;38493:19;38486:30;38371:160;38911:18;:24;38930:4;38911:24;;;;;;;;;;;;;;;;38909:26;;;;;;;;;;;;38980:18;:22;38999:2;38980:22;;;;;;;;;;;;;;;;38978:24;;;;;;;;;;;39302:146;39339:2;39388:45;39403:4;39409:2;39413:19;39388:14;:45::i;:::-;19502:8;39360:73;39302:18;:146::i;:::-;39273:17;:26;39291:7;39273:26;;;;;;;;;;;:175;;;;39619:1;19502:8;39568:19;:47;:52;39564:627;;39641:19;39673:1;39663:7;:11;39641:33;;39830:1;39796:17;:30;39814:11;39796:30;;;;;;;;;;;;:35;39792:384;;39934:13;;39919:11;:28;39915:242;;40114:19;40081:17;:30;40099:11;40081:30;;;;;;;;;;;:52;;;;39915:242;39792:384;39622:569;39564:627;40238:7;40234:2;40219:27;;40228:4;40219:27;;;;;;;;;;;;40257:42;40278:4;40284:2;40288:7;40297:1;40257:20;:42::i;:::-;37613:2694;;;37482:2825;;;:::o;76971:132::-;77046:12;:10;:12::i;:::-;77035:23;;:7;:5;:7::i;:::-;:23;;;77027:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76971:132::o;7644:293::-;7046:1;7778:7;;:19;7770:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7046:1;7911:7;:18;;;;7644:293::o;7945:213::-;7002:1;8128:7;:22;;;;7945:213::o;40403:193::-;40549:39;40566:4;40572:2;40576:7;40549:39;;;;;;;;;;;;:16;:39::i;:::-;40403:193;;;:::o;29900:1275::-;29967:7;29987:12;30002:7;29987:22;;30070:4;30051:15;:13;:15::i;:::-;:23;30047:1061;;30104:13;;30097:4;:20;30093:1015;;;30142:14;30159:17;:23;30177:4;30159:23;;;;;;;;;;;;30142:40;;30276:1;19222:8;30248:6;:24;:29;30244:845;;30913:113;30930:1;30920:6;:11;30913:113;;30973:17;:25;30991:6;;;;;;;30973:25;;;;;;;;;;;;30964:34;;30913:113;;;31059:6;31052:13;;;;;;30244:845;30119:989;30093:1015;30047:1061;31136:31;;;;;;;;;;;;;;29900:1275;;;;:::o;78073:191::-;78147:16;78166:6;;;;;;;;;;;78147:25;;78192:8;78183:6;;:17;;;;;;;;;;;;;;;;;;78247:8;78216:40;;78237:8;78216:40;;;;;;;;;;;;78136:128;78073:191;:::o;51354:112::-;51431:27;51441:2;51445:8;51431:27;;;;;;;;;;;;:9;:27::i;:::-;51354:112;;:::o;41194:407::-;41369:31;41382:4;41388:2;41392:7;41369:12;:31::i;:::-;41433:1;41415:2;:14;;;:19;41411:183;;41454:56;41485:4;41491:2;41495:7;41504:5;41454:30;:56::i;:::-;41449:145;;41538:40;;;;;;;;;;;;;;41449:145;41411:183;41194:407;;;;:::o;84408:114::-;84468:13;84503:7;84496:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84408:114;:::o;72784:716::-;72840:13;72891:14;72928:1;72908:17;72919:5;72908:10;:17::i;:::-;:21;72891:38;;72944:20;72978:6;72967:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72944:41;;73000:11;73129:6;73125:2;73121:15;73113:6;73109:28;73102:35;;73166:288;73173:4;73166:288;;;73198:5;;;;;;;;73340:8;73335:2;73328:5;73324:14;73319:30;73314:3;73306:44;73396:2;73387:11;;;;;;:::i;:::-;;;;;73430:1;73421:5;:10;73166:288;73417:21;73166:288;73475:6;73468:13;;;;;72784:716;;;:::o;36377:485::-;36479:27;36508:23;36549:38;36590:15;:24;36606:7;36590:24;;;;;;;;;;;36549:65;;36767:18;36744:41;;36824:19;36818:26;36799:45;;36729:126;36377:485;;;:::o;35605:659::-;35754:11;35919:16;35912:5;35908:28;35899:37;;36079:16;36068:9;36064:32;36051:45;;36229:15;36218:9;36215:30;36207:5;36196:9;36193:20;36190:56;36180:66;;35605:659;;;;;:::o;42263:159::-;;;;;:::o;56831:311::-;56966:7;56986:16;19626:3;57012:19;:41;;56986:68;;19626:3;57080:31;57091:4;57097:2;57101:9;57080:10;:31::i;:::-;57072:40;;:62;;57065:69;;;56831:311;;;;;:::o;31723:450::-;31803:14;31971:16;31964:5;31960:28;31951:37;;32148:5;32134:11;32109:23;32105:41;32102:52;32095:5;32092:63;32082:73;;31723:450;;;;:::o;43087:158::-;;;;;:::o;75357:98::-;75410:7;75437:10;75430:17;;75357:98;:::o;50581:689::-;50712:19;50718:2;50722:8;50712:5;:19::i;:::-;50791:1;50773:2;:14;;;:19;50769:483;;50813:11;50827:13;;50813:27;;50859:13;50881:8;50875:3;:14;50859:30;;50908:233;50939:62;50978:1;50982:2;50986:7;;;;;;50995:5;50939:30;:62::i;:::-;50934:167;;51037:40;;;;;;;;;;;;;;50934:167;51136:3;51128:5;:11;50908:233;;51223:3;51206:13;;:20;51202:34;;51228:8;;;51202:34;50794:458;;50769:483;50581:689;;;:::o;43685:716::-;43848:4;43894:2;43869:45;;;43915:19;:17;:19::i;:::-;43936:4;43942:7;43951:5;43869:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43865:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44169:1;44152:6;:13;:18;44148:235;;44198:40;;;;;;;;;;;;;;44148:235;44341:6;44335:13;44326:6;44322:2;44318:15;44311:38;43865:529;44038:54;;;44028:64;;;:6;:64;;;;44021:71;;;43685:716;;;;;;:::o;69650:922::-;69703:7;69723:14;69740:1;69723:18;;69790:6;69781:5;:15;69777:102;;69826:6;69817:15;;;;;;:::i;:::-;;;;;69861:2;69851:12;;;;69777:102;69906:6;69897:5;:15;69893:102;;69942:6;69933:15;;;;;;:::i;:::-;;;;;69977:2;69967:12;;;;69893:102;70022:6;70013:5;:15;70009:102;;70058:6;70049:15;;;;;;:::i;:::-;;;;;70093:2;70083:12;;;;70009:102;70138:5;70129;:14;70125:99;;70173:5;70164:14;;;;;;:::i;:::-;;;;;70207:1;70197:11;;;;70125:99;70251:5;70242;:14;70238:99;;70286:5;70277:14;;;;;;:::i;:::-;;;;;70320:1;70310:11;;;;70238:99;70364:5;70355;:14;70351:99;;70399:5;70390:14;;;;;;:::i;:::-;;;;;70433:1;70423:11;;;;70351:99;70477:5;70468;:14;70464:66;;70513:1;70503:11;;;;70464:66;70558:6;70551:13;;;69650:922;;;:::o;56532:147::-;56669:6;56532:147;;;;;:::o;44863:2966::-;44936:20;44959:13;;44936:36;;44999:1;44987:8;:13;44983:44;;45009:18;;;;;;;;;;;;;;44983:44;45040:61;45070:1;45074:2;45078:12;45092:8;45040:21;:61::i;:::-;45584:1;18584:2;45554:1;:26;;45553:32;45541:8;:45;45515:18;:22;45534:2;45515:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;45863:139;45900:2;45954:33;45977:1;45981:2;45985:1;45954:14;:33::i;:::-;45921:30;45942:8;45921:20;:30::i;:::-;:66;45863:18;:139::i;:::-;45829:17;:31;45847:12;45829:31;;;;;;;;;;;:173;;;;46019:16;46050:11;46079:8;46064:12;:23;46050:37;;46600:16;46596:2;46592:25;46580:37;;46972:12;46932:8;46891:1;46829:25;46770:1;46709;46682:335;47343:1;47329:12;47325:20;47283:346;47384:3;47375:7;47372:16;47283:346;;47602:7;47592:8;47589:1;47562:25;47559:1;47556;47551:59;47437:1;47428:7;47424:15;47413:26;;47283:346;;;47287:77;47674:1;47662:8;:13;47658:45;;47684:19;;;;;;;;;;;;;;47658:45;47736:3;47720:13;:19;;;;45289:2462;;47761:60;47790:1;47794:2;47798:12;47812:8;47761:20;:60::i;:::-;44925:2904;44863:2966;;:::o;32275:324::-;32345:14;32578:1;32568:8;32565:15;32539:24;32535:46;32525:56;;32275:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:311::-;12686:4;12776:18;12768:6;12765:30;12762:56;;;12798:18;;:::i;:::-;12762:56;12848:4;12840:6;12836:17;12828:25;;12908:4;12902;12898:15;12890:23;;12609:311;;;:::o;12926:117::-;13035:1;13032;13025:12;13066:710;13162:5;13187:81;13203:64;13260:6;13203:64;:::i;:::-;13187:81;:::i;:::-;13178:90;;13288:5;13317:6;13310:5;13303:21;13351:4;13344:5;13340:16;13333:23;;13404:4;13396:6;13392:17;13384:6;13380:30;13433:3;13425:6;13422:15;13419:122;;;13452:79;;:::i;:::-;13419:122;13567:6;13550:220;13584:6;13579:3;13576:15;13550:220;;;13659:3;13688:37;13721:3;13709:10;13688:37;:::i;:::-;13683:3;13676:50;13755:4;13750:3;13746:14;13739:21;;13626:144;13610:4;13605:3;13601:14;13594:21;;13550:220;;;13554:21;13168:608;;13066:710;;;;;:::o;13799:370::-;13870:5;13919:3;13912:4;13904:6;13900:17;13896:27;13886:122;;13927:79;;:::i;:::-;13886:122;14044:6;14031:20;14069:94;14159:3;14151:6;14144:4;14136:6;14132:17;14069:94;:::i;:::-;14060:103;;13876:293;13799:370;;;;:::o;14175:684::-;14268:6;14276;14325:2;14313:9;14304:7;14300:23;14296:32;14293:119;;;14331:79;;:::i;:::-;14293:119;14479:1;14468:9;14464:17;14451:31;14509:18;14501:6;14498:30;14495:117;;;14531:79;;:::i;:::-;14495:117;14636:78;14706:7;14697:6;14686:9;14682:22;14636:78;:::i;:::-;14626:88;;14422:302;14763:2;14789:53;14834:7;14825:6;14814:9;14810:22;14789:53;:::i;:::-;14779:63;;14734:118;14175:684;;;;;:::o;14865:474::-;14933:6;14941;14990:2;14978:9;14969:7;14965:23;14961:32;14958:119;;;14996:79;;:::i;:::-;14958:119;15116:1;15141:53;15186:7;15177:6;15166:9;15162:22;15141:53;:::i;:::-;15131:63;;15087:117;15243:2;15269:53;15314:7;15305:6;15294:9;15290:22;15269:53;:::i;:::-;15259:63;;15214:118;14865:474;;;;;:::o;15345:180::-;15393:77;15390:1;15383:88;15490:4;15487:1;15480:15;15514:4;15511:1;15504:15;15531:320;15575:6;15612:1;15606:4;15602:12;15592:22;;15659:1;15653:4;15649:12;15680:18;15670:81;;15736:4;15728:6;15724:17;15714:27;;15670:81;15798:2;15790:6;15787:14;15767:18;15764:38;15761:84;;15817:18;;:::i;:::-;15761:84;15582:269;15531:320;;;:::o;15857:180::-;15905:77;15902:1;15895:88;16002:4;15999:1;15992:15;16026:4;16023:1;16016:15;16043:191;16083:3;16102:20;16120:1;16102:20;:::i;:::-;16097:25;;16136:20;16154:1;16136:20;:::i;:::-;16131:25;;16179:1;16176;16172:9;16165:16;;16200:3;16197:1;16194:10;16191:36;;;16207:18;;:::i;:::-;16191:36;16043:191;;;;:::o;16240:194::-;16280:4;16300:20;16318:1;16300:20;:::i;:::-;16295:25;;16334:20;16352:1;16334:20;:::i;:::-;16329:25;;16378:1;16375;16371:9;16363:17;;16402:1;16396:4;16393:11;16390:37;;;16407:18;;:::i;:::-;16390:37;16240:194;;;;:::o;16440:410::-;16480:7;16503:20;16521:1;16503:20;:::i;:::-;16498:25;;16537:20;16555:1;16537:20;:::i;:::-;16532:25;;16592:1;16589;16585:9;16614:30;16632:11;16614:30;:::i;:::-;16603:41;;16793:1;16784:7;16780:15;16777:1;16774:22;16754:1;16747:9;16727:83;16704:139;;16823:18;;:::i;:::-;16704:139;16488:362;16440:410;;;;:::o;16856:147::-;16957:11;16994:3;16979:18;;16856:147;;;;:::o;17009:114::-;;:::o;17129:398::-;17288:3;17309:83;17390:1;17385:3;17309:83;:::i;:::-;17302:90;;17401:93;17490:3;17401:93;:::i;:::-;17519:1;17514:3;17510:11;17503:18;;17129:398;;;:::o;17533:379::-;17717:3;17739:147;17882:3;17739:147;:::i;:::-;17732:154;;17903:3;17896:10;;17533:379;;;:::o;17918:141::-;17967:4;17990:3;17982:11;;18013:3;18010:1;18003:14;18047:4;18044:1;18034:18;18026:26;;17918:141;;;:::o;18065:93::-;18102:6;18149:2;18144;18137:5;18133:14;18129:23;18119:33;;18065:93;;;:::o;18164:107::-;18208:8;18258:5;18252:4;18248:16;18227:37;;18164:107;;;;:::o;18277:393::-;18346:6;18396:1;18384:10;18380:18;18419:97;18449:66;18438:9;18419:97;:::i;:::-;18537:39;18567:8;18556:9;18537:39;:::i;:::-;18525:51;;18609:4;18605:9;18598:5;18594:21;18585:30;;18658:4;18648:8;18644:19;18637:5;18634:30;18624:40;;18353:317;;18277:393;;;;;:::o;18676:142::-;18726:9;18759:53;18777:34;18786:24;18804:5;18786:24;:::i;:::-;18777:34;:::i;:::-;18759:53;:::i;:::-;18746:66;;18676:142;;;:::o;18824:75::-;18867:3;18888:5;18881:12;;18824:75;;;:::o;18905:269::-;19015:39;19046:7;19015:39;:::i;:::-;19076:91;19125:41;19149:16;19125:41;:::i;:::-;19117:6;19110:4;19104:11;19076:91;:::i;:::-;19070:4;19063:105;18981:193;18905:269;;;:::o;19180:73::-;19225:3;19180:73;:::o;19259:189::-;19336:32;;:::i;:::-;19377:65;19435:6;19427;19421:4;19377:65;:::i;:::-;19312:136;19259:189;;:::o;19454:186::-;19514:120;19531:3;19524:5;19521:14;19514:120;;;19585:39;19622:1;19615:5;19585:39;:::i;:::-;19558:1;19551:5;19547:13;19538:22;;19514:120;;;19454:186;;:::o;19646:543::-;19747:2;19742:3;19739:11;19736:446;;;19781:38;19813:5;19781:38;:::i;:::-;19865:29;19883:10;19865:29;:::i;:::-;19855:8;19851:44;20048:2;20036:10;20033:18;20030:49;;;20069:8;20054:23;;20030:49;20092:80;20148:22;20166:3;20148:22;:::i;:::-;20138:8;20134:37;20121:11;20092:80;:::i;:::-;19751:431;;19736:446;19646:543;;;:::o;20195:117::-;20249:8;20299:5;20293:4;20289:16;20268:37;;20195:117;;;;:::o;20318:169::-;20362:6;20395:51;20443:1;20439:6;20431:5;20428:1;20424:13;20395:51;:::i;:::-;20391:56;20476:4;20470;20466:15;20456:25;;20369:118;20318:169;;;;:::o;20492:295::-;20568:4;20714:29;20739:3;20733:4;20714:29;:::i;:::-;20706:37;;20776:3;20773:1;20769:11;20763:4;20760:21;20752:29;;20492:295;;;;:::o;20792:1395::-;20909:37;20942:3;20909:37;:::i;:::-;21011:18;21003:6;21000:30;20997:56;;;21033:18;;:::i;:::-;20997:56;21077:38;21109:4;21103:11;21077:38;:::i;:::-;21162:67;21222:6;21214;21208:4;21162:67;:::i;:::-;21256:1;21280:4;21267:17;;21312:2;21304:6;21301:14;21329:1;21324:618;;;;21986:1;22003:6;22000:77;;;22052:9;22047:3;22043:19;22037:26;22028:35;;22000:77;22103:67;22163:6;22156:5;22103:67;:::i;:::-;22097:4;22090:81;21959:222;21294:887;;21324:618;21376:4;21372:9;21364:6;21360:22;21410:37;21442:4;21410:37;:::i;:::-;21469:1;21483:208;21497:7;21494:1;21491:14;21483:208;;;21576:9;21571:3;21567:19;21561:26;21553:6;21546:42;21627:1;21619:6;21615:14;21605:24;;21674:2;21663:9;21659:18;21646:31;;21520:4;21517:1;21513:12;21508:17;;21483:208;;;21719:6;21710:7;21707:19;21704:179;;;21777:9;21772:3;21768:19;21762:26;21820:48;21862:4;21854:6;21850:17;21839:9;21820:48;:::i;:::-;21812:6;21805:64;21727:156;21704:179;21929:1;21925;21917:6;21913:14;21909:22;21903:4;21896:36;21331:611;;;21294:887;;20884:1303;;;20792:1395;;:::o;22193:180::-;22241:77;22238:1;22231:88;22338:4;22335:1;22328:15;22362:4;22359:1;22352:15;22379:233;22418:3;22441:24;22459:5;22441:24;:::i;:::-;22432:33;;22487:66;22480:5;22477:77;22474:103;;22557:18;;:::i;:::-;22474:103;22604:1;22597:5;22593:13;22586:20;;22379:233;;;:::o;22618:148::-;22720:11;22757:3;22742:18;;22618:148;;;;:::o;22772:390::-;22878:3;22906:39;22939:5;22906:39;:::i;:::-;22961:89;23043:6;23038:3;22961:89;:::i;:::-;22954:96;;23059:65;23117:6;23112:3;23105:4;23098:5;23094:16;23059:65;:::i;:::-;23149:6;23144:3;23140:16;23133:23;;22882:280;22772:390;;;;:::o;23168:435::-;23348:3;23370:95;23461:3;23452:6;23370:95;:::i;:::-;23363:102;;23482:95;23573:3;23564:6;23482:95;:::i;:::-;23475:102;;23594:3;23587:10;;23168:435;;;;;:::o;23609:225::-;23749:34;23745:1;23737:6;23733:14;23726:58;23818:8;23813:2;23805:6;23801:15;23794:33;23609:225;:::o;23840:366::-;23982:3;24003:67;24067:2;24062:3;24003:67;:::i;:::-;23996:74;;24079:93;24168:3;24079:93;:::i;:::-;24197:2;24192:3;24188:12;24181:19;;23840:366;;;:::o;24212:419::-;24378:4;24416:2;24405:9;24401:18;24393:26;;24465:9;24459:4;24455:20;24451:1;24440:9;24436:17;24429:47;24493:131;24619:4;24493:131;:::i;:::-;24485:139;;24212:419;;;:::o;24637:332::-;24758:4;24796:2;24785:9;24781:18;24773:26;;24809:71;24877:1;24866:9;24862:17;24853:6;24809:71;:::i;:::-;24890:72;24958:2;24947:9;24943:18;24934:6;24890:72;:::i;:::-;24637:332;;;;;:::o;24975:137::-;25029:5;25060:6;25054:13;25045:22;;25076:30;25100:5;25076:30;:::i;:::-;24975:137;;;;:::o;25118:345::-;25185:6;25234:2;25222:9;25213:7;25209:23;25205:32;25202:119;;;25240:79;;:::i;:::-;25202:119;25360:1;25385:61;25438:7;25429:6;25418:9;25414:22;25385:61;:::i;:::-;25375:71;;25331:125;25118:345;;;;:::o;25469:182::-;25609:34;25605:1;25597:6;25593:14;25586:58;25469:182;:::o;25657:366::-;25799:3;25820:67;25884:2;25879:3;25820:67;:::i;:::-;25813:74;;25896:93;25985:3;25896:93;:::i;:::-;26014:2;26009:3;26005:12;25998:19;;25657:366;;;:::o;26029:419::-;26195:4;26233:2;26222:9;26218:18;26210:26;;26282:9;26276:4;26272:20;26268:1;26257:9;26253:17;26246:47;26310:131;26436:4;26310:131;:::i;:::-;26302:139;;26029:419;;;:::o;26454:181::-;26594:33;26590:1;26582:6;26578:14;26571:57;26454:181;:::o;26641:366::-;26783:3;26804:67;26868:2;26863:3;26804:67;:::i;:::-;26797:74;;26880:93;26969:3;26880:93;:::i;:::-;26998:2;26993:3;26989:12;26982:19;;26641:366;;;:::o;27013:419::-;27179:4;27217:2;27206:9;27202:18;27194:26;;27266:9;27260:4;27256:20;27252:1;27241:9;27237:17;27230:47;27294:131;27420:4;27294:131;:::i;:::-;27286:139;;27013:419;;;:::o;27438:180::-;27486:77;27483:1;27476:88;27583:4;27580:1;27573:15;27607:4;27604:1;27597:15;27624:98;27675:6;27709:5;27703:12;27693:22;;27624:98;;;:::o;27728:168::-;27811:11;27845:6;27840:3;27833:19;27885:4;27880:3;27876:14;27861:29;;27728:168;;;;:::o;27902:373::-;27988:3;28016:38;28048:5;28016:38;:::i;:::-;28070:70;28133:6;28128:3;28070:70;:::i;:::-;28063:77;;28149:65;28207:6;28202:3;28195:4;28188:5;28184:16;28149:65;:::i;:::-;28239:29;28261:6;28239:29;:::i;:::-;28234:3;28230:39;28223:46;;27992:283;27902:373;;;;:::o;28281:640::-;28476:4;28514:3;28503:9;28499:19;28491:27;;28528:71;28596:1;28585:9;28581:17;28572:6;28528:71;:::i;:::-;28609:72;28677:2;28666:9;28662:18;28653:6;28609:72;:::i;:::-;28691;28759:2;28748:9;28744:18;28735:6;28691:72;:::i;:::-;28810:9;28804:4;28800:20;28795:2;28784:9;28780:18;28773:48;28838:76;28909:4;28900:6;28838:76;:::i;:::-;28830:84;;28281:640;;;;;;;:::o;28927:141::-;28983:5;29014:6;29008:13;28999:22;;29030:32;29056:5;29030:32;:::i;:::-;28927:141;;;;:::o;29074:349::-;29143:6;29192:2;29180:9;29171:7;29167:23;29163:32;29160:119;;;29198:79;;:::i;:::-;29160:119;29318:1;29343:63;29398:7;29389:6;29378:9;29374:22;29343:63;:::i;:::-;29333:73;;29289:127;29074:349;;;;:::o
Swarm Source
ipfs://84b288ba61983bf735b31fcffeeeccac59103a8fd7f76ab4e036f43d9b490023
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.