Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
4,444 DecdPEPE
Holders
1,414
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 DecdPEPELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DecdPEPE
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-10 */ pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File operator-filter-registry/src/[email protected] 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 erc721a/contracts/[email protected] // ERC721A Contracts v4.2.3 // Creator: Chiru Labs 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/contracts/[email protected] // ERC721A Contracts v4.2.3 // Creator: Chiru Labs 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/[email protected] // 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/[email protected] // 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 @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File contracts/NFT.sol pragma solidity ^0.8.13; contract DecdPEPE is ERC721A, DefaultOperatorFilterer, Ownable { using Address for address; string private _baseTokenURI; uint256 public maxSupply; uint256 public maxMint; uint256 public maxPerTx; uint256 public price; bool public mintable; mapping(address => uint256) public minted; constructor( string memory url, string memory name, string memory symbol, address _owner, uint256 _price ) ERC721A(name, symbol) { _baseTokenURI = url; maxSupply = 4444; maxMint = 3; maxPerTx = 3; price = _price; mintable = false; _transferOwnership(_owner); } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function tokenURI( uint256 tokenId ) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return string(abi.encodePacked(baseURI, _toString(tokenId), ".json")); } function changeBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function changeMintable(bool _mintable) public onlyOwner { mintable = _mintable; } function changePrice(uint256 _price) public onlyOwner { price = _price; } function changeMaxMint(uint256 _maxMint) public onlyOwner { maxMint = _maxMint; } function changemaxPerTx(uint256 _maxPerTx) public onlyOwner { maxPerTx = _maxPerTx; } function changeMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function mint(uint256 num) public payable { uint256 amount = num * price; require(num <= maxPerTx, "Max per TX reached."); require(mintable, "status err"); require(msg.value == amount, "eth err"); require(minted[msg.sender] + num <= maxMint, "num err"); require(msg.sender == tx.origin, "The minter is another contract"); minted[msg.sender] += num; require(totalSupply() + num <= maxSupply, "num err"); _safeMint(msg.sender, num); } function burn(uint256 tokenId) public { address ownerAddress = ownerOf(tokenId); require(msg.sender == ownerAddress || msg.sender == address(owner()), "Not authorized to burn"); _burn(tokenId); } function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function _startTokenId() internal view override returns (uint256) { return 1; } function approve( address operator, uint256 tokenId ) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function airdrop( address[] memory users, uint256[] memory nums ) public onlyOwner { require(users.length == nums.length); for (uint i = 0; i < users.length; i++) { uint256 num = nums[i]; address user = users[i]; require(totalSupply() + num <= maxSupply, "num err"); _safeMint(user, num); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"url","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"nums","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"changeMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintable","type":"bool"}],"name":"changeMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"changemaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"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
60806040523480156200001157600080fd5b5060405162003f4438038062003f448339818101604052810190620000379190620006e5565b733cc6cdda760b79bafa08df41ecfa224f810dceb660018585816002908051906020019062000068929190620003f8565b50806003908051906020019062000081929190620003f8565b50620000926200032160201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200028f57801562000155576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200011b929190620007db565b600060405180830381600087803b1580156200013657600080fd5b505af11580156200014b573d6000803e3d6000fd5b505050506200028e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200020f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001d5929190620007db565b600060405180830381600087803b158015620001f057600080fd5b505af115801562000205573d6000803e3d6000fd5b505050506200028d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000258919062000808565b600060405180830381600087803b1580156200027357600080fd5b505af115801562000288573d6000803e3d6000fd5b505050505b5b5b5050620002b1620002a56200032a60201b60201c565b6200033260201b60201c565b8460099080519060200190620002c9929190620003f8565b5061115c600a819055506003600b819055506003600c8190555080600d819055506000600e60006101000a81548160ff02191690831515021790555062000316826200033260201b60201c565b505050505062000889565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004069062000854565b90600052602060002090601f0160209004810192826200042a576000855562000476565b82601f106200044557805160ff191683800117855562000476565b8280016001018555821562000476579182015b828111156200047557825182559160200191906001019062000458565b5b50905062000485919062000489565b5090565b5b80821115620004a45760008160009055506001016200048a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200051182620004c6565b810181811067ffffffffffffffff82111715620005335762000532620004d7565b5b80604052505050565b600062000548620004a8565b905062000556828262000506565b919050565b600067ffffffffffffffff821115620005795762000578620004d7565b5b6200058482620004c6565b9050602081019050919050565b60005b83811015620005b157808201518184015260208101905062000594565b83811115620005c1576000848401525b50505050565b6000620005de620005d8846200055b565b6200053c565b905082815260208101848484011115620005fd57620005fc620004c1565b5b6200060a84828562000591565b509392505050565b600082601f8301126200062a5762000629620004bc565b5b81516200063c848260208601620005c7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006728262000645565b9050919050565b620006848162000665565b81146200069057600080fd5b50565b600081519050620006a48162000679565b92915050565b6000819050919050565b620006bf81620006aa565b8114620006cb57600080fd5b50565b600081519050620006df81620006b4565b92915050565b600080600080600060a08688031215620007045762000703620004b2565b5b600086015167ffffffffffffffff811115620007255762000724620004b7565b5b620007338882890162000612565b955050602086015167ffffffffffffffff811115620007575762000756620004b7565b5b620007658882890162000612565b945050604086015167ffffffffffffffff811115620007895762000788620004b7565b5b620007978882890162000612565b9350506060620007aa8882890162000693565b9250506080620007bd88828901620006ce565b9150509295509295909350565b620007d58162000665565b82525050565b6000604082019050620007f26000830185620007ca565b620008016020830184620007ca565b9392505050565b60006020820190506200081f6000830184620007ca565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086d57607f821691505b60208210810362000883576200088262000825565b5b50919050565b6136ab80620008996000396000f3fe6080604052600436106101f95760003560e01c8063672434821161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146106c6578063e985e9c5146106f1578063f2fde38b1461072e578063f968adbe14610757578063fa624fa514610782576101f9565b8063a22cb4651461061b578063a2b40d1914610644578063b88d4fde1461066d578063c87b56dd14610689576101f9565b80638da5cb5b116100dc5780638da5cb5b1461057e57806395d89b41146105a9578063a035b1fe146105d4578063a0712d68146105ff576101f9565b806367243482146104d657806370a08231146104ff578063715018a61461053c5780637501f74114610553576101f9565b806339a0c6f91161019057806342842e0e1161015f57806342842e0e1461040057806342966c681461041c5780634779b82e146104455780634bf365df1461046e5780636352211e14610499576101f9565b806339a0c6f91461036c5780633ccfd60b14610395578063404c7cdd146103ac57806341f43434146103d5576101f9565b806318160ddd116101cc57806318160ddd146102bf5780631e7269c5146102ea57806320c63e3b1461032757806323b872dd14610350576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906125b7565b6107ab565b60405161023291906125ff565b60405180910390f35b34801561024757600080fd5b5061025061083d565b60405161025d91906126b3565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061270b565b6108cf565b60405161029a9190612779565b60405180910390f35b6102bd60048036038101906102b891906127c0565b61094e565b005b3480156102cb57600080fd5b506102d4610967565b6040516102e1919061280f565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061282a565b61097e565b60405161031e919061280f565b60405180910390f35b34801561033357600080fd5b5061034e6004803603810190610349919061270b565b610996565b005b61036a60048036038101906103659190612857565b6109a8565b005b34801561037857600080fd5b50610393600480360381019061038e91906129df565b6109f7565b005b3480156103a157600080fd5b506103aa610a19565b005b3480156103b857600080fd5b506103d360048036038101906103ce919061270b565b610a6a565b005b3480156103e157600080fd5b506103ea610a7c565b6040516103f79190612a87565b60405180910390f35b61041a60048036038101906104159190612857565b610a8e565b005b34801561042857600080fd5b50610443600480360381019061043e919061270b565b610add565b005b34801561045157600080fd5b5061046c60048036038101906104679190612ace565b610ba2565b005b34801561047a57600080fd5b50610483610bc7565b60405161049091906125ff565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb919061270b565b610bda565b6040516104cd9190612779565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612c86565b610bec565b005b34801561050b57600080fd5b506105266004803603810190610521919061282a565b610cc7565b604051610533919061280f565b60405180910390f35b34801561054857600080fd5b50610551610d7f565b005b34801561055f57600080fd5b50610568610d93565b604051610575919061280f565b60405180910390f35b34801561058a57600080fd5b50610593610d99565b6040516105a09190612779565b60405180910390f35b3480156105b557600080fd5b506105be610dc3565b6040516105cb91906126b3565b60405180910390f35b3480156105e057600080fd5b506105e9610e55565b6040516105f6919061280f565b60405180910390f35b6106196004803603810190610614919061270b565b610e5b565b005b34801561062757600080fd5b50610642600480360381019061063d9190612cfe565b6110fb565b005b34801561065057600080fd5b5061066b6004803603810190610666919061270b565b611114565b005b61068760048036038101906106829190612ddf565b611126565b005b34801561069557600080fd5b506106b060048036038101906106ab919061270b565b611177565b6040516106bd91906126b3565b60405180910390f35b3480156106d257600080fd5b506106db6111ff565b6040516106e8919061280f565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612e62565b611205565b60405161072591906125ff565b60405180910390f35b34801561073a57600080fd5b506107556004803603810190610750919061282a565b611299565b005b34801561076357600080fd5b5061076c61131c565b604051610779919061280f565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a4919061270b565b611322565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108365750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084c90612ed1565b80601f016020809104026020016040519081016040528092919081815260200182805461087890612ed1565b80156108c55780601f1061089a576101008083540402835291602001916108c5565b820191906000526020600020905b8154815290600101906020018083116108a857829003601f168201915b5050505050905090565b60006108da82611334565b610910576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161095881611393565b6109628383611490565b505050565b60006109716115d4565b6001546000540303905090565b600f6020528060005260406000206000915090505481565b61099e6115dd565b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e6576109e533611393565b5b6109f184848461165b565b50505050565b6109ff6115dd565b8060099080519060200190610a159291906124a8565b5050565b610a216115dd565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a67573d6000803e3d6000fd5b50565b610a726115dd565b80600a8190555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610acc57610acb33611393565b5b610ad784848461197d565b50505050565b6000610ae882610bda565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b565750610b27610d99565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90612f4e565b60405180910390fd5b610b9e8261199d565b5050565b610baa6115dd565b80600e60006101000a81548160ff02191690831515021790555050565b600e60009054906101000a900460ff1681565b6000610be5826119ab565b9050919050565b610bf46115dd565b8051825114610c0257600080fd5b60005b8251811015610cc2576000828281518110610c2357610c22612f6e565b5b602002602001015190506000848381518110610c4257610c41612f6e565b5b60200260200101519050600a5482610c58610967565b610c629190612fcc565b1115610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a9061306e565b60405180910390fd5b610cad8183611a77565b50508080610cba9061308e565b915050610c05565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d876115dd565b610d916000611a95565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610dd290612ed1565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfe90612ed1565b8015610e4b5780601f10610e2057610100808354040283529160200191610e4b565b820191906000526020600020905b815481529060010190602001808311610e2e57829003601f168201915b5050505050905090565b600d5481565b6000600d5482610e6b91906130d6565b9050600c54821115610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea99061317c565b60405180910390fd5b600e60009054906101000a900460ff16610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906131e8565b60405180910390fd5b803414610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90613254565b60405180910390fd5b600b5482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f919190612fcc565b1115610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc99061306e565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611037906132c0565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108f9190612fcc565b92505081905550600a54826110a2610967565b6110ac9190612fcc565b11156110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e49061306e565b60405180910390fd5b6110f73383611a77565b5050565b8161110581611393565b61110f8383611b5b565b505050565b61111c6115dd565b80600d8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111645761116333611393565b5b61117085858585611c66565b5050505050565b606061118282611334565b6111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890613352565b60405180910390fd5b60006111cb611cd9565b9050806111d784611d6b565b6040516020016111e89291906133fa565b604051602081830303815290604052915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112a16115dd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113079061349b565b60405180910390fd5b61131981611a95565b50565b600c5481565b61132a6115dd565b80600c8190555050565b60008161133f6115d4565b1115801561134e575060005482105b801561138c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561148d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161140a9291906134bb565b602060405180830381865afa158015611427573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144b91906134f9565b61148c57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114839190612779565b60405180910390fd5b5b50565b600061149b82610bda565b90508073ffffffffffffffffffffffffffffffffffffffff166114bc611dbb565b73ffffffffffffffffffffffffffffffffffffffff161461151f576114e8816114e3611dbb565b611205565b61151e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6115e5611dc3565b73ffffffffffffffffffffffffffffffffffffffff16611603610d99565b73ffffffffffffffffffffffffffffffffffffffff1614611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090613572565b60405180910390fd5b565b6000611666826119ab565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116cd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116d984611dcb565b915091506116ef81876116ea611dbb565b611df2565b61173b57611704866116ff611dbb565b611205565b61173a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117a1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117ae8686866001611e36565b80156117b957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061188785611863888887611e3c565b7c020000000000000000000000000000000000000000000000000000000017611e64565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361190d576000600185019050600060046000838152602001908152602001600020540361190b57600054811461190a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119758686866001611e8f565b505050505050565b61199883838360405180602001604052806000815250611126565b505050565b6119a8816000611e95565b50565b600080829050806119ba6115d4565b11611a4057600054811015611a3f5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a3d575b60008103611a33576004600083600190039350838152602001908152602001600020549050611a09565b8092505050611a72565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611a918282604051806020016040528060008152506120e7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611b68611dbb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c15611dbb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5a91906125ff565b60405180910390a35050565b611c718484846109a8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cd357611c9c84848484612184565b611cd2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611ce890612ed1565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1490612ed1565b8015611d615780601f10611d3657610100808354040283529160200191611d61565b820191906000526020600020905b815481529060010190602001808311611d4457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611da657600184039350600a81066030018453600a8104905080611d84575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e538686846122d4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611ea0836119ab565b90506000819050600080611eb386611dcb565b915091508415611f1c57611ecf8184611eca611dbb565b611df2565b611f1b57611ee483611edf611dbb565b611205565b611f1a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611f2a836000886001611e36565b8015611f3557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fdd83611f9a85600088611e3c565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611e64565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036120635760006001870190506000600460008381526020019081526020016000205403612061576000548114612060578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120cd836000886001611e8f565b600160008154809291906001019190505550505050505050565b6120f183836122dd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461217f57600080549050600083820390505b6121316000868380600101945086612184565b612167576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061211e57816000541461217c57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121aa611dbb565b8786866040518563ffffffff1660e01b81526004016121cc94939291906135e7565b6020604051808303816000875af192505050801561220857506040513d601f19601f820116820180604052508101906122059190613648565b60015b612281573d8060008114612238576040519150601f19603f3d011682016040523d82523d6000602084013e61223d565b606091505b506000815103612279576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361231d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61232a6000848385611e36565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123a1836123926000866000611e3c565b61239b85612498565b17611e64565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461244257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612407565b506000820361247d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124936000848385611e8f565b505050565b60006001821460e11b9050919050565b8280546124b490612ed1565b90600052602060002090601f0160209004810192826124d6576000855561251d565b82601f106124ef57805160ff191683800117855561251d565b8280016001018555821561251d579182015b8281111561251c578251825591602001919060010190612501565b5b50905061252a919061252e565b5090565b5b8082111561254757600081600090555060010161252f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125948161255f565b811461259f57600080fd5b50565b6000813590506125b18161258b565b92915050565b6000602082840312156125cd576125cc612555565b5b60006125db848285016125a2565b91505092915050565b60008115159050919050565b6125f9816125e4565b82525050565b600060208201905061261460008301846125f0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612654578082015181840152602081019050612639565b83811115612663576000848401525b50505050565b6000601f19601f8301169050919050565b60006126858261261a565b61268f8185612625565b935061269f818560208601612636565b6126a881612669565b840191505092915050565b600060208201905081810360008301526126cd818461267a565b905092915050565b6000819050919050565b6126e8816126d5565b81146126f357600080fd5b50565b600081359050612705816126df565b92915050565b60006020828403121561272157612720612555565b5b600061272f848285016126f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061276382612738565b9050919050565b61277381612758565b82525050565b600060208201905061278e600083018461276a565b92915050565b61279d81612758565b81146127a857600080fd5b50565b6000813590506127ba81612794565b92915050565b600080604083850312156127d7576127d6612555565b5b60006127e5858286016127ab565b92505060206127f6858286016126f6565b9150509250929050565b612809816126d5565b82525050565b60006020820190506128246000830184612800565b92915050565b6000602082840312156128405761283f612555565b5b600061284e848285016127ab565b91505092915050565b6000806000606084860312156128705761286f612555565b5b600061287e868287016127ab565b935050602061288f868287016127ab565b92505060406128a0868287016126f6565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128ec82612669565b810181811067ffffffffffffffff8211171561290b5761290a6128b4565b5b80604052505050565b600061291e61254b565b905061292a82826128e3565b919050565b600067ffffffffffffffff82111561294a576129496128b4565b5b61295382612669565b9050602081019050919050565b82818337600083830152505050565b600061298261297d8461292f565b612914565b90508281526020810184848401111561299e5761299d6128af565b5b6129a9848285612960565b509392505050565b600082601f8301126129c6576129c56128aa565b5b81356129d684826020860161296f565b91505092915050565b6000602082840312156129f5576129f4612555565b5b600082013567ffffffffffffffff811115612a1357612a1261255a565b5b612a1f848285016129b1565b91505092915050565b6000819050919050565b6000612a4d612a48612a4384612738565b612a28565b612738565b9050919050565b6000612a5f82612a32565b9050919050565b6000612a7182612a54565b9050919050565b612a8181612a66565b82525050565b6000602082019050612a9c6000830184612a78565b92915050565b612aab816125e4565b8114612ab657600080fd5b50565b600081359050612ac881612aa2565b92915050565b600060208284031215612ae457612ae3612555565b5b6000612af284828501612ab9565b91505092915050565b600067ffffffffffffffff821115612b1657612b156128b4565b5b602082029050602081019050919050565b600080fd5b6000612b3f612b3a84612afb565b612914565b90508083825260208201905060208402830185811115612b6257612b61612b27565b5b835b81811015612b8b5780612b7788826127ab565b845260208401935050602081019050612b64565b5050509392505050565b600082601f830112612baa57612ba96128aa565b5b8135612bba848260208601612b2c565b91505092915050565b600067ffffffffffffffff821115612bde57612bdd6128b4565b5b602082029050602081019050919050565b6000612c02612bfd84612bc3565b612914565b90508083825260208201905060208402830185811115612c2557612c24612b27565b5b835b81811015612c4e5780612c3a88826126f6565b845260208401935050602081019050612c27565b5050509392505050565b600082601f830112612c6d57612c6c6128aa565b5b8135612c7d848260208601612bef565b91505092915050565b60008060408385031215612c9d57612c9c612555565b5b600083013567ffffffffffffffff811115612cbb57612cba61255a565b5b612cc785828601612b95565b925050602083013567ffffffffffffffff811115612ce857612ce761255a565b5b612cf485828601612c58565b9150509250929050565b60008060408385031215612d1557612d14612555565b5b6000612d23858286016127ab565b9250506020612d3485828601612ab9565b9150509250929050565b600067ffffffffffffffff821115612d5957612d586128b4565b5b612d6282612669565b9050602081019050919050565b6000612d82612d7d84612d3e565b612914565b905082815260208101848484011115612d9e57612d9d6128af565b5b612da9848285612960565b509392505050565b600082601f830112612dc657612dc56128aa565b5b8135612dd6848260208601612d6f565b91505092915050565b60008060008060808587031215612df957612df8612555565b5b6000612e07878288016127ab565b9450506020612e18878288016127ab565b9350506040612e29878288016126f6565b925050606085013567ffffffffffffffff811115612e4a57612e4961255a565b5b612e5687828801612db1565b91505092959194509250565b60008060408385031215612e7957612e78612555565b5b6000612e87858286016127ab565b9250506020612e98858286016127ab565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ee957607f821691505b602082108103612efc57612efb612ea2565b5b50919050565b7f4e6f7420617574686f72697a656420746f206275726e00000000000000000000600082015250565b6000612f38601683612625565b9150612f4382612f02565b602082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fd7826126d5565b9150612fe2836126d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561301757613016612f9d565b5b828201905092915050565b7f6e756d2065727200000000000000000000000000000000000000000000000000600082015250565b6000613058600783612625565b915061306382613022565b602082019050919050565b600060208201905081810360008301526130878161304b565b9050919050565b6000613099826126d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130cb576130ca612f9d565b5b600182019050919050565b60006130e1826126d5565b91506130ec836126d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561312557613124612f9d565b5b828202905092915050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613166601383612625565b915061317182613130565b602082019050919050565b6000602082019050818103600083015261319581613159565b9050919050565b7f7374617475732065727200000000000000000000000000000000000000000000600082015250565b60006131d2600a83612625565b91506131dd8261319c565b602082019050919050565b60006020820190508181036000830152613201816131c5565b9050919050565b7f6574682065727200000000000000000000000000000000000000000000000000600082015250565b600061323e600783612625565b915061324982613208565b602082019050919050565b6000602082019050818103600083015261326d81613231565b9050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b60006132aa601e83612625565b91506132b582613274565b602082019050919050565b600060208201905081810360008301526132d98161329d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061333c602f83612625565b9150613347826132e0565b604082019050919050565b6000602082019050818103600083015261336b8161332f565b9050919050565b600081905092915050565b60006133888261261a565b6133928185613372565b93506133a2818560208601612636565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006133e4600583613372565b91506133ef826133ae565b600582019050919050565b6000613406828561337d565b9150613412828461337d565b915061341d826133d7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613485602683612625565b915061349082613429565b604082019050919050565b600060208201905081810360008301526134b481613478565b9050919050565b60006040820190506134d0600083018561276a565b6134dd602083018461276a565b9392505050565b6000815190506134f381612aa2565b92915050565b60006020828403121561350f5761350e612555565b5b600061351d848285016134e4565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061355c602083612625565b915061356782613526565b602082019050919050565b6000602082019050818103600083015261358b8161354f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135b982613592565b6135c3818561359d565b93506135d3818560208601612636565b6135dc81612669565b840191505092915050565b60006080820190506135fc600083018761276a565b613609602083018661276a565b6136166040830185612800565b818103606083015261362881846135ae565b905095945050505050565b6000815190506136428161258b565b92915050565b60006020828403121561365e5761365d612555565b5b600061366c84828501613633565b9150509291505056fea26469706673582212205d6e2f94fba167bad1216a3b74c982587375382b167eb469c9c94561261f649964736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000081c054c12fb170f30064e07bec18a4809abde78b000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696772336d726462756e6462617332647a32726767333565636a6d726b63633632656b717569793370613263666b726674646134342f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4465636164656e7450657065000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084465636450455045000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063672434821161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146106c6578063e985e9c5146106f1578063f2fde38b1461072e578063f968adbe14610757578063fa624fa514610782576101f9565b8063a22cb4651461061b578063a2b40d1914610644578063b88d4fde1461066d578063c87b56dd14610689576101f9565b80638da5cb5b116100dc5780638da5cb5b1461057e57806395d89b41146105a9578063a035b1fe146105d4578063a0712d68146105ff576101f9565b806367243482146104d657806370a08231146104ff578063715018a61461053c5780637501f74114610553576101f9565b806339a0c6f91161019057806342842e0e1161015f57806342842e0e1461040057806342966c681461041c5780634779b82e146104455780634bf365df1461046e5780636352211e14610499576101f9565b806339a0c6f91461036c5780633ccfd60b14610395578063404c7cdd146103ac57806341f43434146103d5576101f9565b806318160ddd116101cc57806318160ddd146102bf5780631e7269c5146102ea57806320c63e3b1461032757806323b872dd14610350576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906125b7565b6107ab565b60405161023291906125ff565b60405180910390f35b34801561024757600080fd5b5061025061083d565b60405161025d91906126b3565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061270b565b6108cf565b60405161029a9190612779565b60405180910390f35b6102bd60048036038101906102b891906127c0565b61094e565b005b3480156102cb57600080fd5b506102d4610967565b6040516102e1919061280f565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061282a565b61097e565b60405161031e919061280f565b60405180910390f35b34801561033357600080fd5b5061034e6004803603810190610349919061270b565b610996565b005b61036a60048036038101906103659190612857565b6109a8565b005b34801561037857600080fd5b50610393600480360381019061038e91906129df565b6109f7565b005b3480156103a157600080fd5b506103aa610a19565b005b3480156103b857600080fd5b506103d360048036038101906103ce919061270b565b610a6a565b005b3480156103e157600080fd5b506103ea610a7c565b6040516103f79190612a87565b60405180910390f35b61041a60048036038101906104159190612857565b610a8e565b005b34801561042857600080fd5b50610443600480360381019061043e919061270b565b610add565b005b34801561045157600080fd5b5061046c60048036038101906104679190612ace565b610ba2565b005b34801561047a57600080fd5b50610483610bc7565b60405161049091906125ff565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb919061270b565b610bda565b6040516104cd9190612779565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612c86565b610bec565b005b34801561050b57600080fd5b506105266004803603810190610521919061282a565b610cc7565b604051610533919061280f565b60405180910390f35b34801561054857600080fd5b50610551610d7f565b005b34801561055f57600080fd5b50610568610d93565b604051610575919061280f565b60405180910390f35b34801561058a57600080fd5b50610593610d99565b6040516105a09190612779565b60405180910390f35b3480156105b557600080fd5b506105be610dc3565b6040516105cb91906126b3565b60405180910390f35b3480156105e057600080fd5b506105e9610e55565b6040516105f6919061280f565b60405180910390f35b6106196004803603810190610614919061270b565b610e5b565b005b34801561062757600080fd5b50610642600480360381019061063d9190612cfe565b6110fb565b005b34801561065057600080fd5b5061066b6004803603810190610666919061270b565b611114565b005b61068760048036038101906106829190612ddf565b611126565b005b34801561069557600080fd5b506106b060048036038101906106ab919061270b565b611177565b6040516106bd91906126b3565b60405180910390f35b3480156106d257600080fd5b506106db6111ff565b6040516106e8919061280f565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612e62565b611205565b60405161072591906125ff565b60405180910390f35b34801561073a57600080fd5b506107556004803603810190610750919061282a565b611299565b005b34801561076357600080fd5b5061076c61131c565b604051610779919061280f565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a4919061270b565b611322565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108365750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084c90612ed1565b80601f016020809104026020016040519081016040528092919081815260200182805461087890612ed1565b80156108c55780601f1061089a576101008083540402835291602001916108c5565b820191906000526020600020905b8154815290600101906020018083116108a857829003601f168201915b5050505050905090565b60006108da82611334565b610910576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161095881611393565b6109628383611490565b505050565b60006109716115d4565b6001546000540303905090565b600f6020528060005260406000206000915090505481565b61099e6115dd565b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e6576109e533611393565b5b6109f184848461165b565b50505050565b6109ff6115dd565b8060099080519060200190610a159291906124a8565b5050565b610a216115dd565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a67573d6000803e3d6000fd5b50565b610a726115dd565b80600a8190555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610acc57610acb33611393565b5b610ad784848461197d565b50505050565b6000610ae882610bda565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b565750610b27610d99565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90612f4e565b60405180910390fd5b610b9e8261199d565b5050565b610baa6115dd565b80600e60006101000a81548160ff02191690831515021790555050565b600e60009054906101000a900460ff1681565b6000610be5826119ab565b9050919050565b610bf46115dd565b8051825114610c0257600080fd5b60005b8251811015610cc2576000828281518110610c2357610c22612f6e565b5b602002602001015190506000848381518110610c4257610c41612f6e565b5b60200260200101519050600a5482610c58610967565b610c629190612fcc565b1115610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a9061306e565b60405180910390fd5b610cad8183611a77565b50508080610cba9061308e565b915050610c05565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d876115dd565b610d916000611a95565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610dd290612ed1565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfe90612ed1565b8015610e4b5780601f10610e2057610100808354040283529160200191610e4b565b820191906000526020600020905b815481529060010190602001808311610e2e57829003601f168201915b5050505050905090565b600d5481565b6000600d5482610e6b91906130d6565b9050600c54821115610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea99061317c565b60405180910390fd5b600e60009054906101000a900460ff16610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906131e8565b60405180910390fd5b803414610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90613254565b60405180910390fd5b600b5482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f919190612fcc565b1115610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc99061306e565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611037906132c0565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108f9190612fcc565b92505081905550600a54826110a2610967565b6110ac9190612fcc565b11156110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e49061306e565b60405180910390fd5b6110f73383611a77565b5050565b8161110581611393565b61110f8383611b5b565b505050565b61111c6115dd565b80600d8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111645761116333611393565b5b61117085858585611c66565b5050505050565b606061118282611334565b6111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890613352565b60405180910390fd5b60006111cb611cd9565b9050806111d784611d6b565b6040516020016111e89291906133fa565b604051602081830303815290604052915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112a16115dd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113079061349b565b60405180910390fd5b61131981611a95565b50565b600c5481565b61132a6115dd565b80600c8190555050565b60008161133f6115d4565b1115801561134e575060005482105b801561138c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561148d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161140a9291906134bb565b602060405180830381865afa158015611427573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144b91906134f9565b61148c57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114839190612779565b60405180910390fd5b5b50565b600061149b82610bda565b90508073ffffffffffffffffffffffffffffffffffffffff166114bc611dbb565b73ffffffffffffffffffffffffffffffffffffffff161461151f576114e8816114e3611dbb565b611205565b61151e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6115e5611dc3565b73ffffffffffffffffffffffffffffffffffffffff16611603610d99565b73ffffffffffffffffffffffffffffffffffffffff1614611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090613572565b60405180910390fd5b565b6000611666826119ab565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116cd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116d984611dcb565b915091506116ef81876116ea611dbb565b611df2565b61173b57611704866116ff611dbb565b611205565b61173a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117a1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117ae8686866001611e36565b80156117b957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061188785611863888887611e3c565b7c020000000000000000000000000000000000000000000000000000000017611e64565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361190d576000600185019050600060046000838152602001908152602001600020540361190b57600054811461190a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119758686866001611e8f565b505050505050565b61199883838360405180602001604052806000815250611126565b505050565b6119a8816000611e95565b50565b600080829050806119ba6115d4565b11611a4057600054811015611a3f5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a3d575b60008103611a33576004600083600190039350838152602001908152602001600020549050611a09565b8092505050611a72565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611a918282604051806020016040528060008152506120e7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611b68611dbb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c15611dbb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5a91906125ff565b60405180910390a35050565b611c718484846109a8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cd357611c9c84848484612184565b611cd2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611ce890612ed1565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1490612ed1565b8015611d615780601f10611d3657610100808354040283529160200191611d61565b820191906000526020600020905b815481529060010190602001808311611d4457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611da657600184039350600a81066030018453600a8104905080611d84575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e538686846122d4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611ea0836119ab565b90506000819050600080611eb386611dcb565b915091508415611f1c57611ecf8184611eca611dbb565b611df2565b611f1b57611ee483611edf611dbb565b611205565b611f1a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611f2a836000886001611e36565b8015611f3557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fdd83611f9a85600088611e3c565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611e64565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036120635760006001870190506000600460008381526020019081526020016000205403612061576000548114612060578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120cd836000886001611e8f565b600160008154809291906001019190505550505050505050565b6120f183836122dd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461217f57600080549050600083820390505b6121316000868380600101945086612184565b612167576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061211e57816000541461217c57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121aa611dbb565b8786866040518563ffffffff1660e01b81526004016121cc94939291906135e7565b6020604051808303816000875af192505050801561220857506040513d601f19601f820116820180604052508101906122059190613648565b60015b612281573d8060008114612238576040519150601f19603f3d011682016040523d82523d6000602084013e61223d565b606091505b506000815103612279576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361231d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61232a6000848385611e36565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123a1836123926000866000611e3c565b61239b85612498565b17611e64565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461244257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612407565b506000820361247d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124936000848385611e8f565b505050565b60006001821460e11b9050919050565b8280546124b490612ed1565b90600052602060002090601f0160209004810192826124d6576000855561251d565b82601f106124ef57805160ff191683800117855561251d565b8280016001018555821561251d579182015b8281111561251c578251825591602001919060010190612501565b5b50905061252a919061252e565b5090565b5b8082111561254757600081600090555060010161252f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125948161255f565b811461259f57600080fd5b50565b6000813590506125b18161258b565b92915050565b6000602082840312156125cd576125cc612555565b5b60006125db848285016125a2565b91505092915050565b60008115159050919050565b6125f9816125e4565b82525050565b600060208201905061261460008301846125f0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612654578082015181840152602081019050612639565b83811115612663576000848401525b50505050565b6000601f19601f8301169050919050565b60006126858261261a565b61268f8185612625565b935061269f818560208601612636565b6126a881612669565b840191505092915050565b600060208201905081810360008301526126cd818461267a565b905092915050565b6000819050919050565b6126e8816126d5565b81146126f357600080fd5b50565b600081359050612705816126df565b92915050565b60006020828403121561272157612720612555565b5b600061272f848285016126f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061276382612738565b9050919050565b61277381612758565b82525050565b600060208201905061278e600083018461276a565b92915050565b61279d81612758565b81146127a857600080fd5b50565b6000813590506127ba81612794565b92915050565b600080604083850312156127d7576127d6612555565b5b60006127e5858286016127ab565b92505060206127f6858286016126f6565b9150509250929050565b612809816126d5565b82525050565b60006020820190506128246000830184612800565b92915050565b6000602082840312156128405761283f612555565b5b600061284e848285016127ab565b91505092915050565b6000806000606084860312156128705761286f612555565b5b600061287e868287016127ab565b935050602061288f868287016127ab565b92505060406128a0868287016126f6565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128ec82612669565b810181811067ffffffffffffffff8211171561290b5761290a6128b4565b5b80604052505050565b600061291e61254b565b905061292a82826128e3565b919050565b600067ffffffffffffffff82111561294a576129496128b4565b5b61295382612669565b9050602081019050919050565b82818337600083830152505050565b600061298261297d8461292f565b612914565b90508281526020810184848401111561299e5761299d6128af565b5b6129a9848285612960565b509392505050565b600082601f8301126129c6576129c56128aa565b5b81356129d684826020860161296f565b91505092915050565b6000602082840312156129f5576129f4612555565b5b600082013567ffffffffffffffff811115612a1357612a1261255a565b5b612a1f848285016129b1565b91505092915050565b6000819050919050565b6000612a4d612a48612a4384612738565b612a28565b612738565b9050919050565b6000612a5f82612a32565b9050919050565b6000612a7182612a54565b9050919050565b612a8181612a66565b82525050565b6000602082019050612a9c6000830184612a78565b92915050565b612aab816125e4565b8114612ab657600080fd5b50565b600081359050612ac881612aa2565b92915050565b600060208284031215612ae457612ae3612555565b5b6000612af284828501612ab9565b91505092915050565b600067ffffffffffffffff821115612b1657612b156128b4565b5b602082029050602081019050919050565b600080fd5b6000612b3f612b3a84612afb565b612914565b90508083825260208201905060208402830185811115612b6257612b61612b27565b5b835b81811015612b8b5780612b7788826127ab565b845260208401935050602081019050612b64565b5050509392505050565b600082601f830112612baa57612ba96128aa565b5b8135612bba848260208601612b2c565b91505092915050565b600067ffffffffffffffff821115612bde57612bdd6128b4565b5b602082029050602081019050919050565b6000612c02612bfd84612bc3565b612914565b90508083825260208201905060208402830185811115612c2557612c24612b27565b5b835b81811015612c4e5780612c3a88826126f6565b845260208401935050602081019050612c27565b5050509392505050565b600082601f830112612c6d57612c6c6128aa565b5b8135612c7d848260208601612bef565b91505092915050565b60008060408385031215612c9d57612c9c612555565b5b600083013567ffffffffffffffff811115612cbb57612cba61255a565b5b612cc785828601612b95565b925050602083013567ffffffffffffffff811115612ce857612ce761255a565b5b612cf485828601612c58565b9150509250929050565b60008060408385031215612d1557612d14612555565b5b6000612d23858286016127ab565b9250506020612d3485828601612ab9565b9150509250929050565b600067ffffffffffffffff821115612d5957612d586128b4565b5b612d6282612669565b9050602081019050919050565b6000612d82612d7d84612d3e565b612914565b905082815260208101848484011115612d9e57612d9d6128af565b5b612da9848285612960565b509392505050565b600082601f830112612dc657612dc56128aa565b5b8135612dd6848260208601612d6f565b91505092915050565b60008060008060808587031215612df957612df8612555565b5b6000612e07878288016127ab565b9450506020612e18878288016127ab565b9350506040612e29878288016126f6565b925050606085013567ffffffffffffffff811115612e4a57612e4961255a565b5b612e5687828801612db1565b91505092959194509250565b60008060408385031215612e7957612e78612555565b5b6000612e87858286016127ab565b9250506020612e98858286016127ab565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ee957607f821691505b602082108103612efc57612efb612ea2565b5b50919050565b7f4e6f7420617574686f72697a656420746f206275726e00000000000000000000600082015250565b6000612f38601683612625565b9150612f4382612f02565b602082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fd7826126d5565b9150612fe2836126d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561301757613016612f9d565b5b828201905092915050565b7f6e756d2065727200000000000000000000000000000000000000000000000000600082015250565b6000613058600783612625565b915061306382613022565b602082019050919050565b600060208201905081810360008301526130878161304b565b9050919050565b6000613099826126d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130cb576130ca612f9d565b5b600182019050919050565b60006130e1826126d5565b91506130ec836126d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561312557613124612f9d565b5b828202905092915050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613166601383612625565b915061317182613130565b602082019050919050565b6000602082019050818103600083015261319581613159565b9050919050565b7f7374617475732065727200000000000000000000000000000000000000000000600082015250565b60006131d2600a83612625565b91506131dd8261319c565b602082019050919050565b60006020820190508181036000830152613201816131c5565b9050919050565b7f6574682065727200000000000000000000000000000000000000000000000000600082015250565b600061323e600783612625565b915061324982613208565b602082019050919050565b6000602082019050818103600083015261326d81613231565b9050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b60006132aa601e83612625565b91506132b582613274565b602082019050919050565b600060208201905081810360008301526132d98161329d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061333c602f83612625565b9150613347826132e0565b604082019050919050565b6000602082019050818103600083015261336b8161332f565b9050919050565b600081905092915050565b60006133888261261a565b6133928185613372565b93506133a2818560208601612636565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006133e4600583613372565b91506133ef826133ae565b600582019050919050565b6000613406828561337d565b9150613412828461337d565b915061341d826133d7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613485602683612625565b915061349082613429565b604082019050919050565b600060208201905081810360008301526134b481613478565b9050919050565b60006040820190506134d0600083018561276a565b6134dd602083018461276a565b9392505050565b6000815190506134f381612aa2565b92915050565b60006020828403121561350f5761350e612555565b5b600061351d848285016134e4565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061355c602083612625565b915061356782613526565b602082019050919050565b6000602082019050818103600083015261358b8161354f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135b982613592565b6135c3818561359d565b93506135d3818560208601612636565b6135dc81612669565b840191505092915050565b60006080820190506135fc600083018761276a565b613609602083018661276a565b6136166040830185612800565b818103606083015261362881846135ae565b905095945050505050565b6000815190506136428161258b565b92915050565b60006020828403121561365e5761365d612555565b5b600061366c84828501613633565b9150509291505056fea26469706673582212205d6e2f94fba167bad1216a3b74c982587375382b167eb469c9c94561261f649964736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000081c054c12fb170f30064e07bec18a4809abde78b000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696772336d726462756e6462617332647a32726767333565636a6d726b63633632656b717569793370613263666b726674646134342f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4465636164656e7450657065000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084465636450455045000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : url (string): ipfs://bafybeigr3mrdbundbas2dz2rgg35ecjmrkcc62ekquiy3pa2cfkrftda44/
Arg [1] : name (string): DecadentPepe
Arg [2] : symbol (string): DecdPEPE
Arg [3] : _owner (address): 0x81c054C12fb170F30064E07Bec18a4809ABDE78B
Arg [4] : _price (uint256): 3000000000000000
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000081c054c12fb170f30064e07bec18a4809abde78b
Arg [4] : 000000000000000000000000000000000000000000000000000aa87bee538000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [6] : 697066733a2f2f626166796265696772336d726462756e6462617332647a3272
Arg [7] : 6767333565636a6d726b63633632656b717569793370613263666b7266746461
Arg [8] : 34342f0000000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [10] : 4465636164656e74506570650000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [12] : 4465636450455045000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
69925:4307:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23784:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24686:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31177:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72826:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20437:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70210:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71433:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73024:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71121:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73713:109;;;;;;;;;;;;;:::i;:::-;;71643:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2862:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73237:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72280:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71234:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70181:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26079:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73830:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21621:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59605:103;;;;;;;;;;;;;:::i;:::-;;70095:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58957:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24862:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70154:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71754:518;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72515:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71338:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73458:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70760:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70064:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32126:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59863:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70124:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71536:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23784:639;23869:4;24208:10;24193:25;;:11;:25;;;;:102;;;;24285:10;24270:25;;:11;:25;;;;24193:102;:179;;;;24362:10;24347:25;;:11;:25;;;;24193:179;24173:199;;23784:639;;;:::o;24686:100::-;24740:13;24773:5;24766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24686:100;:::o;31177:218::-;31253:7;31278:16;31286:7;31278;:16::i;:::-;31273:64;;31303:34;;;;;;;;;;;;;;31273:64;31357:15;:24;31373:7;31357:24;;;;;;;;;;;:30;;;;;;;;;;;;31350:37;;31177:218;;;:::o;72826:190::-;72955:8;4383:30;4404:8;4383:20;:30::i;:::-;72976:32:::1;72990:8;73000:7;72976:13;:32::i;:::-;72826:190:::0;;;:::o;20437:323::-;20498:7;20726:15;:13;:15::i;:::-;20711:12;;20695:13;;:28;:46;20688:53;;20437:323;:::o;70210:41::-;;;;;;;;;;;;;;;;;:::o;71433:95::-;58843:13;:11;:13::i;:::-;71512:8:::1;71502:7;:18;;;;71433:95:::0;:::o;73024:205::-;73167:4;4211:10;4203:18;;:4;:18;;;4199:83;;4238:32;4259:10;4238:20;:32::i;:::-;4199:83;73184:37:::1;73203:4;73209:2;73213:7;73184:18;:37::i;:::-;73024:205:::0;;;;:::o;71121:105::-;58843:13;:11;:13::i;:::-;71211:7:::1;71195:13;:23;;;;;;;;;;;;:::i;:::-;;71121:105:::0;:::o;73713:109::-;58843:13;:11;:13::i;:::-;73771:10:::1;73763:28;;:51;73792:21;73763:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;73713:109::o:0;71643:103::-;58843:13;:11;:13::i;:::-;71728:10:::1;71716:9;:22;;;;71643:103:::0;:::o;2862:143::-;2962:42;2862:143;:::o;73237:213::-;73384:4;4211:10;4203:18;;:4;:18;;;4199:83;;4238:32;4259:10;4238:20;:32::i;:::-;4199:83;73401:41:::1;73424:4;73430:2;73434:7;73401:22;:41::i;:::-;73237:213:::0;;;;:::o;72280:227::-;72329:20;72352:16;72360:7;72352;:16::i;:::-;72329:39;;72401:12;72387:26;;:10;:26;;;:60;;;;72439:7;:5;:7::i;:::-;72417:30;;:10;:30;;;72387:60;72379:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;72485:14;72491:7;72485:5;:14::i;:::-;72318:189;72280:227;:::o;71234:96::-;58843:13;:11;:13::i;:::-;71313:9:::1;71302:8;;:20;;;;;;;;;;;;;;;;;;71234:96:::0;:::o;70181:20::-;;;;;;;;;;;;;:::o;26079:152::-;26151:7;26194:27;26213:7;26194:18;:27::i;:::-;26171:52;;26079:152;;;:::o;73830:399::-;58843:13;:11;:13::i;:::-;73971:4:::1;:11;73955:5;:12;:27;73947:36;;;::::0;::::1;;73999:6;73994:228;74015:5;:12;74011:1;:16;73994:228;;;74049:11;74063:4;74068:1;74063:7;;;;;;;;:::i;:::-;;;;;;;;74049:21;;74085:12;74100:5;74106:1;74100:8;;;;;;;;:::i;:::-;;;;;;;;74085:23;;74154:9;;74147:3;74131:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;74123:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;74190:20;74200:4;74206:3;74190:9;:20::i;:::-;74034:188;;74029:3;;;;;:::i;:::-;;;;73994:228;;;;73830:399:::0;;:::o;21621:233::-;21693:7;21734:1;21717:19;;:5;:19;;;21713:60;;21745:28;;;;;;;;;;;;;;21713:60;15780:13;21791:18;:25;21810:5;21791:25;;;;;;;;;;;;;;;;:55;21784:62;;21621:233;;;:::o;59605:103::-;58843:13;:11;:13::i;:::-;59670:30:::1;59697:1;59670:18;:30::i;:::-;59605:103::o:0;70095:22::-;;;;:::o;58957:87::-;59003:7;59030:6;;;;;;;;;;;59023:13;;58957:87;:::o;24862:104::-;24918:13;24951:7;24944:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24862:104;:::o;70154:20::-;;;;:::o;71754:518::-;71807:14;71830:5;;71824:3;:11;;;;:::i;:::-;71807:28;;71861:8;;71854:3;:15;;71846:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;71912:8;;;;;;;;;;;71904:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;71967:6;71954:9;:19;71946:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;72032:7;;72025:3;72004:6;:18;72011:10;72004:18;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;:35;;71996:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;72084:9;72070:23;;:10;:23;;;72062:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;72161:3;72139:6;:18;72146:10;72139:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;72206:9;;72199:3;72183:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;72175:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;72238:26;72248:10;72260:3;72238:9;:26::i;:::-;71796:476;71754:518;:::o;72515:201::-;72644:8;4383:30;4404:8;4383:20;:30::i;:::-;72665:43:::1;72689:8;72699;72665:23;:43::i;:::-;72515:201:::0;;;:::o;71338:87::-;58843:13;:11;:13::i;:::-;71411:6:::1;71403:5;:14;;;;71338:87:::0;:::o;73458:247::-;73633:4;4211:10;4203:18;;:4;:18;;;4199:83;;4238:32;4259:10;4238:20;:32::i;:::-;4199:83;73650:47:::1;73673:4;73679:2;73683:7;73692:4;73650:22;:47::i;:::-;73458:247:::0;;;;;:::o;70760:353::-;70841:13;70889:16;70897:7;70889;:16::i;:::-;70867:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;70991:21;71015:10;:8;:10::i;:::-;70991:34;;71067:7;71076:18;71086:7;71076:9;:18::i;:::-;71050:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71036:69;;;70760:353;;;:::o;70064:24::-;;;;:::o;32126:164::-;32223:4;32247:18;:25;32266:5;32247:25;;;;;;;;;;;;;;;:35;32273:8;32247:35;;;;;;;;;;;;;;;;;;;;;;;;;32240:42;;32126:164;;;;:::o;59863:201::-;58843:13;:11;:13::i;:::-;59972:1:::1;59952:22;;:8;:22;;::::0;59944:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;60028:28;60047:8;60028:18;:28::i;:::-;59863:201:::0;:::o;70124:23::-;;;;:::o;71536:99::-;58843:13;:11;:13::i;:::-;71618:9:::1;71607:8;:20;;;;71536:99:::0;:::o;32548:282::-;32613:4;32669:7;32650:15;:13;:15::i;:::-;:26;;:66;;;;;32703:13;;32693:7;:23;32650:66;:153;;;;;32802:1;16556:8;32754:17;:26;32772:7;32754:26;;;;;;;;;;;;:44;:49;32650:153;32630:173;;32548:282;;;:::o;4441:419::-;4680:1;2962:42;4632:45;;;:49;4628:225;;;2962:42;4703;;;4754:4;4761:8;4703:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4698:144;;4817:8;4798:28;;;;;;;;;;;:::i;:::-;;;;;;;;4698:144;4628:225;4441:419;:::o;30610:408::-;30699:13;30715:16;30723:7;30715;:16::i;:::-;30699:32;;30771:5;30748:28;;:19;:17;:19::i;:::-;:28;;;30744:175;;30796:44;30813:5;30820:19;:17;:19::i;:::-;30796:16;:44::i;:::-;30791:128;;30868:35;;;;;;;;;;;;;;30791:128;30744:175;30964:2;30931:15;:24;30947:7;30931:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31002:7;30998:2;30982:28;;30991:5;30982:28;;;;;;;;;;;;30688:330;30610:408;;:::o;72725:93::-;72782:7;72809:1;72802:8;;72725:93;:::o;59122:132::-;59197:12;:10;:12::i;:::-;59186:23;;:7;:5;:7::i;:::-;:23;;;59178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59122:132::o;34816:2825::-;34958:27;34988;35007:7;34988:18;:27::i;:::-;34958:57;;35073:4;35032:45;;35048:19;35032:45;;;35028:86;;35086:28;;;;;;;;;;;;;;35028:86;35128:27;35157:23;35184:35;35211:7;35184:26;:35::i;:::-;35127:92;;;;35319:68;35344:15;35361:4;35367:19;:17;:19::i;:::-;35319:24;:68::i;:::-;35314:180;;35407:43;35424:4;35430:19;:17;:19::i;:::-;35407:16;:43::i;:::-;35402:92;;35459:35;;;;;;;;;;;;;;35402:92;35314:180;35525:1;35511:16;;:2;:16;;;35507:52;;35536:23;;;;;;;;;;;;;;35507:52;35572:43;35594:4;35600:2;35604:7;35613:1;35572:21;:43::i;:::-;35708:15;35705:160;;;35848:1;35827:19;35820:30;35705:160;36245:18;:24;36264:4;36245:24;;;;;;;;;;;;;;;;36243:26;;;;;;;;;;;;36314:18;:22;36333:2;36314:22;;;;;;;;;;;;;;;;36312:24;;;;;;;;;;;36636:146;36673:2;36722:45;36737:4;36743:2;36747:19;36722:14;:45::i;:::-;16836:8;36694:73;36636:18;:146::i;:::-;36607:17;:26;36625:7;36607:26;;;;;;;;;;;:175;;;;36953:1;16836:8;36902:19;:47;:52;36898:627;;36975:19;37007:1;36997:7;:11;36975:33;;37164:1;37130:17;:30;37148:11;37130:30;;;;;;;;;;;;:35;37126:384;;37268:13;;37253:11;:28;37249:242;;37448:19;37415:17;:30;37433:11;37415:30;;;;;;;;;;;:52;;;;37249:242;37126:384;36956:569;36898:627;37572:7;37568:2;37553:27;;37562:4;37553:27;;;;;;;;;;;;37591:42;37612:4;37618:2;37622:7;37631:1;37591:20;:42::i;:::-;34947:2694;;;34816:2825;;;:::o;37737:193::-;37883:39;37900:4;37906:2;37910:7;37883:39;;;;;;;;;;;;:16;:39::i;:::-;37737:193;;;:::o;49067:89::-;49127:21;49133:7;49142:5;49127;:21::i;:::-;49067:89;:::o;27234:1275::-;27301:7;27321:12;27336:7;27321:22;;27404:4;27385:15;:13;:15::i;:::-;:23;27381:1061;;27438:13;;27431:4;:20;27427:1015;;;27476:14;27493:17;:23;27511:4;27493:23;;;;;;;;;;;;27476:40;;27610:1;16556:8;27582:6;:24;:29;27578:845;;28247:113;28264:1;28254:6;:11;28247:113;;28307:17;:25;28325:6;;;;;;;28307:25;;;;;;;;;;;;28298:34;;28247:113;;;28393:6;28386:13;;;;;;27578:845;27453:989;27427:1015;27381:1061;28470:31;;;;;;;;;;;;;;27234:1275;;;;:::o;48688:112::-;48765:27;48775:2;48779:8;48765:27;;;;;;;;;;;;:9;:27::i;:::-;48688:112;;:::o;60224:191::-;60298:16;60317:6;;;;;;;;;;;60298:25;;60343:8;60334:6;;:17;;;;;;;;;;;;;;;;;;60398:8;60367:40;;60388:8;60367:40;;;;;;;;;;;;60287:128;60224:191;:::o;31735:234::-;31882:8;31830:18;:39;31849:19;:17;:19::i;:::-;31830:39;;;;;;;;;;;;;;;:49;31870:8;31830:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31942:8;31906:55;;31921:19;:17;:19::i;:::-;31906:55;;;31952:8;31906:55;;;;;;:::i;:::-;;;;;;;;31735:234;;:::o;38528:407::-;38703:31;38716:4;38722:2;38726:7;38703:12;:31::i;:::-;38767:1;38749:2;:14;;;:19;38745:183;;38788:56;38819:4;38825:2;38829:7;38838:5;38788:30;:56::i;:::-;38783:145;;38872:40;;;;;;;;;;;;;;38783:145;38745:183;38528:407;;;;:::o;70646:106::-;70698:13;70731;70724:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70646:106;:::o;55063:1745::-;55128:17;55562:4;55555;55549:11;55545:22;55654:1;55648:4;55641:15;55729:4;55726:1;55722:12;55715:19;;55811:1;55806:3;55799:14;55915:3;56154:5;56136:428;56162:1;56136:428;;;56202:1;56197:3;56193:11;56186:18;;56373:2;56367:4;56363:13;56359:2;56355:22;56350:3;56342:36;56467:2;56461:4;56457:13;56449:21;;56534:4;56136:428;56524:25;56136:428;56140:21;56603:3;56598;56594:13;56718:4;56713:3;56709:14;56702:21;;56783:6;56778:3;56771:19;55167:1634;;;55063:1745;;;:::o;54856:105::-;54916:7;54943:10;54936:17;;54856:105;:::o;57502:98::-;57555:7;57582:10;57575:17;;57502:98;:::o;33711:485::-;33813:27;33842:23;33883:38;33924:15;:24;33940:7;33924:24;;;;;;;;;;;33883:65;;34101:18;34078:41;;34158:19;34152:26;34133:45;;34063:126;33711:485;;;:::o;32939:659::-;33088:11;33253:16;33246:5;33242:28;33233:37;;33413:16;33402:9;33398:32;33385:45;;33563:15;33552:9;33549:30;33541:5;33530:9;33527:20;33524:56;33514:66;;32939:659;;;;;:::o;39597:159::-;;;;;:::o;54165:311::-;54300:7;54320:16;16960:3;54346:19;:41;;54320:68;;16960:3;54414:31;54425:4;54431:2;54435:9;54414:10;:31::i;:::-;54406:40;;:62;;54399:69;;;54165:311;;;;;:::o;29057:450::-;29137:14;29305:16;29298:5;29294:28;29285:37;;29482:5;29468:11;29443:23;29439:41;29436:52;29429:5;29426:63;29416:73;;29057:450;;;;:::o;40421:158::-;;;;;:::o;49385:3081::-;49465:27;49495;49514:7;49495:18;:27::i;:::-;49465:57;;49535:12;49566:19;49535:52;;49601:27;49630:23;49657:35;49684:7;49657:26;:35::i;:::-;49600:92;;;;49709:13;49705:316;;;49830:68;49855:15;49872:4;49878:19;:17;:19::i;:::-;49830:24;:68::i;:::-;49825:184;;49922:43;49939:4;49945:19;:17;:19::i;:::-;49922:16;:43::i;:::-;49917:92;;49974:35;;;;;;;;;;;;;;49917:92;49825:184;49705:316;50033:51;50055:4;50069:1;50073:7;50082:1;50033:21;:51::i;:::-;50177:15;50174:160;;;50317:1;50296:19;50289:30;50174:160;50995:1;16045:3;50965:1;:26;;50964:32;50936:18;:24;50955:4;50936:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;51263:176;51300:4;51371:53;51386:4;51400:1;51404:19;51371:14;:53::i;:::-;16836:8;16556;51324:43;51323:101;51263:18;:176::i;:::-;51234:17;:26;51252:7;51234:26;;;;;;;;;;;:205;;;;51610:1;16836:8;51559:19;:47;:52;51555:627;;51632:19;51664:1;51654:7;:11;51632:33;;51821:1;51787:17;:30;51805:11;51787:30;;;;;;;;;;;;:35;51783:384;;51925:13;;51910:11;:28;51906:242;;52105:19;52072:17;:30;52090:11;52072:30;;;;;;;;;;;:52;;;;51906:242;51783:384;51613:569;51555:627;52237:7;52233:1;52210:35;;52219:4;52210:35;;;;;;;;;;;;52256:50;52277:4;52291:1;52295:7;52304:1;52256:20;:50::i;:::-;52433:12;;:14;;;;;;;;;;;;;49454:3012;;;;49385:3081;;:::o;47915:689::-;48046:19;48052:2;48056:8;48046:5;:19::i;:::-;48125:1;48107:2;:14;;;:19;48103:483;;48147:11;48161:13;;48147:27;;48193:13;48215:8;48209:3;:14;48193:30;;48242:233;48273:62;48312:1;48316:2;48320:7;;;;;;48329:5;48273:30;:62::i;:::-;48268:167;;48371:40;;;;;;;;;;;;;;48268:167;48470:3;48462:5;:11;48242:233;;48557:3;48540:13;;:20;48536:34;;48562:8;;;48536:34;48128:458;;48103:483;47915:689;;;:::o;41019:716::-;41182:4;41228:2;41203:45;;;41249:19;:17;:19::i;:::-;41270:4;41276:7;41285:5;41203:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41199:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41503:1;41486:6;:13;:18;41482:235;;41532:40;;;;;;;;;;;;;;41482:235;41675:6;41669:13;41660:6;41656:2;41652:15;41645:38;41199:529;41372:54;;;41362:64;;;:6;:64;;;;41355:71;;;41019:716;;;;;;:::o;53866:147::-;54003:6;53866:147;;;;;:::o;42197:2966::-;42270:20;42293:13;;42270:36;;42333:1;42321:8;:13;42317:44;;42343:18;;;;;;;;;;;;;;42317:44;42374:61;42404:1;42408:2;42412:12;42426:8;42374:21;:61::i;:::-;42918:1;15918:2;42888:1;:26;;42887:32;42875:8;:45;42849:18;:22;42868:2;42849:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43197:139;43234:2;43288:33;43311:1;43315:2;43319:1;43288:14;:33::i;:::-;43255:30;43276:8;43255:20;:30::i;:::-;:66;43197:18;:139::i;:::-;43163:17;:31;43181:12;43163:31;;;;;;;;;;;:173;;;;43353:16;43384:11;43413:8;43398:12;:23;43384:37;;43934:16;43930:2;43926:25;43914:37;;44306:12;44266:8;44225:1;44163:25;44104:1;44043;44016:335;44677:1;44663:12;44659:20;44617:346;44718:3;44709:7;44706:16;44617:346;;44936:7;44926:8;44923:1;44896:25;44893:1;44890;44885:59;44771:1;44762:7;44758:15;44747:26;;44617:346;;;44621:77;45008:1;44996:8;:13;44992:45;;45018:19;;;;;;;;;;;;;;44992:45;45070:3;45054:13;:19;;;;42623:2462;;45095:60;45124:1;45128:2;45132:12;45146:8;45095:20;:60::i;:::-;42259:2904;42197:2966;;:::o;29609:324::-;29679:14;29912:1;29902:8;29899:15;29873:24;29869:46;29859:56;;29609:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:60::-;8899:3;8920:5;8913:12;;8871:60;;;:::o;8937:142::-;8987:9;9020:53;9038:34;9047:24;9065:5;9047:24;:::i;:::-;9038:34;:::i;:::-;9020:53;:::i;:::-;9007:66;;8937:142;;;:::o;9085:126::-;9135:9;9168:37;9199:5;9168:37;:::i;:::-;9155:50;;9085:126;;;:::o;9217:157::-;9298:9;9331:37;9362:5;9331:37;:::i;:::-;9318:50;;9217:157;;;:::o;9380:193::-;9498:68;9560:5;9498:68;:::i;:::-;9493:3;9486:81;9380:193;;:::o;9579:284::-;9703:4;9741:2;9730:9;9726:18;9718:26;;9754:102;9853:1;9842:9;9838:17;9829:6;9754:102;:::i;:::-;9579:284;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:323::-;10186:6;10235:2;10223:9;10214:7;10210:23;10206:32;10203:119;;;10241:79;;:::i;:::-;10203:119;10361:1;10386:50;10428:7;10419:6;10408:9;10404:22;10386:50;:::i;:::-;10376:60;;10332:114;10130:323;;;;:::o;10459:311::-;10536:4;10626:18;10618:6;10615:30;10612:56;;;10648:18;;:::i;:::-;10612:56;10698:4;10690:6;10686:17;10678:25;;10758:4;10752;10748:15;10740:23;;10459:311;;;:::o;10776:117::-;10885:1;10882;10875:12;10916:710;11012:5;11037:81;11053:64;11110:6;11053:64;:::i;:::-;11037:81;:::i;:::-;11028:90;;11138:5;11167:6;11160:5;11153:21;11201:4;11194:5;11190:16;11183:23;;11254:4;11246:6;11242:17;11234:6;11230:30;11283:3;11275:6;11272:15;11269:122;;;11302:79;;:::i;:::-;11269:122;11417:6;11400:220;11434:6;11429:3;11426:15;11400:220;;;11509:3;11538:37;11571:3;11559:10;11538:37;:::i;:::-;11533:3;11526:50;11605:4;11600:3;11596:14;11589:21;;11476:144;11460:4;11455:3;11451:14;11444:21;;11400:220;;;11404:21;11018:608;;10916:710;;;;;:::o;11649:370::-;11720:5;11769:3;11762:4;11754:6;11750:17;11746:27;11736:122;;11777:79;;:::i;:::-;11736:122;11894:6;11881:20;11919:94;12009:3;12001:6;11994:4;11986:6;11982:17;11919:94;:::i;:::-;11910:103;;11726:293;11649:370;;;;:::o;12025:311::-;12102:4;12192:18;12184:6;12181:30;12178:56;;;12214:18;;:::i;:::-;12178:56;12264:4;12256:6;12252:17;12244:25;;12324:4;12318;12314:15;12306:23;;12025:311;;;:::o;12359:710::-;12455:5;12480:81;12496:64;12553:6;12496:64;:::i;:::-;12480:81;:::i;:::-;12471:90;;12581:5;12610:6;12603:5;12596:21;12644:4;12637:5;12633:16;12626:23;;12697:4;12689:6;12685:17;12677:6;12673:30;12726:3;12718:6;12715:15;12712:122;;;12745:79;;:::i;:::-;12712:122;12860:6;12843:220;12877:6;12872:3;12869:15;12843:220;;;12952:3;12981:37;13014:3;13002:10;12981:37;:::i;:::-;12976:3;12969:50;13048:4;13043:3;13039:14;13032:21;;12919:144;12903:4;12898:3;12894:14;12887:21;;12843:220;;;12847:21;12461:608;;12359:710;;;;;:::o;13092:370::-;13163:5;13212:3;13205:4;13197:6;13193:17;13189:27;13179:122;;13220:79;;:::i;:::-;13179:122;13337:6;13324:20;13362:94;13452:3;13444:6;13437:4;13429:6;13425:17;13362:94;:::i;:::-;13353:103;;13169:293;13092:370;;;;:::o;13468:894::-;13586:6;13594;13643:2;13631:9;13622:7;13618:23;13614:32;13611:119;;;13649:79;;:::i;:::-;13611:119;13797:1;13786:9;13782:17;13769:31;13827:18;13819:6;13816:30;13813:117;;;13849:79;;:::i;:::-;13813:117;13954:78;14024:7;14015:6;14004:9;14000:22;13954:78;:::i;:::-;13944:88;;13740:302;14109:2;14098:9;14094:18;14081:32;14140:18;14132:6;14129:30;14126:117;;;14162:79;;:::i;:::-;14126:117;14267:78;14337:7;14328:6;14317:9;14313:22;14267:78;:::i;:::-;14257:88;;14052:303;13468:894;;;;;:::o;14368:468::-;14433:6;14441;14490:2;14478:9;14469:7;14465:23;14461:32;14458:119;;;14496:79;;:::i;:::-;14458:119;14616:1;14641:53;14686:7;14677:6;14666:9;14662:22;14641:53;:::i;:::-;14631:63;;14587:117;14743:2;14769:50;14811:7;14802:6;14791:9;14787:22;14769:50;:::i;:::-;14759:60;;14714:115;14368:468;;;;;:::o;14842:307::-;14903:4;14993:18;14985:6;14982:30;14979:56;;;15015:18;;:::i;:::-;14979:56;15053:29;15075:6;15053:29;:::i;:::-;15045:37;;15137:4;15131;15127:15;15119:23;;14842:307;;;:::o;15155:410::-;15232:5;15257:65;15273:48;15314:6;15273:48;:::i;:::-;15257:65;:::i;:::-;15248:74;;15345:6;15338:5;15331:21;15383:4;15376:5;15372:16;15421:3;15412:6;15407:3;15403:16;15400:25;15397:112;;;15428:79;;:::i;:::-;15397:112;15518:41;15552:6;15547:3;15542;15518:41;:::i;:::-;15238:327;15155:410;;;;;:::o;15584:338::-;15639:5;15688:3;15681:4;15673:6;15669:17;15665:27;15655:122;;15696:79;;:::i;:::-;15655:122;15813:6;15800:20;15838:78;15912:3;15904:6;15897:4;15889:6;15885:17;15838:78;:::i;:::-;15829:87;;15645:277;15584:338;;;;:::o;15928:943::-;16023:6;16031;16039;16047;16096:3;16084:9;16075:7;16071:23;16067:33;16064:120;;;16103:79;;:::i;:::-;16064:120;16223:1;16248:53;16293:7;16284:6;16273:9;16269:22;16248:53;:::i;:::-;16238:63;;16194:117;16350:2;16376:53;16421:7;16412:6;16401:9;16397:22;16376:53;:::i;:::-;16366:63;;16321:118;16478:2;16504:53;16549:7;16540:6;16529:9;16525:22;16504:53;:::i;:::-;16494:63;;16449:118;16634:2;16623:9;16619:18;16606:32;16665:18;16657:6;16654:30;16651:117;;;16687:79;;:::i;:::-;16651:117;16792:62;16846:7;16837:6;16826:9;16822:22;16792:62;:::i;:::-;16782:72;;16577:287;15928:943;;;;;;;:::o;16877:474::-;16945:6;16953;17002:2;16990:9;16981:7;16977:23;16973:32;16970:119;;;17008:79;;:::i;:::-;16970:119;17128:1;17153:53;17198:7;17189:6;17178:9;17174:22;17153:53;:::i;:::-;17143:63;;17099:117;17255:2;17281:53;17326:7;17317:6;17306:9;17302:22;17281:53;:::i;:::-;17271:63;;17226:118;16877:474;;;;;:::o;17357:180::-;17405:77;17402:1;17395:88;17502:4;17499:1;17492:15;17526:4;17523:1;17516:15;17543:320;17587:6;17624:1;17618:4;17614:12;17604:22;;17671:1;17665:4;17661:12;17692:18;17682:81;;17748:4;17740:6;17736:17;17726:27;;17682:81;17810:2;17802:6;17799:14;17779:18;17776:38;17773:84;;17829:18;;:::i;:::-;17773:84;17594:269;17543:320;;;:::o;17869:172::-;18009:24;18005:1;17997:6;17993:14;17986:48;17869:172;:::o;18047:366::-;18189:3;18210:67;18274:2;18269:3;18210:67;:::i;:::-;18203:74;;18286:93;18375:3;18286:93;:::i;:::-;18404:2;18399:3;18395:12;18388:19;;18047:366;;;:::o;18419:419::-;18585:4;18623:2;18612:9;18608:18;18600:26;;18672:9;18666:4;18662:20;18658:1;18647:9;18643:17;18636:47;18700:131;18826:4;18700:131;:::i;:::-;18692:139;;18419:419;;;:::o;18844:180::-;18892:77;18889:1;18882:88;18989:4;18986:1;18979:15;19013:4;19010:1;19003:15;19030:180;19078:77;19075:1;19068:88;19175:4;19172:1;19165:15;19199:4;19196:1;19189:15;19216:305;19256:3;19275:20;19293:1;19275:20;:::i;:::-;19270:25;;19309:20;19327:1;19309:20;:::i;:::-;19304:25;;19463:1;19395:66;19391:74;19388:1;19385:81;19382:107;;;19469:18;;:::i;:::-;19382:107;19513:1;19510;19506:9;19499:16;;19216:305;;;;:::o;19527:157::-;19667:9;19663:1;19655:6;19651:14;19644:33;19527:157;:::o;19690:365::-;19832:3;19853:66;19917:1;19912:3;19853:66;:::i;:::-;19846:73;;19928:93;20017:3;19928:93;:::i;:::-;20046:2;20041:3;20037:12;20030:19;;19690:365;;;:::o;20061:419::-;20227:4;20265:2;20254:9;20250:18;20242:26;;20314:9;20308:4;20304:20;20300:1;20289:9;20285:17;20278:47;20342:131;20468:4;20342:131;:::i;:::-;20334:139;;20061:419;;;:::o;20486:233::-;20525:3;20548:24;20566:5;20548:24;:::i;:::-;20539:33;;20594:66;20587:5;20584:77;20581:103;;20664:18;;:::i;:::-;20581:103;20711:1;20704:5;20700:13;20693:20;;20486:233;;;:::o;20725:348::-;20765:7;20788:20;20806:1;20788:20;:::i;:::-;20783:25;;20822:20;20840:1;20822:20;:::i;:::-;20817:25;;21010:1;20942:66;20938:74;20935:1;20932:81;20927:1;20920:9;20913:17;20909:105;20906:131;;;21017:18;;:::i;:::-;20906:131;21065:1;21062;21058:9;21047:20;;20725:348;;;;:::o;21079:169::-;21219:21;21215:1;21207:6;21203:14;21196:45;21079:169;:::o;21254:366::-;21396:3;21417:67;21481:2;21476:3;21417:67;:::i;:::-;21410:74;;21493:93;21582:3;21493:93;:::i;:::-;21611:2;21606:3;21602:12;21595:19;;21254:366;;;:::o;21626:419::-;21792:4;21830:2;21819:9;21815:18;21807:26;;21879:9;21873:4;21869:20;21865:1;21854:9;21850:17;21843:47;21907:131;22033:4;21907:131;:::i;:::-;21899:139;;21626:419;;;:::o;22051:160::-;22191:12;22187:1;22179:6;22175:14;22168:36;22051:160;:::o;22217:366::-;22359:3;22380:67;22444:2;22439:3;22380:67;:::i;:::-;22373:74;;22456:93;22545:3;22456:93;:::i;:::-;22574:2;22569:3;22565:12;22558:19;;22217:366;;;:::o;22589:419::-;22755:4;22793:2;22782:9;22778:18;22770:26;;22842:9;22836:4;22832:20;22828:1;22817:9;22813:17;22806:47;22870:131;22996:4;22870:131;:::i;:::-;22862:139;;22589:419;;;:::o;23014:157::-;23154:9;23150:1;23142:6;23138:14;23131:33;23014:157;:::o;23177:365::-;23319:3;23340:66;23404:1;23399:3;23340:66;:::i;:::-;23333:73;;23415:93;23504:3;23415:93;:::i;:::-;23533:2;23528:3;23524:12;23517:19;;23177:365;;;:::o;23548:419::-;23714:4;23752:2;23741:9;23737:18;23729:26;;23801:9;23795:4;23791:20;23787:1;23776:9;23772:17;23765:47;23829:131;23955:4;23829:131;:::i;:::-;23821:139;;23548:419;;;:::o;23973:180::-;24113:32;24109:1;24101:6;24097:14;24090:56;23973:180;:::o;24159:366::-;24301:3;24322:67;24386:2;24381:3;24322:67;:::i;:::-;24315:74;;24398:93;24487:3;24398:93;:::i;:::-;24516:2;24511:3;24507:12;24500:19;;24159:366;;;:::o;24531:419::-;24697:4;24735:2;24724:9;24720:18;24712:26;;24784:9;24778:4;24774:20;24770:1;24759:9;24755:17;24748:47;24812:131;24938:4;24812:131;:::i;:::-;24804:139;;24531:419;;;:::o;24956:234::-;25096:34;25092:1;25084:6;25080:14;25073:58;25165:17;25160:2;25152:6;25148:15;25141:42;24956:234;:::o;25196:366::-;25338:3;25359:67;25423:2;25418:3;25359:67;:::i;:::-;25352:74;;25435:93;25524:3;25435:93;:::i;:::-;25553:2;25548:3;25544:12;25537:19;;25196:366;;;:::o;25568:419::-;25734:4;25772:2;25761:9;25757:18;25749:26;;25821:9;25815:4;25811:20;25807:1;25796:9;25792:17;25785:47;25849:131;25975:4;25849:131;:::i;:::-;25841:139;;25568:419;;;:::o;25993:148::-;26095:11;26132:3;26117:18;;25993:148;;;;:::o;26147:377::-;26253:3;26281:39;26314:5;26281:39;:::i;:::-;26336:89;26418:6;26413:3;26336:89;:::i;:::-;26329:96;;26434:52;26479:6;26474:3;26467:4;26460:5;26456:16;26434:52;:::i;:::-;26511:6;26506:3;26502:16;26495:23;;26257:267;26147:377;;;;:::o;26530:155::-;26670:7;26666:1;26658:6;26654:14;26647:31;26530:155;:::o;26691:400::-;26851:3;26872:84;26954:1;26949:3;26872:84;:::i;:::-;26865:91;;26965:93;27054:3;26965:93;:::i;:::-;27083:1;27078:3;27074:11;27067:18;;26691:400;;;:::o;27097:701::-;27378:3;27400:95;27491:3;27482:6;27400:95;:::i;:::-;27393:102;;27512:95;27603:3;27594:6;27512:95;:::i;:::-;27505:102;;27624:148;27768:3;27624:148;:::i;:::-;27617:155;;27789:3;27782:10;;27097:701;;;;;:::o;27804:225::-;27944:34;27940:1;27932:6;27928:14;27921:58;28013:8;28008:2;28000:6;27996:15;27989:33;27804:225;:::o;28035:366::-;28177:3;28198:67;28262:2;28257:3;28198:67;:::i;:::-;28191:74;;28274:93;28363:3;28274:93;:::i;:::-;28392:2;28387:3;28383:12;28376:19;;28035:366;;;:::o;28407:419::-;28573:4;28611:2;28600:9;28596:18;28588:26;;28660:9;28654:4;28650:20;28646:1;28635:9;28631:17;28624:47;28688:131;28814:4;28688:131;:::i;:::-;28680:139;;28407:419;;;:::o;28832:332::-;28953:4;28991:2;28980:9;28976:18;28968:26;;29004:71;29072:1;29061:9;29057:17;29048:6;29004:71;:::i;:::-;29085:72;29153:2;29142:9;29138:18;29129:6;29085:72;:::i;:::-;28832:332;;;;;:::o;29170:137::-;29224:5;29255:6;29249:13;29240:22;;29271:30;29295:5;29271:30;:::i;:::-;29170:137;;;;:::o;29313:345::-;29380:6;29429:2;29417:9;29408:7;29404:23;29400:32;29397:119;;;29435:79;;:::i;:::-;29397:119;29555:1;29580:61;29633:7;29624:6;29613:9;29609:22;29580:61;:::i;:::-;29570:71;;29526:125;29313:345;;;;:::o;29664:182::-;29804:34;29800:1;29792:6;29788:14;29781:58;29664:182;:::o;29852:366::-;29994:3;30015:67;30079:2;30074:3;30015:67;:::i;:::-;30008:74;;30091:93;30180:3;30091:93;:::i;:::-;30209:2;30204:3;30200:12;30193:19;;29852:366;;;:::o;30224:419::-;30390:4;30428:2;30417:9;30413:18;30405:26;;30477:9;30471:4;30467:20;30463:1;30452:9;30448:17;30441:47;30505:131;30631:4;30505:131;:::i;:::-;30497:139;;30224:419;;;:::o;30649:98::-;30700:6;30734:5;30728:12;30718:22;;30649:98;;;:::o;30753:168::-;30836:11;30870:6;30865:3;30858:19;30910:4;30905:3;30901:14;30886:29;;30753:168;;;;:::o;30927:360::-;31013:3;31041:38;31073:5;31041:38;:::i;:::-;31095:70;31158:6;31153:3;31095:70;:::i;:::-;31088:77;;31174:52;31219:6;31214:3;31207:4;31200:5;31196:16;31174:52;:::i;:::-;31251:29;31273:6;31251:29;:::i;:::-;31246:3;31242:39;31235:46;;31017:270;30927:360;;;;:::o;31293:640::-;31488:4;31526:3;31515:9;31511:19;31503:27;;31540:71;31608:1;31597:9;31593:17;31584:6;31540:71;:::i;:::-;31621:72;31689:2;31678:9;31674:18;31665:6;31621:72;:::i;:::-;31703;31771:2;31760:9;31756:18;31747:6;31703:72;:::i;:::-;31822:9;31816:4;31812:20;31807:2;31796:9;31792:18;31785:48;31850:76;31921:4;31912:6;31850:76;:::i;:::-;31842:84;;31293:640;;;;;;;:::o;31939:141::-;31995:5;32026:6;32020:13;32011:22;;32042:32;32068:5;32042:32;:::i;:::-;31939:141;;;;:::o;32086:349::-;32155:6;32204:2;32192:9;32183:7;32179:23;32175:32;32172:119;;;32210:79;;:::i;:::-;32172:119;32330:1;32355:63;32410:7;32401:6;32390:9;32386:22;32355:63;:::i;:::-;32345:73;;32301:127;32086:349;;;;:::o
Swarm Source
ipfs://5d6e2f94fba167bad1216a3b74c982587375382b167eb469c9c94561261f6499
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.