Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
101 DDB
Holders
16
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DDBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DegenDickBros
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/ERC721A.sol"; contract DegenDickBros is Ownable, ERC721A, ReentrancyGuard { bool public isPaused = true; uint256 public immutable collectionSize; uint256 public immutable maxBatchSize; uint256 public immutable amountForDevs; uint256 public price; uint256 public immutable allowlistPrice; bool private _isMetadataLocked; mapping(address => uint16) public allowlist; constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 amountForDevs_, uint256 price_, uint256 allowlistPrice_, string memory baseURI_, uint256 numberOfHonoraries_ ) ERC721A("DegenDickBros", "DDB") { maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; amountForDevs = amountForDevs_; price = price_; allowlistPrice = allowlistPrice_; _baseTokenURI = baseURI_; _safeMint(msg.sender, numberOfHonoraries_); } function mint(uint256 quantity) external payable callerIsUser { require( !isPaused, "contract is paused" ); _doMint(quantity, price); } function refundIfOver(uint256 price_) private { require(msg.value >= price_, "need to send more ETH."); if (msg.value > price_) { payable(msg.sender).transfer(msg.value - price_); } } function changePrice(uint256 price_) external onlyOwner { price = price_; } function pause() external onlyOwner { require( !isPaused, "contract already paused"); isPaused = true; } function unpause() external onlyOwner { require( isPaused, "contract already unpaused"); isPaused = false; } function setBaseURI(string calldata baseURI) external onlyOwner { require (!_isMetadataLocked, "metadata is locked"); _baseTokenURI = baseURI; } function lockMetadata() external onlyOwner { require(!_isMetadataLocked, "metadata already locked"); _isMetadataLocked = true; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "transfer failed."); } // For marketing etc. function devMint(uint256 quantity) external onlyOwner { require( totalSupply() + quantity <= amountForDevs, "too many already minted before dev mint" ); require( quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize" ); uint256 numChunks = quantity / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(msg.sender, maxBatchSize); } } function allowlistMint(uint256 quantity) external payable callerIsUser { require(allowlist[msg.sender] > 0, "not eligible for allowlist mint"); require(totalSupply() + 1 <= collectionSize, "reached max supply"); _doMint(quantity, allowlistPrice); allowlist[msg.sender] = uint16(allowlist[msg.sender] - quantity); } function seedAllowlist(address[] memory addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { allowlist[addresses[i]] = 10; } } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } modifier callerIsUser() { require(tx.origin == msg.sender, "the caller is another contract"); _; } function _doMint(uint256 quantity, uint256 price_) private { require( totalSupply() + quantity <= collectionSize, "reached max supply" ); require( numberMinted(msg.sender) + quantity <= maxBatchSize, "can not mint this many" ); _safeMint(msg.sender, quantity); refundIfOver(price_ * quantity); } // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"},{"internalType":"uint256","name":"price_","type":"uint256"},{"internalType":"uint256","name":"allowlistPrice_","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"uint256","name":"numberOfHonoraries_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowlistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","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":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101006040526001600a60006101000a81548160ff0219169083151502179055503480156200002d57600080fd5b5060405162004bbc38038062004bbc833981810160405281019062000053919062000895565b6040518060400160405280600d81526020017f446567656e4469636b42726f73000000000000000000000000000000000000008152506040518060400160405280600381526020017f4444420000000000000000000000000000000000000000000000000000000000815250620000df620000d36200019060201b60201c565b6200019860201b60201c565b8160039080519060200190620000f792919062000707565b5080600490805190602001906200011092919062000707565b50620001216200025c60201b60201c565b600181905550505060016009819055508660a0818152505085608081815250508460c0818152505083600b819055508260e0818152505081600e90805190602001906200017092919062000707565b506200018333826200026160201b60201c565b5050505050505062000c5c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002838282604051806020016040528060008152506200028760201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620002f6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000332576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200034760008583866200056d60201b60201c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1620003b4600185146200057360201b60201c565b901b60a042901b620003cc866200057d60201b60201c565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14620004dd575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200048960008784806001019550876200058760201b60201c565b620004c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821062000412578260015414620004d757600080fd5b62000549565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620004de575b816001819055505050620005676000858386620006f960201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005b5620006ff60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005d99493929190620009ca565b602060405180830381600087803b158015620005f457600080fd5b505af19250505080156200062857506040513d601f19601f8201168201806040525081019062000625919062000863565b60015b620006a6573d80600081146200065b576040519150601f19603f3d011682016040523d82523d6000602084013e62000660565b606091505b506000815114156200069e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620007159062000b39565b90600052602060002090601f01602090048101928262000739576000855562000785565b82601f106200075457805160ff191683800117855562000785565b8280016001018555821562000785579182015b828111156200078457825182559160200191906001019062000767565b5b50905062000794919062000798565b5090565b5b80821115620007b357600081600090555060010162000799565b5090565b6000620007ce620007c88462000a47565b62000a1e565b905082815260208101848484011115620007ed57620007ec62000c08565b5b620007fa84828562000b03565b509392505050565b600081519050620008138162000c28565b92915050565b600082601f83011262000831576200083062000c03565b5b815162000843848260208601620007b7565b91505092915050565b6000815190506200085d8162000c42565b92915050565b6000602082840312156200087c576200087b62000c12565b5b60006200088c8482850162000802565b91505092915050565b600080600080600080600060e0888a031215620008b757620008b662000c12565b5b6000620008c78a828b016200084c565b9750506020620008da8a828b016200084c565b9650506040620008ed8a828b016200084c565b9550506060620009008a828b016200084c565b9450506080620009138a828b016200084c565b93505060a088015167ffffffffffffffff81111562000937576200093662000c0d565b5b620009458a828b0162000819565b92505060c0620009588a828b016200084c565b91505092959891949750929550565b620009728162000a99565b82525050565b6000620009858262000a7d565b62000991818562000a88565b9350620009a381856020860162000b03565b620009ae8162000c17565b840191505092915050565b620009c48162000af9565b82525050565b6000608082019050620009e1600083018762000967565b620009f0602083018662000967565b620009ff6040830185620009b9565b818103606083015262000a13818462000978565b905095945050505050565b600062000a2a62000a3d565b905062000a38828262000b6f565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a655762000a6462000bd4565b5b62000a708262000c17565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000aa68262000ad9565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b2357808201518184015260208101905062000b06565b8381111562000b33576000848401525b50505050565b6000600282049050600182168062000b5257607f821691505b6020821081141562000b695762000b6862000ba5565b5b50919050565b62000b7a8262000c17565b810181811067ffffffffffffffff8211171562000b9c5762000b9b62000bd4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000c338162000aad565b811462000c3f57600080fd5b50565b62000c4d8162000af9565b811462000c5957600080fd5b50565b60805160a05160c05160e051613eee62000cce6000396000818161145c0152611aef015260008181610bf40152611e0b015260008181610b5401528181610c6b01528181610cd901528181610d160152612472015260008181610fdd01528181611a7501526123fd0152613eee6000f3fe6080604052600436106102045760003560e01c806388c206f711610118578063a7cd52cb116100a0578063c87b56dd1161006f578063c87b56dd146106d9578063dc33e68114610716578063e985e9c514610753578063f2fde38b14610790578063fbe1aa51146107b957610204565b8063a7cd52cb1461062c578063b187bd2614610669578063b88d4fde14610694578063c180526a146106bd57610204565b8063989bdbb6116100e7578063989bdbb61461057c578063a035b1fe14610593578063a0712d68146105be578063a22cb465146105da578063a2b40d191461060357610204565b806388c206f7146104d25780638da5cb5b146104fb57806390967a521461052657806395d89b411461055157610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104015780636352211e1461042a57806370a0823114610467578063715018a6146104a45780638456cb59146104bb57610204565b80633ccfd60b1461037f5780633f4ba83a1461039657806342842e0e146103ad57806345c0f533146103d657610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632913daa01461032b578063375a069a1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f9e565b6107e4565b60405161023d9190613444565b60405180910390f35b34801561025257600080fd5b5061025b610876565b604051610268919061345f565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613045565b610908565b6040516102a591906133dd565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612f15565b610984565b005b3480156102e357600080fd5b506102ec610b2b565b6040516102f9919061369c565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612dff565b610b42565b005b34801561033757600080fd5b50610340610b52565b60405161034d919061369c565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613045565b610b76565b005b34801561038b57600080fd5b50610394610d52565b005b3480156103a257600080fd5b506103ab610ed3565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612dff565b610fbb565b005b3480156103e257600080fd5b506103eb610fdb565b6040516103f8919061369c565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190612ff8565b610fff565b005b34801561043657600080fd5b50610451600480360381019061044c9190613045565b6110e1565b60405161045e91906133dd565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612d92565b6110f3565b60405161049b919061369c565b60405180910390f35b3480156104b057600080fd5b506104b96111ac565b005b3480156104c757600080fd5b506104d0611234565b005b3480156104de57600080fd5b506104f960048036038101906104f49190612f55565b61131d565b005b34801561050757600080fd5b50610510611431565b60405161051d91906133dd565b60405180910390f35b34801561053257600080fd5b5061053b61145a565b604051610548919061369c565b60405180910390f35b34801561055d57600080fd5b5061056661147e565b604051610573919061345f565b60405180910390f35b34801561058857600080fd5b50610591611510565b005b34801561059f57600080fd5b506105a86115f9565b6040516105b5919061369c565b60405180910390f35b6105d860048036038101906105d39190613045565b6115ff565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190612ed5565b6116cc565b005b34801561060f57600080fd5b5061062a60048036038101906106259190613045565b611844565b005b34801561063857600080fd5b50610653600480360381019061064e9190612d92565b6118ca565b6040516106609190613681565b60405180910390f35b34801561067557600080fd5b5061067e6118eb565b60405161068b9190613444565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190612e52565b6118fe565b005b6106d760048036038101906106d29190613045565b611971565b005b3480156106e557600080fd5b5061070060048036038101906106fb9190613045565b611bcc565b60405161070d919061345f565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190612d92565b611c6b565b60405161074a919061369c565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612dbf565b611c7d565b6040516107879190613444565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612d92565b611d11565b005b3480156107c557600080fd5b506107ce611e09565b6040516107db919061369c565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461088590613960565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190613960565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b600061091382611e2d565b610949576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82611e8c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a16611f5a565b73ffffffffffffffffffffffffffffffffffffffff1614610a7957610a4281610a3d611f5a565b611c7d565b610a78576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b35611f62565b6002546001540303905090565b610b4d838383611f67565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610b7e612311565b73ffffffffffffffffffffffffffffffffffffffff16610b9c611431565b73ffffffffffffffffffffffffffffffffffffffff1614610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be9906135c1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610c1c610b2b565b610c269190613787565b1115610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90613621565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000082610c959190613a0c565b14610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906134c1565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000082610d0391906137dd565b905060005b81811015610d4d57610d3a337f0000000000000000000000000000000000000000000000000000000000000000612319565b8080610d45906139c3565b915050610d08565b505050565b610d5a612311565b73ffffffffffffffffffffffffffffffffffffffff16610d78611431565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc5906135c1565b60405180910390fd5b60026009541415610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613641565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610e42906133c8565b60006040518083038185875af1925050503d8060008114610e7f576040519150601f19603f3d011682016040523d82523d6000602084013e610e84565b606091505b5050905080610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613541565b60405180910390fd5b506001600981905550565b610edb612311565b73ffffffffffffffffffffffffffffffffffffffff16610ef9611431565b73ffffffffffffffffffffffffffffffffffffffff1614610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906135c1565b60405180910390fd5b600a60009054906101000a900460ff16610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590613661565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b610fd6838383604051806020016040528060008152506118fe565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611007612311565b73ffffffffffffffffffffffffffffffffffffffff16611025611431565b73ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611072906135c1565b60405180910390fd5b600c60009054906101000a900460ff16156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290613561565b60405180910390fd5b8181600e91906110dc929190612b22565b505050565b60006110ec82611e8c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b4612311565b73ffffffffffffffffffffffffffffffffffffffff166111d2611431565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f906135c1565b60405180910390fd5b6112326000612337565b565b61123c612311565b73ffffffffffffffffffffffffffffffffffffffff1661125a611431565b73ffffffffffffffffffffffffffffffffffffffff16146112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906135c1565b60405180910390fd5b600a60009054906101000a900460ff1615611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613521565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b611325612311565b73ffffffffffffffffffffffffffffffffffffffff16611343611431565b73ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611390906135c1565b60405180910390fd5b60005b815181101561142d57600a600d60008484815181106113be576113bd613aca565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055508080611425906139c3565b91505061139c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606004805461148d90613960565b80601f01602080910402602001604051908101604052809291908181526020018280546114b990613960565b80156115065780601f106114db57610100808354040283529160200191611506565b820191906000526020600020905b8154815290600101906020018083116114e957829003601f168201915b5050505050905090565b611518612311565b73ffffffffffffffffffffffffffffffffffffffff16611536611431565b73ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611583906135c1565b60405180910390fd5b600c60009054906101000a900460ff16156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d3906134e1565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461166d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166490613601565b60405180910390fd5b600a60009054906101000a900460ff16156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613501565b60405180910390fd5b6116c981600b546123fb565b50565b6116d4611f5a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611739576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611746611f5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117f3611f5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118389190613444565b60405180910390a35050565b61184c612311565b73ffffffffffffffffffffffffffffffffffffffff1661186a611431565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906135c1565b60405180910390fd5b80600b8190555050565b600d6020528060005260406000206000915054906101000a900461ffff1681565b600a60009054906101000a900460ff1681565b611909848484611f67565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461196b5761193484848484612508565b61196a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690613601565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff1611611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a906135a1565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001611a9e610b2b565b611aa89190613787565b1115611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613581565b60405180910390fd5b611b13817f00000000000000000000000000000000000000000000000000000000000000006123fb565b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff16611b709190613868565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555050565b6060611bd782611e2d565b611c0d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c17612668565b9050600081511415611c385760405180602001604052806000815250611c63565b80611c42846126fa565b604051602001611c539291906133a4565b6040516020818303038152906040525b915050919050565b6000611c7682612754565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d19612311565b73ffffffffffffffffffffffffffffffffffffffff16611d37611431565b73ffffffffffffffffffffffffffffffffffffffff1614611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d84906135c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df4906134a1565b60405180910390fd5b611e0681612337565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600081611e38611f62565b11158015611e47575060015482105b8015611e85575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611e9b611f62565b11611f2357600154811015611f225760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f20575b6000811415611f16576005600083600190039350838152602001908152602001600020549050611eeb565b8092505050611f55565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611f7282611e8c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611fd9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ffa611f5a565b73ffffffffffffffffffffffffffffffffffffffff161480612029575061202885612023611f5a565b611c7d565b5b8061206e5750612037611f5a565b73ffffffffffffffffffffffffffffffffffffffff1661205684610908565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120a7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561210e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61211b85858560016127ab565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612218866127b1565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156122a25760006001840190506000600560008381526020019081526020016000205414156122a057600154811461229f578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461230a85858560016127bb565b5050505050565b600033905090565b6123338282604051806020016040528060008152506127c1565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f000000000000000000000000000000000000000000000000000000000000000082612425610b2b565b61242f9190613787565b1115612470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246790613581565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008261249b33611c6b565b6124a59190613787565b11156124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd906135e1565b60405180910390fd5b6124f03383612319565b61250482826124ff919061380e565b612a77565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261252e611f5a565b8786866040518563ffffffff1660e01b815260040161255094939291906133f8565b602060405180830381600087803b15801561256a57600080fd5b505af192505050801561259b57506040513d601f19601f820116820180604052508101906125989190612fcb565b60015b612615573d80600081146125cb576040519150601f19603f3d011682016040523d82523d6000602084013e6125d0565b606091505b5060008151141561260d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461267790613960565b80601f01602080910402602001604051908101604052809291908181526020018280546126a390613960565b80156126f05780601f106126c5576101008083540402835291602001916126f0565b820191906000526020600020905b8154815290600101906020018083116126d357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561274057600183039250600a81066030018353600a81049050612720565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561282f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561286a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61287760008583866127ab565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16128dc60018514612b18565b901b60a042901b6128ec866127b1565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146129f0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129a06000878480600101955087612508565b6129d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129315782600154146129eb57600080fd5b612a5b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106129f1575b816001819055505050612a7160008583866127bb565b50505050565b80341015612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab190613481565b60405180910390fd5b80341115612b15573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612ae89190613868565b9081150290604051600060405180830381858888f19350505050158015612b13573d6000803e3d6000fd5b505b50565b6000819050919050565b828054612b2e90613960565b90600052602060002090601f016020900481019282612b505760008555612b97565b82601f10612b6957803560ff1916838001178555612b97565b82800160010185558215612b97579182015b82811115612b96578235825591602001919060010190612b7b565b5b509050612ba49190612ba8565b5090565b5b80821115612bc1576000816000905550600101612ba9565b5090565b6000612bd8612bd3846136dc565b6136b7565b90508083825260208201905082856020860282011115612bfb57612bfa613b32565b5b60005b85811015612c2b5781612c118882612c77565b845260208401935060208301925050600181019050612bfe565b5050509392505050565b6000612c48612c4384613708565b6136b7565b905082815260208101848484011115612c6457612c63613b37565b5b612c6f84828561391e565b509392505050565b600081359050612c8681613e5c565b92915050565b600082601f830112612ca157612ca0613b2d565b5b8135612cb1848260208601612bc5565b91505092915050565b600081359050612cc981613e73565b92915050565b600081359050612cde81613e8a565b92915050565b600081519050612cf381613e8a565b92915050565b600082601f830112612d0e57612d0d613b2d565b5b8135612d1e848260208601612c35565b91505092915050565b60008083601f840112612d3d57612d3c613b2d565b5b8235905067ffffffffffffffff811115612d5a57612d59613b28565b5b602083019150836001820283011115612d7657612d75613b32565b5b9250929050565b600081359050612d8c81613ea1565b92915050565b600060208284031215612da857612da7613b41565b5b6000612db684828501612c77565b91505092915050565b60008060408385031215612dd657612dd5613b41565b5b6000612de485828601612c77565b9250506020612df585828601612c77565b9150509250929050565b600080600060608486031215612e1857612e17613b41565b5b6000612e2686828701612c77565b9350506020612e3786828701612c77565b9250506040612e4886828701612d7d565b9150509250925092565b60008060008060808587031215612e6c57612e6b613b41565b5b6000612e7a87828801612c77565b9450506020612e8b87828801612c77565b9350506040612e9c87828801612d7d565b925050606085013567ffffffffffffffff811115612ebd57612ebc613b3c565b5b612ec987828801612cf9565b91505092959194509250565b60008060408385031215612eec57612eeb613b41565b5b6000612efa85828601612c77565b9250506020612f0b85828601612cba565b9150509250929050565b60008060408385031215612f2c57612f2b613b41565b5b6000612f3a85828601612c77565b9250506020612f4b85828601612d7d565b9150509250929050565b600060208284031215612f6b57612f6a613b41565b5b600082013567ffffffffffffffff811115612f8957612f88613b3c565b5b612f9584828501612c8c565b91505092915050565b600060208284031215612fb457612fb3613b41565b5b6000612fc284828501612ccf565b91505092915050565b600060208284031215612fe157612fe0613b41565b5b6000612fef84828501612ce4565b91505092915050565b6000806020838503121561300f5761300e613b41565b5b600083013567ffffffffffffffff81111561302d5761302c613b3c565b5b61303985828601612d27565b92509250509250929050565b60006020828403121561305b5761305a613b41565b5b600061306984828501612d7d565b91505092915050565b61307b8161389c565b82525050565b61308a816138ae565b82525050565b600061309b82613739565b6130a5818561374f565b93506130b581856020860161392d565b6130be81613b46565b840191505092915050565b60006130d482613744565b6130de818561376b565b93506130ee81856020860161392d565b6130f781613b46565b840191505092915050565b600061310d82613744565b613117818561377c565b935061312781856020860161392d565b80840191505092915050565b600061314060168361376b565b915061314b82613b57565b602082019050919050565b600061316360268361376b565b915061316e82613b80565b604082019050919050565b6000613186602c8361376b565b915061319182613bcf565b604082019050919050565b60006131a960178361376b565b91506131b482613c1e565b602082019050919050565b60006131cc60128361376b565b91506131d782613c47565b602082019050919050565b60006131ef60178361376b565b91506131fa82613c70565b602082019050919050565b600061321260108361376b565b915061321d82613c99565b602082019050919050565b600061323560128361376b565b915061324082613cc2565b602082019050919050565b600061325860128361376b565b915061326382613ceb565b602082019050919050565b600061327b601f8361376b565b915061328682613d14565b602082019050919050565b600061329e60208361376b565b91506132a982613d3d565b602082019050919050565b60006132c1600083613760565b91506132cc82613d66565b600082019050919050565b60006132e460168361376b565b91506132ef82613d69565b602082019050919050565b6000613307601e8361376b565b915061331282613d92565b602082019050919050565b600061332a60278361376b565b915061333582613dbb565b604082019050919050565b600061334d601f8361376b565b915061335882613e0a565b602082019050919050565b600061337060198361376b565b915061337b82613e33565b602082019050919050565b61338f816138e6565b82525050565b61339e81613914565b82525050565b60006133b08285613102565b91506133bc8284613102565b91508190509392505050565b60006133d3826132b4565b9150819050919050565b60006020820190506133f26000830184613072565b92915050565b600060808201905061340d6000830187613072565b61341a6020830186613072565b6134276040830185613395565b81810360608301526134398184613090565b905095945050505050565b60006020820190506134596000830184613081565b92915050565b6000602082019050818103600083015261347981846130c9565b905092915050565b6000602082019050818103600083015261349a81613133565b9050919050565b600060208201905081810360008301526134ba81613156565b9050919050565b600060208201905081810360008301526134da81613179565b9050919050565b600060208201905081810360008301526134fa8161319c565b9050919050565b6000602082019050818103600083015261351a816131bf565b9050919050565b6000602082019050818103600083015261353a816131e2565b9050919050565b6000602082019050818103600083015261355a81613205565b9050919050565b6000602082019050818103600083015261357a81613228565b9050919050565b6000602082019050818103600083015261359a8161324b565b9050919050565b600060208201905081810360008301526135ba8161326e565b9050919050565b600060208201905081810360008301526135da81613291565b9050919050565b600060208201905081810360008301526135fa816132d7565b9050919050565b6000602082019050818103600083015261361a816132fa565b9050919050565b6000602082019050818103600083015261363a8161331d565b9050919050565b6000602082019050818103600083015261365a81613340565b9050919050565b6000602082019050818103600083015261367a81613363565b9050919050565b60006020820190506136966000830184613386565b92915050565b60006020820190506136b16000830184613395565b92915050565b60006136c16136d2565b90506136cd8282613992565b919050565b6000604051905090565b600067ffffffffffffffff8211156136f7576136f6613af9565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561372357613722613af9565b5b61372c82613b46565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061379282613914565b915061379d83613914565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d2576137d1613a3d565b5b828201905092915050565b60006137e882613914565b91506137f383613914565b92508261380357613802613a6c565b5b828204905092915050565b600061381982613914565b915061382483613914565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561385d5761385c613a3d565b5b828202905092915050565b600061387382613914565b915061387e83613914565b92508282101561389157613890613a3d565b5b828203905092915050565b60006138a7826138f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561394b578082015181840152602081019050613930565b8381111561395a576000848401525b50505050565b6000600282049050600182168061397857607f821691505b6020821081141561398c5761398b613a9b565b5b50919050565b61399b82613b46565b810181811067ffffffffffffffff821117156139ba576139b9613af9565b5b80604052505050565b60006139ce82613914565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a0157613a00613a3d565b5b600182019050919050565b6000613a1782613914565b9150613a2283613914565b925082613a3257613a31613a6c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f6d6574616461746120616c7265616479206c6f636b6564000000000000000000600082015250565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f636f6e747261637420616c726561647920706175736564000000000000000000600082015250565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f6d65746164617461206973206c6f636b65640000000000000000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7400600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f7468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f636f6e747261637420616c726561647920756e70617573656400000000000000600082015250565b613e658161389c565b8114613e7057600080fd5b50565b613e7c816138ae565b8114613e8757600080fd5b50565b613e93816138ba565b8114613e9e57600080fd5b50565b613eaa81613914565b8114613eb557600080fd5b5056fea2646970667358221220c239cd8a8cd13bffc486741f77c1e559987dbe8f13075d6b943573d228f165f464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000d29000000000000000000000000000000000000000000000000000000000000006f000000000000000000000000000000000000000000000000003c0a75e0b440000000000000000000000000000000000000000000000000000018838370f3400000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d636e596765527459504458776b7a313934344e4152673772636a32555a6f54755244446b536d616f635258782f00000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c806388c206f711610118578063a7cd52cb116100a0578063c87b56dd1161006f578063c87b56dd146106d9578063dc33e68114610716578063e985e9c514610753578063f2fde38b14610790578063fbe1aa51146107b957610204565b8063a7cd52cb1461062c578063b187bd2614610669578063b88d4fde14610694578063c180526a146106bd57610204565b8063989bdbb6116100e7578063989bdbb61461057c578063a035b1fe14610593578063a0712d68146105be578063a22cb465146105da578063a2b40d191461060357610204565b806388c206f7146104d25780638da5cb5b146104fb57806390967a521461052657806395d89b411461055157610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104015780636352211e1461042a57806370a0823114610467578063715018a6146104a45780638456cb59146104bb57610204565b80633ccfd60b1461037f5780633f4ba83a1461039657806342842e0e146103ad57806345c0f533146103d657610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632913daa01461032b578063375a069a1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f9e565b6107e4565b60405161023d9190613444565b60405180910390f35b34801561025257600080fd5b5061025b610876565b604051610268919061345f565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613045565b610908565b6040516102a591906133dd565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612f15565b610984565b005b3480156102e357600080fd5b506102ec610b2b565b6040516102f9919061369c565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612dff565b610b42565b005b34801561033757600080fd5b50610340610b52565b60405161034d919061369c565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613045565b610b76565b005b34801561038b57600080fd5b50610394610d52565b005b3480156103a257600080fd5b506103ab610ed3565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612dff565b610fbb565b005b3480156103e257600080fd5b506103eb610fdb565b6040516103f8919061369c565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190612ff8565b610fff565b005b34801561043657600080fd5b50610451600480360381019061044c9190613045565b6110e1565b60405161045e91906133dd565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612d92565b6110f3565b60405161049b919061369c565b60405180910390f35b3480156104b057600080fd5b506104b96111ac565b005b3480156104c757600080fd5b506104d0611234565b005b3480156104de57600080fd5b506104f960048036038101906104f49190612f55565b61131d565b005b34801561050757600080fd5b50610510611431565b60405161051d91906133dd565b60405180910390f35b34801561053257600080fd5b5061053b61145a565b604051610548919061369c565b60405180910390f35b34801561055d57600080fd5b5061056661147e565b604051610573919061345f565b60405180910390f35b34801561058857600080fd5b50610591611510565b005b34801561059f57600080fd5b506105a86115f9565b6040516105b5919061369c565b60405180910390f35b6105d860048036038101906105d39190613045565b6115ff565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190612ed5565b6116cc565b005b34801561060f57600080fd5b5061062a60048036038101906106259190613045565b611844565b005b34801561063857600080fd5b50610653600480360381019061064e9190612d92565b6118ca565b6040516106609190613681565b60405180910390f35b34801561067557600080fd5b5061067e6118eb565b60405161068b9190613444565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190612e52565b6118fe565b005b6106d760048036038101906106d29190613045565b611971565b005b3480156106e557600080fd5b5061070060048036038101906106fb9190613045565b611bcc565b60405161070d919061345f565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190612d92565b611c6b565b60405161074a919061369c565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612dbf565b611c7d565b6040516107879190613444565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612d92565b611d11565b005b3480156107c557600080fd5b506107ce611e09565b6040516107db919061369c565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461088590613960565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190613960565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b600061091382611e2d565b610949576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82611e8c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a16611f5a565b73ffffffffffffffffffffffffffffffffffffffff1614610a7957610a4281610a3d611f5a565b611c7d565b610a78576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b35611f62565b6002546001540303905090565b610b4d838383611f67565b505050565b7f000000000000000000000000000000000000000000000000000000000000000a81565b610b7e612311565b73ffffffffffffffffffffffffffffffffffffffff16610b9c611431565b73ffffffffffffffffffffffffffffffffffffffff1614610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be9906135c1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000006f81610c1c610b2b565b610c269190613787565b1115610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90613621565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a82610c959190613a0c565b14610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906134c1565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a82610d0391906137dd565b905060005b81811015610d4d57610d3a337f000000000000000000000000000000000000000000000000000000000000000a612319565b8080610d45906139c3565b915050610d08565b505050565b610d5a612311565b73ffffffffffffffffffffffffffffffffffffffff16610d78611431565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc5906135c1565b60405180910390fd5b60026009541415610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613641565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610e42906133c8565b60006040518083038185875af1925050503d8060008114610e7f576040519150601f19603f3d011682016040523d82523d6000602084013e610e84565b606091505b5050905080610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613541565b60405180910390fd5b506001600981905550565b610edb612311565b73ffffffffffffffffffffffffffffffffffffffff16610ef9611431565b73ffffffffffffffffffffffffffffffffffffffff1614610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906135c1565b60405180910390fd5b600a60009054906101000a900460ff16610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590613661565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b610fd6838383604051806020016040528060008152506118fe565b505050565b7f0000000000000000000000000000000000000000000000000000000000000d2981565b611007612311565b73ffffffffffffffffffffffffffffffffffffffff16611025611431565b73ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611072906135c1565b60405180910390fd5b600c60009054906101000a900460ff16156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290613561565b60405180910390fd5b8181600e91906110dc929190612b22565b505050565b60006110ec82611e8c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b4612311565b73ffffffffffffffffffffffffffffffffffffffff166111d2611431565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f906135c1565b60405180910390fd5b6112326000612337565b565b61123c612311565b73ffffffffffffffffffffffffffffffffffffffff1661125a611431565b73ffffffffffffffffffffffffffffffffffffffff16146112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906135c1565b60405180910390fd5b600a60009054906101000a900460ff1615611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613521565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b611325612311565b73ffffffffffffffffffffffffffffffffffffffff16611343611431565b73ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611390906135c1565b60405180910390fd5b60005b815181101561142d57600a600d60008484815181106113be576113bd613aca565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055508080611425906139c3565b91505061139c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f0000000000000000000000000000000000000000000000000018838370f3400081565b60606004805461148d90613960565b80601f01602080910402602001604051908101604052809291908181526020018280546114b990613960565b80156115065780601f106114db57610100808354040283529160200191611506565b820191906000526020600020905b8154815290600101906020018083116114e957829003601f168201915b5050505050905090565b611518612311565b73ffffffffffffffffffffffffffffffffffffffff16611536611431565b73ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611583906135c1565b60405180910390fd5b600c60009054906101000a900460ff16156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d3906134e1565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461166d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166490613601565b60405180910390fd5b600a60009054906101000a900460ff16156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613501565b60405180910390fd5b6116c981600b546123fb565b50565b6116d4611f5a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611739576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611746611f5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117f3611f5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118389190613444565b60405180910390a35050565b61184c612311565b73ffffffffffffffffffffffffffffffffffffffff1661186a611431565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906135c1565b60405180910390fd5b80600b8190555050565b600d6020528060005260406000206000915054906101000a900461ffff1681565b600a60009054906101000a900460ff1681565b611909848484611f67565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461196b5761193484848484612508565b61196a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690613601565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff1611611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a906135a1565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000d296001611a9e610b2b565b611aa89190613787565b1115611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613581565b60405180910390fd5b611b13817f0000000000000000000000000000000000000000000000000018838370f340006123fb565b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff16611b709190613868565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555050565b6060611bd782611e2d565b611c0d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c17612668565b9050600081511415611c385760405180602001604052806000815250611c63565b80611c42846126fa565b604051602001611c539291906133a4565b6040516020818303038152906040525b915050919050565b6000611c7682612754565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d19612311565b73ffffffffffffffffffffffffffffffffffffffff16611d37611431565b73ffffffffffffffffffffffffffffffffffffffff1614611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d84906135c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df4906134a1565b60405180910390fd5b611e0681612337565b50565b7f000000000000000000000000000000000000000000000000000000000000006f81565b600081611e38611f62565b11158015611e47575060015482105b8015611e85575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611e9b611f62565b11611f2357600154811015611f225760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f20575b6000811415611f16576005600083600190039350838152602001908152602001600020549050611eeb565b8092505050611f55565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611f7282611e8c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611fd9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ffa611f5a565b73ffffffffffffffffffffffffffffffffffffffff161480612029575061202885612023611f5a565b611c7d565b5b8061206e5750612037611f5a565b73ffffffffffffffffffffffffffffffffffffffff1661205684610908565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120a7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561210e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61211b85858560016127ab565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612218866127b1565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156122a25760006001840190506000600560008381526020019081526020016000205414156122a057600154811461229f578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461230a85858560016127bb565b5050505050565b600033905090565b6123338282604051806020016040528060008152506127c1565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f0000000000000000000000000000000000000000000000000000000000000d2982612425610b2b565b61242f9190613787565b1115612470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246790613581565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8261249b33611c6b565b6124a59190613787565b11156124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd906135e1565b60405180910390fd5b6124f03383612319565b61250482826124ff919061380e565b612a77565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261252e611f5a565b8786866040518563ffffffff1660e01b815260040161255094939291906133f8565b602060405180830381600087803b15801561256a57600080fd5b505af192505050801561259b57506040513d601f19601f820116820180604052508101906125989190612fcb565b60015b612615573d80600081146125cb576040519150601f19603f3d011682016040523d82523d6000602084013e6125d0565b606091505b5060008151141561260d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461267790613960565b80601f01602080910402602001604051908101604052809291908181526020018280546126a390613960565b80156126f05780601f106126c5576101008083540402835291602001916126f0565b820191906000526020600020905b8154815290600101906020018083116126d357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561274057600183039250600a81066030018353600a81049050612720565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561282f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561286a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61287760008583866127ab565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16128dc60018514612b18565b901b60a042901b6128ec866127b1565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146129f0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129a06000878480600101955087612508565b6129d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129315782600154146129eb57600080fd5b612a5b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106129f1575b816001819055505050612a7160008583866127bb565b50505050565b80341015612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab190613481565b60405180910390fd5b80341115612b15573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612ae89190613868565b9081150290604051600060405180830381858888f19350505050158015612b13573d6000803e3d6000fd5b505b50565b6000819050919050565b828054612b2e90613960565b90600052602060002090601f016020900481019282612b505760008555612b97565b82601f10612b6957803560ff1916838001178555612b97565b82800160010185558215612b97579182015b82811115612b96578235825591602001919060010190612b7b565b5b509050612ba49190612ba8565b5090565b5b80821115612bc1576000816000905550600101612ba9565b5090565b6000612bd8612bd3846136dc565b6136b7565b90508083825260208201905082856020860282011115612bfb57612bfa613b32565b5b60005b85811015612c2b5781612c118882612c77565b845260208401935060208301925050600181019050612bfe565b5050509392505050565b6000612c48612c4384613708565b6136b7565b905082815260208101848484011115612c6457612c63613b37565b5b612c6f84828561391e565b509392505050565b600081359050612c8681613e5c565b92915050565b600082601f830112612ca157612ca0613b2d565b5b8135612cb1848260208601612bc5565b91505092915050565b600081359050612cc981613e73565b92915050565b600081359050612cde81613e8a565b92915050565b600081519050612cf381613e8a565b92915050565b600082601f830112612d0e57612d0d613b2d565b5b8135612d1e848260208601612c35565b91505092915050565b60008083601f840112612d3d57612d3c613b2d565b5b8235905067ffffffffffffffff811115612d5a57612d59613b28565b5b602083019150836001820283011115612d7657612d75613b32565b5b9250929050565b600081359050612d8c81613ea1565b92915050565b600060208284031215612da857612da7613b41565b5b6000612db684828501612c77565b91505092915050565b60008060408385031215612dd657612dd5613b41565b5b6000612de485828601612c77565b9250506020612df585828601612c77565b9150509250929050565b600080600060608486031215612e1857612e17613b41565b5b6000612e2686828701612c77565b9350506020612e3786828701612c77565b9250506040612e4886828701612d7d565b9150509250925092565b60008060008060808587031215612e6c57612e6b613b41565b5b6000612e7a87828801612c77565b9450506020612e8b87828801612c77565b9350506040612e9c87828801612d7d565b925050606085013567ffffffffffffffff811115612ebd57612ebc613b3c565b5b612ec987828801612cf9565b91505092959194509250565b60008060408385031215612eec57612eeb613b41565b5b6000612efa85828601612c77565b9250506020612f0b85828601612cba565b9150509250929050565b60008060408385031215612f2c57612f2b613b41565b5b6000612f3a85828601612c77565b9250506020612f4b85828601612d7d565b9150509250929050565b600060208284031215612f6b57612f6a613b41565b5b600082013567ffffffffffffffff811115612f8957612f88613b3c565b5b612f9584828501612c8c565b91505092915050565b600060208284031215612fb457612fb3613b41565b5b6000612fc284828501612ccf565b91505092915050565b600060208284031215612fe157612fe0613b41565b5b6000612fef84828501612ce4565b91505092915050565b6000806020838503121561300f5761300e613b41565b5b600083013567ffffffffffffffff81111561302d5761302c613b3c565b5b61303985828601612d27565b92509250509250929050565b60006020828403121561305b5761305a613b41565b5b600061306984828501612d7d565b91505092915050565b61307b8161389c565b82525050565b61308a816138ae565b82525050565b600061309b82613739565b6130a5818561374f565b93506130b581856020860161392d565b6130be81613b46565b840191505092915050565b60006130d482613744565b6130de818561376b565b93506130ee81856020860161392d565b6130f781613b46565b840191505092915050565b600061310d82613744565b613117818561377c565b935061312781856020860161392d565b80840191505092915050565b600061314060168361376b565b915061314b82613b57565b602082019050919050565b600061316360268361376b565b915061316e82613b80565b604082019050919050565b6000613186602c8361376b565b915061319182613bcf565b604082019050919050565b60006131a960178361376b565b91506131b482613c1e565b602082019050919050565b60006131cc60128361376b565b91506131d782613c47565b602082019050919050565b60006131ef60178361376b565b91506131fa82613c70565b602082019050919050565b600061321260108361376b565b915061321d82613c99565b602082019050919050565b600061323560128361376b565b915061324082613cc2565b602082019050919050565b600061325860128361376b565b915061326382613ceb565b602082019050919050565b600061327b601f8361376b565b915061328682613d14565b602082019050919050565b600061329e60208361376b565b91506132a982613d3d565b602082019050919050565b60006132c1600083613760565b91506132cc82613d66565b600082019050919050565b60006132e460168361376b565b91506132ef82613d69565b602082019050919050565b6000613307601e8361376b565b915061331282613d92565b602082019050919050565b600061332a60278361376b565b915061333582613dbb565b604082019050919050565b600061334d601f8361376b565b915061335882613e0a565b602082019050919050565b600061337060198361376b565b915061337b82613e33565b602082019050919050565b61338f816138e6565b82525050565b61339e81613914565b82525050565b60006133b08285613102565b91506133bc8284613102565b91508190509392505050565b60006133d3826132b4565b9150819050919050565b60006020820190506133f26000830184613072565b92915050565b600060808201905061340d6000830187613072565b61341a6020830186613072565b6134276040830185613395565b81810360608301526134398184613090565b905095945050505050565b60006020820190506134596000830184613081565b92915050565b6000602082019050818103600083015261347981846130c9565b905092915050565b6000602082019050818103600083015261349a81613133565b9050919050565b600060208201905081810360008301526134ba81613156565b9050919050565b600060208201905081810360008301526134da81613179565b9050919050565b600060208201905081810360008301526134fa8161319c565b9050919050565b6000602082019050818103600083015261351a816131bf565b9050919050565b6000602082019050818103600083015261353a816131e2565b9050919050565b6000602082019050818103600083015261355a81613205565b9050919050565b6000602082019050818103600083015261357a81613228565b9050919050565b6000602082019050818103600083015261359a8161324b565b9050919050565b600060208201905081810360008301526135ba8161326e565b9050919050565b600060208201905081810360008301526135da81613291565b9050919050565b600060208201905081810360008301526135fa816132d7565b9050919050565b6000602082019050818103600083015261361a816132fa565b9050919050565b6000602082019050818103600083015261363a8161331d565b9050919050565b6000602082019050818103600083015261365a81613340565b9050919050565b6000602082019050818103600083015261367a81613363565b9050919050565b60006020820190506136966000830184613386565b92915050565b60006020820190506136b16000830184613395565b92915050565b60006136c16136d2565b90506136cd8282613992565b919050565b6000604051905090565b600067ffffffffffffffff8211156136f7576136f6613af9565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561372357613722613af9565b5b61372c82613b46565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061379282613914565b915061379d83613914565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d2576137d1613a3d565b5b828201905092915050565b60006137e882613914565b91506137f383613914565b92508261380357613802613a6c565b5b828204905092915050565b600061381982613914565b915061382483613914565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561385d5761385c613a3d565b5b828202905092915050565b600061387382613914565b915061387e83613914565b92508282101561389157613890613a3d565b5b828203905092915050565b60006138a7826138f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561394b578082015181840152602081019050613930565b8381111561395a576000848401525b50505050565b6000600282049050600182168061397857607f821691505b6020821081141561398c5761398b613a9b565b5b50919050565b61399b82613b46565b810181811067ffffffffffffffff821117156139ba576139b9613af9565b5b80604052505050565b60006139ce82613914565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a0157613a00613a3d565b5b600182019050919050565b6000613a1782613914565b9150613a2283613914565b925082613a3257613a31613a6c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f6d6574616461746120616c7265616479206c6f636b6564000000000000000000600082015250565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f636f6e747261637420616c726561647920706175736564000000000000000000600082015250565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f6d65746164617461206973206c6f636b65640000000000000000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7400600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f7468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f636f6e747261637420616c726561647920756e70617573656400000000000000600082015250565b613e658161389c565b8114613e7057600080fd5b50565b613e7c816138ae565b8114613e8757600080fd5b50565b613e93816138ba565b8114613e9e57600080fd5b50565b613eaa81613914565b8114613eb557600080fd5b5056fea2646970667358221220c239cd8a8cd13bffc486741f77c1e559987dbe8f13075d6b943573d228f165f464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000d29000000000000000000000000000000000000000000000000000000000000006f000000000000000000000000000000000000000000000000003c0a75e0b440000000000000000000000000000000000000000000000000000018838370f3400000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d636e596765527459504458776b7a313934344e4152673772636a32555a6f54755244446b536d616f635258782f00000000000000000000
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 3369
Arg [2] : amountForDevs_ (uint256): 111
Arg [3] : price_ (uint256): 16900000000000000
Arg [4] : allowlistPrice_ (uint256): 6900000000000000
Arg [5] : baseURI_ (string): ipfs://QmcnYgeRtYPDXwkz1944NARg7rcj2UZoTuRDDkSmaocRXx/
Arg [6] : numberOfHonoraries_ (uint256): 10
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000d29
Arg [2] : 000000000000000000000000000000000000000000000000000000000000006f
Arg [3] : 000000000000000000000000000000000000000000000000003c0a75e0b44000
Arg [4] : 0000000000000000000000000000000000000000000000000018838370f34000
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d636e596765527459504458776b7a313934344e41526737
Arg [9] : 72636a32555a6f54755244446b536d616f635258782f00000000000000000000
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.