Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
224 JGC
Holders
53
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 JGCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
JujuGenieClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "ERC721A.sol"; import "Ownable.sol"; contract JujuGenieClub is ERC721A, Ownable { using Strings for uint256; string public baseURI; string public notRevealedUri; uint256 public MAX_SUPPLY = 10000; uint256 public publicSaleCost = 0.004 ether; uint256 public publicMintLimit_pw = 10000; bool public revealed = true; bool public public_mint_status = false; mapping(address => uint256) public publicmint_claimed; constructor(string memory _initBaseURI, string memory _initNotRevealedUri) ERC721A("JujuGenieClub", "JGC") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } function mint(uint256 quantity) public payable { require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); if (msg.sender != owner()) { require(public_mint_status, "Public Mint Not Allowed"); require(balanceOf(msg.sender) + quantity <= publicMintLimit_pw, "Public Mint Limit Reached"); if(publicmint_claimed[msg.sender] > 0){ require(msg.value >= (publicSaleCost * quantity), "Not enough ether sent"); } else{ require(msg.value >= (publicSaleCost * (quantity-1)), "Not enough ether sent"); } } _safeMint(msg.sender, quantity); publicmint_claimed[msg.sender] = publicmint_claimed[msg.sender] + quantity; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if(revealed == false) { return notRevealedUri; } return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : ''; } function _baseURI() internal view override returns (string memory) { return baseURI; } //only owner function toggleReveal() public onlyOwner { if(revealed == false){ revealed = true; }else{ revealed = false; } } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setStatus_publicmint() public onlyOwner { if(public_mint_status == true){ public_mint_status = false; } else { public_mint_status = true; } } function withdraw() public payable onlyOwner { (bool main, ) = payable(owner()).call{value: address(this).balance}(""); require(main); } function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner { publicSaleCost = _publicSaleCost; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setpublicMintLimit_pw(uint256 _publicMintLimit_pw) public onlyOwner { publicMintLimit_pw = _publicMintLimit_pw; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import 'IERC721.sol'; import 'IERC721Receiver.sol'; import 'IERC721Metadata.sol'; import 'IERC721Enumerable.sol'; import 'Address.sol'; import 'Context.sol'; import 'Strings.sol'; import 'ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 internal _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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * 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) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ''; } /** * @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 See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned; } 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 { _mint(to, quantity, _data, true); } /** * @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, bytes memory _data, bool safe ) 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 > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "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 // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintLimit_pw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicmint_claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStatus_publicmint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintLimit_pw","type":"uint256"}],"name":"setpublicMintLimit_pw","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":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052612710600a55660e35fa931a0000600b55612710600c556001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055503480156200005e57600080fd5b506040516200473f3803806200473f8339818101604052810190620000849190620004ea565b6040518060400160405280600d81526020017f4a756a7547656e6965436c7562000000000000000000000000000000000000008152506040518060400160405280600381526020017f4a47430000000000000000000000000000000000000000000000000000000000815250816001908051906020019062000108929190620003bc565b50806002908051906020019062000121929190620003bc565b50505062000144620001386200016e60201b60201c565b6200017660201b60201c565b62000155826200023c60201b60201c565b6200016681620002e760201b60201c565b505062000776565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024c6200016e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002726200039260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c29062000596565b60405180910390fd5b8060089080519060200190620002e3929190620003bc565b5050565b620002f76200016e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031d6200039260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000376576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036d9062000596565b60405180910390fd5b80600990805190602001906200038e929190620003bc565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ca906200065e565b90600052602060002090601f016020900481019282620003ee57600085556200043a565b82601f106200040957805160ff19168380011785556200043a565b828001600101855582156200043a579182015b82811115620004395782518255916020019190600101906200041c565b5b5090506200044991906200044d565b5090565b5b80821115620004685760008160009055506001016200044e565b5090565b6000620004836200047d84620005e1565b620005b8565b905082815260208101848484011115620004a257620004a16200072d565b5b620004af84828562000628565b509392505050565b600082601f830112620004cf57620004ce62000728565b5b8151620004e18482602086016200046c565b91505092915050565b6000806040838503121562000504576200050362000737565b5b600083015167ffffffffffffffff81111562000525576200052462000732565b5b6200053385828601620004b7565b925050602083015167ffffffffffffffff81111562000557576200055662000732565b5b6200056585828601620004b7565b9150509250929050565b60006200057e60208362000617565b91506200058b826200074d565b602082019050919050565b60006020820190508181036000830152620005b1816200056f565b9050919050565b6000620005c4620005d7565b9050620005d2828262000694565b919050565b6000604051905090565b600067ffffffffffffffff821115620005ff57620005fe620006f9565b5b6200060a826200073c565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006485780820151818401526020810190506200062b565b8381111562000658576000848401525b50505050565b600060028204905060018216806200067757607f821691505b602082108114156200068e576200068d620006ca565b5b50919050565b6200069f826200073c565b810181811067ffffffffffffffff82111715620006c157620006c0620006f9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613fb980620007866000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a0712d68116100a0578063e985e9c51161006f578063e985e9c514610717578063f0d2319214610754578063f2c4ce1e14610791578063f2fde38b146107ba578063fe16ad41146107e357610204565b8063a0712d681461066c578063a22cb46514610688578063b88d4fde146106b1578063c87b56dd146106da57610204565b80637fbbf887116100e75780637fbbf887146105ab57806381c4cede146105c25780638da5cb5b146105ed5780638dbb7c061461061857806395d89b411461064157610204565b80636352211e146104ef5780636c0360eb1461052c57806370a0823114610557578063715018a61461059457610204565b80632f745c591161019b578063453afb0f1161016a578063453afb0f1461041c5780634f6ccce714610447578063518302271461048457806355f804b3146104af5780635b8ad429146104d857610204565b80632f745c591461038157806332cb6b0c146103be5780633ccfd60b146103e957806342842e0e146103f357610204565b8063081c8c44116101d7578063081c8c44146102d9578063095ea7b31461030457806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde031461024657806307f13cc614610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613443565b61080c565b60405161023d9190613825565b60405180910390f35b34801561025257600080fd5b5061025b610956565b6040516102689190613840565b60405180910390f35b34801561027d57600080fd5b506102866109e8565b6040516102939190613922565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906134e6565b6109ee565b6040516102d091906137be565b60405180910390f35b3480156102e557600080fd5b506102ee610a6a565b6040516102fb9190613840565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613403565b610af8565b005b34801561033957600080fd5b50610342610c03565b60405161034f9190613922565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906132ed565b610c58565b005b34801561038d57600080fd5b506103a860048036038101906103a39190613403565b610c68565b6040516103b59190613922565b60405180910390f35b3480156103ca57600080fd5b506103d3610e6f565b6040516103e09190613922565b60405180910390f35b6103f1610e75565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906132ed565b610f71565b005b34801561042857600080fd5b50610431610f91565b60405161043e9190613922565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906134e6565b610f97565b60405161047b9190613922565b60405180910390f35b34801561049057600080fd5b50610499611108565b6040516104a69190613825565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d1919061349d565b61111b565b005b3480156104e457600080fd5b506104ed6111b1565b005b3480156104fb57600080fd5b50610516600480360381019061051191906134e6565b611287565b60405161052391906137be565b60405180910390f35b34801561053857600080fd5b5061054161129d565b60405161054e9190613840565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613280565b61132b565b60405161058b9190613922565b60405180910390f35b3480156105a057600080fd5b506105a96113fb565b005b3480156105b757600080fd5b506105c0611483565b005b3480156105ce57600080fd5b506105d7611559565b6040516105e49190613825565b60405180910390f35b3480156105f957600080fd5b5061060261156c565b60405161060f91906137be565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a91906134e6565b611596565b005b34801561064d57600080fd5b5061065661161c565b6040516106639190613840565b60405180910390f35b610686600480360381019061068191906134e6565b6116ae565b005b34801561069457600080fd5b506106af60048036038101906106aa91906133c3565b61197c565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190613340565b611af4565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906134e6565b611b47565b60405161070e9190613840565b60405180910390f35b34801561072357600080fd5b5061073e600480360381019061073991906132ad565b611c96565b60405161074b9190613825565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190613280565b611d2a565b6040516107889190613922565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b3919061349d565b611d42565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613280565b611dd8565b005b3480156107ef57600080fd5b5061080a600480360381019061080591906134e6565b611ed0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094f575061094e82611f56565b5b9050919050565b60606001805461096590613bf2565b80601f016020809104026020016040519081016040528092919081815260200182805461099190613bf2565b80156109de5780601f106109b3576101008083540402835291602001916109de565b820191906000526020600020905b8154815290600101906020018083116109c157829003601f168201915b5050505050905090565b600c5481565b60006109f982611fc0565b610a2f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60098054610a7790613bf2565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390613bf2565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b505050505081565b6000610b0382611287565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8a612028565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bbc5750610bba81610bb5612028565b611c96565b155b15610bf3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfe838383612030565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610c638383836120e2565b505050565b6000610c738361132b565b8210610cab576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610e63576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610dc25750610e56565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e0257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e545786841415610e4b578195505050505050610e69565b83806001019450505b505b8080600101915050610ce5565b50600080fd5b92915050565b600a5481565b610e7d612028565b73ffffffffffffffffffffffffffffffffffffffff16610e9b61156c565b73ffffffffffffffffffffffffffffffffffffffff1614610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee8906138c2565b60405180910390fd5b6000610efb61156c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f1e906137a9565b60006040518083038185875af1925050503d8060008114610f5b576040519150601f19603f3d011682016040523d82523d6000602084013e610f60565b606091505b5050905080610f6e57600080fd5b50565b610f8c83838360405180602001604052806000815250611af4565b505050565b600b5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156110d0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110c257858314156110b95781945050505050611103565b82806001019350505b508080600101915050610fcf565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600d60009054906101000a900460ff1681565b611123612028565b73ffffffffffffffffffffffffffffffffffffffff1661114161156c565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e906138c2565b60405180910390fd5b80600890805190602001906111ad929190613051565b5050565b6111b9612028565b73ffffffffffffffffffffffffffffffffffffffff166111d761156c565b73ffffffffffffffffffffffffffffffffffffffff161461122d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611224906138c2565b60405180910390fd5b60001515600d60009054906101000a900460ff1615151415611269576001600d60006101000a81548160ff021916908315150217905550611285565b6000600d60006101000a81548160ff0219169083151502179055505b565b6000611292826125ff565b600001519050919050565b600880546112aa90613bf2565b80601f01602080910402602001604051908101604052809291908181526020018280546112d690613bf2565b80156113235780601f106112f857610100808354040283529160200191611323565b820191906000526020600020905b81548152906001019060200180831161130657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611393576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611403612028565b73ffffffffffffffffffffffffffffffffffffffff1661142161156c565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e906138c2565b60405180910390fd5b61148160006128a7565b565b61148b612028565b73ffffffffffffffffffffffffffffffffffffffff166114a961156c565b73ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f6906138c2565b60405180910390fd5b60011515600d60019054906101000a900460ff161515141561153b576000600d60016101000a81548160ff021916908315150217905550611557565b6001600d60016101000a81548160ff0219169083151502179055505b565b600d60019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61159e612028565b73ffffffffffffffffffffffffffffffffffffffff166115bc61156c565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906138c2565b60405180910390fd5b80600b8190555050565b60606002805461162b90613bf2565b80601f016020809104026020016040519081016040528092919081815260200182805461165790613bf2565b80156116a45780601f10611679576101008083540402835291602001916116a4565b820191906000526020600020905b81548152906001019060200180831161168757829003601f168201915b5050505050905090565b600a54816116ba610c03565b6116c49190613a27565b1115611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc906138a2565b60405180910390fd5b61170d61156c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e157600d60019054906101000a900460ff1661178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613882565b60405180910390fd5b600c548161179b3361132b565b6117a59190613a27565b11156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906138e2565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156118835780600b5461183c9190613aae565b34101561187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590613902565b60405180910390fd5b6118e0565b6001816118909190613b08565b600b5461189d9190613aae565b3410156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690613902565b60405180910390fd5b5b5b6118eb338261296d565b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119369190613a27565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b611984612028565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006119f6612028565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aa3612028565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae89190613825565b60405180910390a35050565b611aff8484846120e2565b611b0b8484848461298b565b611b41576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611b5282611fc0565b611b88576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60009054906101000a900460ff1615151415611c365760098054611bb190613bf2565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdd90613bf2565b8015611c2a5780601f10611bff57610100808354040283529160200191611c2a565b820191906000526020600020905b815481529060010190602001808311611c0d57829003601f168201915b50505050509050611c91565b600060088054611c4590613bf2565b90501415611c625760405180602001604052806000815250611c8e565b6008611c6d83612b19565b604051602001611c7e92919061377a565b6040516020818303038152906040525b90505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b611d4a612028565b73ffffffffffffffffffffffffffffffffffffffff16611d6861156c565b73ffffffffffffffffffffffffffffffffffffffff1614611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db5906138c2565b60405180910390fd5b8060099080519060200190611dd4929190613051565b5050565b611de0612028565b73ffffffffffffffffffffffffffffffffffffffff16611dfe61156c565b73ffffffffffffffffffffffffffffffffffffffff1614611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b906138c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90613862565b60405180910390fd5b611ecd816128a7565b50565b611ed8612028565b73ffffffffffffffffffffffffffffffffffffffff16611ef661156c565b73ffffffffffffffffffffffffffffffffffffffff1614611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f43906138c2565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612021575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120ed826125ff565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612114612028565b73ffffffffffffffffffffffffffffffffffffffff16148061214757506121468260000151612141612028565b611c96565b5b8061218c5750612155612028565b73ffffffffffffffffffffffffffffffffffffffff16612174846109ee565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121c5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461222e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612295576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122a28585856001612c7a565b6122b26000848460000151612030565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561258f5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561258e5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125f88585856001612c80565b5050505050565b6126076130d7565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612870576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161286e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127525780925050506128a2565b5b60011561286d57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128685780925050506128a2565b612753565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612987828260405180602001604052806000815250612c86565b5050565b60006129ac8473ffffffffffffffffffffffffffffffffffffffff16612c98565b15612b0c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d5612028565b8786866040518563ffffffff1660e01b81526004016129f794939291906137d9565b602060405180830381600087803b158015612a1157600080fd5b505af1925050508015612a4257506040513d601f19601f82011682018060405250810190612a3f9190613470565b60015b612abc573d8060008114612a72576040519150601f19603f3d011682016040523d82523d6000602084013e612a77565b606091505b50600081511415612ab4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b11565b600190505b949350505050565b60606000821415612b61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c75565b600082905060005b60008214612b93578080612b7c90613c55565b915050600a82612b8c9190613a7d565b9150612b69565b60008167ffffffffffffffff811115612baf57612bae613d8b565b5b6040519080825280601f01601f191660200182016040528015612be15781602001600182028036833780820191505090505b5090505b60008514612c6e57600182612bfa9190613b08565b9150600a85612c099190613c9e565b6030612c159190613a27565b60f81b818381518110612c2b57612c2a613d5c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c679190613a7d565b9450612be5565b8093505050505b919050565b50505050565b50505050565b612c938383836001612cbb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d56576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d91576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d9e6000868387612c7a565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561300357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612fb75750612fb5600088848861298b565b155b15612fee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612f3c565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505061304a6000868387612c80565b5050505050565b82805461305d90613bf2565b90600052602060002090601f01602090048101928261307f57600085556130c6565b82601f1061309857805160ff19168380011785556130c6565b828001600101855582156130c6579182015b828111156130c55782518255916020019190600101906130aa565b5b5090506130d3919061311a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561313357600081600090555060010161311b565b5090565b600061314a61314584613962565b61393d565b90508281526020810184848401111561316657613165613dbf565b5b613171848285613bb0565b509392505050565b600061318c61318784613993565b61393d565b9050828152602081018484840111156131a8576131a7613dbf565b5b6131b3848285613bb0565b509392505050565b6000813590506131ca81613f27565b92915050565b6000813590506131df81613f3e565b92915050565b6000813590506131f481613f55565b92915050565b60008151905061320981613f55565b92915050565b600082601f83011261322457613223613dba565b5b8135613234848260208601613137565b91505092915050565b600082601f83011261325257613251613dba565b5b8135613262848260208601613179565b91505092915050565b60008135905061327a81613f6c565b92915050565b60006020828403121561329657613295613dc9565b5b60006132a4848285016131bb565b91505092915050565b600080604083850312156132c4576132c3613dc9565b5b60006132d2858286016131bb565b92505060206132e3858286016131bb565b9150509250929050565b60008060006060848603121561330657613305613dc9565b5b6000613314868287016131bb565b9350506020613325868287016131bb565b92505060406133368682870161326b565b9150509250925092565b6000806000806080858703121561335a57613359613dc9565b5b6000613368878288016131bb565b9450506020613379878288016131bb565b935050604061338a8782880161326b565b925050606085013567ffffffffffffffff8111156133ab576133aa613dc4565b5b6133b78782880161320f565b91505092959194509250565b600080604083850312156133da576133d9613dc9565b5b60006133e8858286016131bb565b92505060206133f9858286016131d0565b9150509250929050565b6000806040838503121561341a57613419613dc9565b5b6000613428858286016131bb565b92505060206134398582860161326b565b9150509250929050565b60006020828403121561345957613458613dc9565b5b6000613467848285016131e5565b91505092915050565b60006020828403121561348657613485613dc9565b5b6000613494848285016131fa565b91505092915050565b6000602082840312156134b3576134b2613dc9565b5b600082013567ffffffffffffffff8111156134d1576134d0613dc4565b5b6134dd8482850161323d565b91505092915050565b6000602082840312156134fc576134fb613dc9565b5b600061350a8482850161326b565b91505092915050565b61351c81613b3c565b82525050565b61352b81613b4e565b82525050565b600061353c826139d9565b61354681856139ef565b9350613556818560208601613bbf565b61355f81613dce565b840191505092915050565b6000613575826139e4565b61357f8185613a0b565b935061358f818560208601613bbf565b61359881613dce565b840191505092915050565b60006135ae826139e4565b6135b88185613a1c565b93506135c8818560208601613bbf565b80840191505092915050565b600081546135e181613bf2565b6135eb8186613a1c565b9450600182166000811461360657600181146136175761364a565b60ff1983168652818601935061364a565b613620856139c4565b60005b8381101561364257815481890152600182019150602081019050613623565b838801955050505b50505092915050565b6000613660602683613a0b565b915061366b82613ddf565b604082019050919050565b6000613683601783613a0b565b915061368e82613e2e565b602082019050919050565b60006136a6601683613a0b565b91506136b182613e57565b602082019050919050565b60006136c9600583613a1c565b91506136d482613e80565b600582019050919050565b60006136ec602083613a0b565b91506136f782613ea9565b602082019050919050565b600061370f601983613a0b565b915061371a82613ed2565b602082019050919050565b6000613732600083613a00565b915061373d82613efb565b600082019050919050565b6000613755601583613a0b565b915061376082613efe565b602082019050919050565b61377481613ba6565b82525050565b600061378682856135d4565b915061379282846135a3565b915061379d826136bc565b91508190509392505050565b60006137b482613725565b9150819050919050565b60006020820190506137d36000830184613513565b92915050565b60006080820190506137ee6000830187613513565b6137fb6020830186613513565b613808604083018561376b565b818103606083015261381a8184613531565b905095945050505050565b600060208201905061383a6000830184613522565b92915050565b6000602082019050818103600083015261385a818461356a565b905092915050565b6000602082019050818103600083015261387b81613653565b9050919050565b6000602082019050818103600083015261389b81613676565b9050919050565b600060208201905081810360008301526138bb81613699565b9050919050565b600060208201905081810360008301526138db816136df565b9050919050565b600060208201905081810360008301526138fb81613702565b9050919050565b6000602082019050818103600083015261391b81613748565b9050919050565b6000602082019050613937600083018461376b565b92915050565b6000613947613958565b90506139538282613c24565b919050565b6000604051905090565b600067ffffffffffffffff82111561397d5761397c613d8b565b5b61398682613dce565b9050602081019050919050565b600067ffffffffffffffff8211156139ae576139ad613d8b565b5b6139b782613dce565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a3282613ba6565b9150613a3d83613ba6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7257613a71613ccf565b5b828201905092915050565b6000613a8882613ba6565b9150613a9383613ba6565b925082613aa357613aa2613cfe565b5b828204905092915050565b6000613ab982613ba6565b9150613ac483613ba6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613afd57613afc613ccf565b5b828202905092915050565b6000613b1382613ba6565b9150613b1e83613ba6565b925082821015613b3157613b30613ccf565b5b828203905092915050565b6000613b4782613b86565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bdd578082015181840152602081019050613bc2565b83811115613bec576000848401525b50505050565b60006002820490506001821680613c0a57607f821691505b60208210811415613c1e57613c1d613d2d565b5b50919050565b613c2d82613dce565b810181811067ffffffffffffffff82111715613c4c57613c4b613d8b565b5b80604052505050565b6000613c6082613ba6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9357613c92613ccf565b5b600182019050919050565b6000613ca982613ba6565b9150613cb483613ba6565b925082613cc457613cc3613cfe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963204d696e74204e6f7420416c6c6f776564000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c6963204d696e74204c696d6974205265616368656400000000000000600082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b613f3081613b3c565b8114613f3b57600080fd5b50565b613f4781613b4e565b8114613f5257600080fd5b50565b613f5e81613b5a565b8114613f6957600080fd5b50565b613f7581613ba6565b8114613f8057600080fd5b5056fea2646970667358221220737978219d6228f445a768a99b843d56f1102f13667117419f4aefe81fcf876564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f626166796265696174723778366779737071336c346e656a613634626b777a676574756b716c61766e7263776d6c6e776e6e713775727033377a712e697066732e6e667473746f726167652e6c696e6b2f000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636352211e11610118578063a0712d68116100a0578063e985e9c51161006f578063e985e9c514610717578063f0d2319214610754578063f2c4ce1e14610791578063f2fde38b146107ba578063fe16ad41146107e357610204565b8063a0712d681461066c578063a22cb46514610688578063b88d4fde146106b1578063c87b56dd146106da57610204565b80637fbbf887116100e75780637fbbf887146105ab57806381c4cede146105c25780638da5cb5b146105ed5780638dbb7c061461061857806395d89b411461064157610204565b80636352211e146104ef5780636c0360eb1461052c57806370a0823114610557578063715018a61461059457610204565b80632f745c591161019b578063453afb0f1161016a578063453afb0f1461041c5780634f6ccce714610447578063518302271461048457806355f804b3146104af5780635b8ad429146104d857610204565b80632f745c591461038157806332cb6b0c146103be5780633ccfd60b146103e957806342842e0e146103f357610204565b8063081c8c44116101d7578063081c8c44146102d9578063095ea7b31461030457806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde031461024657806307f13cc614610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613443565b61080c565b60405161023d9190613825565b60405180910390f35b34801561025257600080fd5b5061025b610956565b6040516102689190613840565b60405180910390f35b34801561027d57600080fd5b506102866109e8565b6040516102939190613922565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906134e6565b6109ee565b6040516102d091906137be565b60405180910390f35b3480156102e557600080fd5b506102ee610a6a565b6040516102fb9190613840565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613403565b610af8565b005b34801561033957600080fd5b50610342610c03565b60405161034f9190613922565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906132ed565b610c58565b005b34801561038d57600080fd5b506103a860048036038101906103a39190613403565b610c68565b6040516103b59190613922565b60405180910390f35b3480156103ca57600080fd5b506103d3610e6f565b6040516103e09190613922565b60405180910390f35b6103f1610e75565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906132ed565b610f71565b005b34801561042857600080fd5b50610431610f91565b60405161043e9190613922565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906134e6565b610f97565b60405161047b9190613922565b60405180910390f35b34801561049057600080fd5b50610499611108565b6040516104a69190613825565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d1919061349d565b61111b565b005b3480156104e457600080fd5b506104ed6111b1565b005b3480156104fb57600080fd5b50610516600480360381019061051191906134e6565b611287565b60405161052391906137be565b60405180910390f35b34801561053857600080fd5b5061054161129d565b60405161054e9190613840565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613280565b61132b565b60405161058b9190613922565b60405180910390f35b3480156105a057600080fd5b506105a96113fb565b005b3480156105b757600080fd5b506105c0611483565b005b3480156105ce57600080fd5b506105d7611559565b6040516105e49190613825565b60405180910390f35b3480156105f957600080fd5b5061060261156c565b60405161060f91906137be565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a91906134e6565b611596565b005b34801561064d57600080fd5b5061065661161c565b6040516106639190613840565b60405180910390f35b610686600480360381019061068191906134e6565b6116ae565b005b34801561069457600080fd5b506106af60048036038101906106aa91906133c3565b61197c565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190613340565b611af4565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906134e6565b611b47565b60405161070e9190613840565b60405180910390f35b34801561072357600080fd5b5061073e600480360381019061073991906132ad565b611c96565b60405161074b9190613825565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190613280565b611d2a565b6040516107889190613922565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b3919061349d565b611d42565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613280565b611dd8565b005b3480156107ef57600080fd5b5061080a600480360381019061080591906134e6565b611ed0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094f575061094e82611f56565b5b9050919050565b60606001805461096590613bf2565b80601f016020809104026020016040519081016040528092919081815260200182805461099190613bf2565b80156109de5780601f106109b3576101008083540402835291602001916109de565b820191906000526020600020905b8154815290600101906020018083116109c157829003601f168201915b5050505050905090565b600c5481565b60006109f982611fc0565b610a2f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60098054610a7790613bf2565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390613bf2565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b505050505081565b6000610b0382611287565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8a612028565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bbc5750610bba81610bb5612028565b611c96565b155b15610bf3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfe838383612030565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610c638383836120e2565b505050565b6000610c738361132b565b8210610cab576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610e63576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610dc25750610e56565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e0257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e545786841415610e4b578195505050505050610e69565b83806001019450505b505b8080600101915050610ce5565b50600080fd5b92915050565b600a5481565b610e7d612028565b73ffffffffffffffffffffffffffffffffffffffff16610e9b61156c565b73ffffffffffffffffffffffffffffffffffffffff1614610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee8906138c2565b60405180910390fd5b6000610efb61156c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f1e906137a9565b60006040518083038185875af1925050503d8060008114610f5b576040519150601f19603f3d011682016040523d82523d6000602084013e610f60565b606091505b5050905080610f6e57600080fd5b50565b610f8c83838360405180602001604052806000815250611af4565b505050565b600b5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156110d0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110c257858314156110b95781945050505050611103565b82806001019350505b508080600101915050610fcf565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600d60009054906101000a900460ff1681565b611123612028565b73ffffffffffffffffffffffffffffffffffffffff1661114161156c565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e906138c2565b60405180910390fd5b80600890805190602001906111ad929190613051565b5050565b6111b9612028565b73ffffffffffffffffffffffffffffffffffffffff166111d761156c565b73ffffffffffffffffffffffffffffffffffffffff161461122d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611224906138c2565b60405180910390fd5b60001515600d60009054906101000a900460ff1615151415611269576001600d60006101000a81548160ff021916908315150217905550611285565b6000600d60006101000a81548160ff0219169083151502179055505b565b6000611292826125ff565b600001519050919050565b600880546112aa90613bf2565b80601f01602080910402602001604051908101604052809291908181526020018280546112d690613bf2565b80156113235780601f106112f857610100808354040283529160200191611323565b820191906000526020600020905b81548152906001019060200180831161130657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611393576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611403612028565b73ffffffffffffffffffffffffffffffffffffffff1661142161156c565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e906138c2565b60405180910390fd5b61148160006128a7565b565b61148b612028565b73ffffffffffffffffffffffffffffffffffffffff166114a961156c565b73ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f6906138c2565b60405180910390fd5b60011515600d60019054906101000a900460ff161515141561153b576000600d60016101000a81548160ff021916908315150217905550611557565b6001600d60016101000a81548160ff0219169083151502179055505b565b600d60019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61159e612028565b73ffffffffffffffffffffffffffffffffffffffff166115bc61156c565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906138c2565b60405180910390fd5b80600b8190555050565b60606002805461162b90613bf2565b80601f016020809104026020016040519081016040528092919081815260200182805461165790613bf2565b80156116a45780601f10611679576101008083540402835291602001916116a4565b820191906000526020600020905b81548152906001019060200180831161168757829003601f168201915b5050505050905090565b600a54816116ba610c03565b6116c49190613a27565b1115611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc906138a2565b60405180910390fd5b61170d61156c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e157600d60019054906101000a900460ff1661178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613882565b60405180910390fd5b600c548161179b3361132b565b6117a59190613a27565b11156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906138e2565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156118835780600b5461183c9190613aae565b34101561187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590613902565b60405180910390fd5b6118e0565b6001816118909190613b08565b600b5461189d9190613aae565b3410156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690613902565b60405180910390fd5b5b5b6118eb338261296d565b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119369190613a27565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b611984612028565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006119f6612028565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aa3612028565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae89190613825565b60405180910390a35050565b611aff8484846120e2565b611b0b8484848461298b565b611b41576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611b5282611fc0565b611b88576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60009054906101000a900460ff1615151415611c365760098054611bb190613bf2565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdd90613bf2565b8015611c2a5780601f10611bff57610100808354040283529160200191611c2a565b820191906000526020600020905b815481529060010190602001808311611c0d57829003601f168201915b50505050509050611c91565b600060088054611c4590613bf2565b90501415611c625760405180602001604052806000815250611c8e565b6008611c6d83612b19565b604051602001611c7e92919061377a565b6040516020818303038152906040525b90505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b611d4a612028565b73ffffffffffffffffffffffffffffffffffffffff16611d6861156c565b73ffffffffffffffffffffffffffffffffffffffff1614611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db5906138c2565b60405180910390fd5b8060099080519060200190611dd4929190613051565b5050565b611de0612028565b73ffffffffffffffffffffffffffffffffffffffff16611dfe61156c565b73ffffffffffffffffffffffffffffffffffffffff1614611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b906138c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90613862565b60405180910390fd5b611ecd816128a7565b50565b611ed8612028565b73ffffffffffffffffffffffffffffffffffffffff16611ef661156c565b73ffffffffffffffffffffffffffffffffffffffff1614611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f43906138c2565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612021575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120ed826125ff565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612114612028565b73ffffffffffffffffffffffffffffffffffffffff16148061214757506121468260000151612141612028565b611c96565b5b8061218c5750612155612028565b73ffffffffffffffffffffffffffffffffffffffff16612174846109ee565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121c5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461222e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612295576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122a28585856001612c7a565b6122b26000848460000151612030565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561258f5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561258e5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125f88585856001612c80565b5050505050565b6126076130d7565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612870576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161286e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127525780925050506128a2565b5b60011561286d57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128685780925050506128a2565b612753565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612987828260405180602001604052806000815250612c86565b5050565b60006129ac8473ffffffffffffffffffffffffffffffffffffffff16612c98565b15612b0c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d5612028565b8786866040518563ffffffff1660e01b81526004016129f794939291906137d9565b602060405180830381600087803b158015612a1157600080fd5b505af1925050508015612a4257506040513d601f19601f82011682018060405250810190612a3f9190613470565b60015b612abc573d8060008114612a72576040519150601f19603f3d011682016040523d82523d6000602084013e612a77565b606091505b50600081511415612ab4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b11565b600190505b949350505050565b60606000821415612b61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c75565b600082905060005b60008214612b93578080612b7c90613c55565b915050600a82612b8c9190613a7d565b9150612b69565b60008167ffffffffffffffff811115612baf57612bae613d8b565b5b6040519080825280601f01601f191660200182016040528015612be15781602001600182028036833780820191505090505b5090505b60008514612c6e57600182612bfa9190613b08565b9150600a85612c099190613c9e565b6030612c159190613a27565b60f81b818381518110612c2b57612c2a613d5c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c679190613a7d565b9450612be5565b8093505050505b919050565b50505050565b50505050565b612c938383836001612cbb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d56576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d91576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d9e6000868387612c7a565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561300357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612fb75750612fb5600088848861298b565b155b15612fee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612f3c565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505061304a6000868387612c80565b5050505050565b82805461305d90613bf2565b90600052602060002090601f01602090048101928261307f57600085556130c6565b82601f1061309857805160ff19168380011785556130c6565b828001600101855582156130c6579182015b828111156130c55782518255916020019190600101906130aa565b5b5090506130d3919061311a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561313357600081600090555060010161311b565b5090565b600061314a61314584613962565b61393d565b90508281526020810184848401111561316657613165613dbf565b5b613171848285613bb0565b509392505050565b600061318c61318784613993565b61393d565b9050828152602081018484840111156131a8576131a7613dbf565b5b6131b3848285613bb0565b509392505050565b6000813590506131ca81613f27565b92915050565b6000813590506131df81613f3e565b92915050565b6000813590506131f481613f55565b92915050565b60008151905061320981613f55565b92915050565b600082601f83011261322457613223613dba565b5b8135613234848260208601613137565b91505092915050565b600082601f83011261325257613251613dba565b5b8135613262848260208601613179565b91505092915050565b60008135905061327a81613f6c565b92915050565b60006020828403121561329657613295613dc9565b5b60006132a4848285016131bb565b91505092915050565b600080604083850312156132c4576132c3613dc9565b5b60006132d2858286016131bb565b92505060206132e3858286016131bb565b9150509250929050565b60008060006060848603121561330657613305613dc9565b5b6000613314868287016131bb565b9350506020613325868287016131bb565b92505060406133368682870161326b565b9150509250925092565b6000806000806080858703121561335a57613359613dc9565b5b6000613368878288016131bb565b9450506020613379878288016131bb565b935050604061338a8782880161326b565b925050606085013567ffffffffffffffff8111156133ab576133aa613dc4565b5b6133b78782880161320f565b91505092959194509250565b600080604083850312156133da576133d9613dc9565b5b60006133e8858286016131bb565b92505060206133f9858286016131d0565b9150509250929050565b6000806040838503121561341a57613419613dc9565b5b6000613428858286016131bb565b92505060206134398582860161326b565b9150509250929050565b60006020828403121561345957613458613dc9565b5b6000613467848285016131e5565b91505092915050565b60006020828403121561348657613485613dc9565b5b6000613494848285016131fa565b91505092915050565b6000602082840312156134b3576134b2613dc9565b5b600082013567ffffffffffffffff8111156134d1576134d0613dc4565b5b6134dd8482850161323d565b91505092915050565b6000602082840312156134fc576134fb613dc9565b5b600061350a8482850161326b565b91505092915050565b61351c81613b3c565b82525050565b61352b81613b4e565b82525050565b600061353c826139d9565b61354681856139ef565b9350613556818560208601613bbf565b61355f81613dce565b840191505092915050565b6000613575826139e4565b61357f8185613a0b565b935061358f818560208601613bbf565b61359881613dce565b840191505092915050565b60006135ae826139e4565b6135b88185613a1c565b93506135c8818560208601613bbf565b80840191505092915050565b600081546135e181613bf2565b6135eb8186613a1c565b9450600182166000811461360657600181146136175761364a565b60ff1983168652818601935061364a565b613620856139c4565b60005b8381101561364257815481890152600182019150602081019050613623565b838801955050505b50505092915050565b6000613660602683613a0b565b915061366b82613ddf565b604082019050919050565b6000613683601783613a0b565b915061368e82613e2e565b602082019050919050565b60006136a6601683613a0b565b91506136b182613e57565b602082019050919050565b60006136c9600583613a1c565b91506136d482613e80565b600582019050919050565b60006136ec602083613a0b565b91506136f782613ea9565b602082019050919050565b600061370f601983613a0b565b915061371a82613ed2565b602082019050919050565b6000613732600083613a00565b915061373d82613efb565b600082019050919050565b6000613755601583613a0b565b915061376082613efe565b602082019050919050565b61377481613ba6565b82525050565b600061378682856135d4565b915061379282846135a3565b915061379d826136bc565b91508190509392505050565b60006137b482613725565b9150819050919050565b60006020820190506137d36000830184613513565b92915050565b60006080820190506137ee6000830187613513565b6137fb6020830186613513565b613808604083018561376b565b818103606083015261381a8184613531565b905095945050505050565b600060208201905061383a6000830184613522565b92915050565b6000602082019050818103600083015261385a818461356a565b905092915050565b6000602082019050818103600083015261387b81613653565b9050919050565b6000602082019050818103600083015261389b81613676565b9050919050565b600060208201905081810360008301526138bb81613699565b9050919050565b600060208201905081810360008301526138db816136df565b9050919050565b600060208201905081810360008301526138fb81613702565b9050919050565b6000602082019050818103600083015261391b81613748565b9050919050565b6000602082019050613937600083018461376b565b92915050565b6000613947613958565b90506139538282613c24565b919050565b6000604051905090565b600067ffffffffffffffff82111561397d5761397c613d8b565b5b61398682613dce565b9050602081019050919050565b600067ffffffffffffffff8211156139ae576139ad613d8b565b5b6139b782613dce565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a3282613ba6565b9150613a3d83613ba6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7257613a71613ccf565b5b828201905092915050565b6000613a8882613ba6565b9150613a9383613ba6565b925082613aa357613aa2613cfe565b5b828204905092915050565b6000613ab982613ba6565b9150613ac483613ba6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613afd57613afc613ccf565b5b828202905092915050565b6000613b1382613ba6565b9150613b1e83613ba6565b925082821015613b3157613b30613ccf565b5b828203905092915050565b6000613b4782613b86565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bdd578082015181840152602081019050613bc2565b83811115613bec576000848401525b50505050565b60006002820490506001821680613c0a57607f821691505b60208210811415613c1e57613c1d613d2d565b5b50919050565b613c2d82613dce565b810181811067ffffffffffffffff82111715613c4c57613c4b613d8b565b5b80604052505050565b6000613c6082613ba6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9357613c92613ccf565b5b600182019050919050565b6000613ca982613ba6565b9150613cb483613ba6565b925082613cc457613cc3613cfe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963204d696e74204e6f7420416c6c6f776564000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c6963204d696e74204c696d6974205265616368656400000000000000600082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b613f3081613b3c565b8114613f3b57600080fd5b50565b613f4781613b4e565b8114613f5257600080fd5b50565b613f5e81613b5a565b8114613f6957600080fd5b50565b613f7581613ba6565b8114613f8057600080fd5b5056fea2646970667358221220737978219d6228f445a768a99b843d56f1102f13667117419f4aefe81fcf876564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f626166796265696174723778366779737071336c346e656a613634626b777a676574756b716c61766e7263776d6c6e776e6e713775727033377a712e697066732e6e667473746f726167652e6c696e6b2f000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://bafybeiatr7x6gyspq3l4neja64bkwzgetukqlavnrcwmlnwnnq7urp37zq.ipfs.nftstorage.link/
Arg [1] : _initNotRevealedUri (string):
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [3] : 68747470733a2f2f626166796265696174723778366779737071336c346e656a
Arg [4] : 613634626b777a676574756b716c61766e7263776d6c6e776e6e713775727033
Arg [5] : 377a712e697066732e6e667473746f726167652e6c696e6b2f00000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
110:3078:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6211:372:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8821:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;346:41:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10324:204:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;220:28:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9887:371:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3448:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11181:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5034:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;258:33:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2649:148;;;:::i;:::-;;11422:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;297:43:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4021:713:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;396:27:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2935:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2110:171;;;;;;;;;;;;;:::i;:::-;;8630:124:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;193:21:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6647:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1712:103:10;;;;;;;;;;;;;:::i;:::-;;2421:216:9;;;;;;;;;;;;;:::i;:::-;;429:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1061:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:118:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8990:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;738:867:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10600:279:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11678:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1619:352:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10950:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;476:53:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2289:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1970:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3044:134:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6211:372:3;6313:4;6365:25;6350:40;;;:11;:40;;;;:105;;;;6422:33;6407:48;;;:11;:48;;;;6350:105;:172;;;;6487:35;6472:50;;;:11;:50;;;;6350:172;:225;;;;6539:36;6563:11;6539:23;:36::i;:::-;6350:225;6330:245;;6211:372;;;:::o;8821:100::-;8875:13;8908:5;8901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8821:100;:::o;346:41:9:-;;;;:::o;10324:204:3:-;10392:7;10417:16;10425:7;10417;:16::i;:::-;10412:64;;10442:34;;;;;;;;;;;;;;10412:64;10496:15;:24;10512:7;10496:24;;;;;;;;;;;;;;;;;;;;;10489:31;;10324:204;;;:::o;220:28:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9887:371:3:-;9960:13;9976:24;9992:7;9976:15;:24::i;:::-;9960:40;;10021:5;10015:11;;:2;:11;;;10011:48;;;10035:24;;;;;;;;;;;;;;10011:48;10092:5;10076:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;10102:37;10119:5;10126:12;:10;:12::i;:::-;10102:16;:37::i;:::-;10101:38;10076:63;10072:138;;;10163:35;;;;;;;;;;;;;;10072:138;10222:28;10231:2;10235:7;10244:5;10222:8;:28::i;:::-;9949:309;9887:371;;:::o;3448:280::-;3501:7;3693:12;;;;;;;;;;;3677:13;;;;;;;;;;:28;3670:35;;;;3448:280;:::o;11181:170::-;11315:28;11325:4;11331:2;11335:7;11315:9;:28::i;:::-;11181:170;;;:::o;5034:1105::-;5123:7;5156:16;5166:5;5156:9;:16::i;:::-;5147:5;:25;5143:61;;5181:23;;;;;;;;;;;;;;5143:61;5215:22;5240:13;;;;;;;;;;;5215:38;;;;5264:19;5294:25;5495:9;5490:557;5510:14;5506:1;:18;5490:557;;;5550:31;5584:11;:14;5596:1;5584:14;;;;;;;;;;;5550:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621:9;:16;;;5617:73;;;5662:8;;;5617:73;5738:1;5712:28;;:9;:14;;;:28;;;5708:111;;5785:9;:14;;;5765:34;;5708:111;5862:5;5841:26;;:17;:26;;;5837:195;;;5911:5;5896:11;:20;5892:85;;;5952:1;5945:8;;;;;;;;;5892:85;5999:13;;;;;;;5837:195;5531:516;5490:557;5526:3;;;;;;;5490:557;;;;6123:8;;;5034:1105;;;;;:::o;258:33:9:-;;;;:::o;2649:148::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2701:9:9::1;2724:7;:5;:7::i;:::-;2716:21;;2745;2716:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700:71;;;2785:4;2777:13;;;::::0;::::1;;2694:103;2649:148::o:0;11422:185:3:-;11560:39;11577:4;11583:2;11587:7;11560:39;;;;;;;;;;;;:16;:39::i;:::-;11422:185;;;:::o;297:43:9:-;;;;:::o;4021:713:3:-;4088:7;4108:22;4133:13;;;;;;;;;;4108:38;;;;4157:19;4352:9;4347:328;4367:14;4363:1;:18;4347:328;;;4407:31;4441:11;:14;4453:1;4441:14;;;;;;;;;;;4407:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4479:9;:16;;;4474:186;;4539:5;4524:11;:20;4520:85;;;4580:1;4573:8;;;;;;;;4520:85;4627:13;;;;;;;4474:186;4388:287;4383:3;;;;;;;4347:328;;;;4703:23;;;;;;;;;;;;;;4021:713;;;;:::o;396:27:9:-;;;;;;;;;;;;;:::o;2935:101::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3019:11:9::1;3009:7;:21;;;;;;;;;;;;:::i;:::-;;2935:101:::0;:::o;2110:171::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:5:9::1;2172:17;;:8;;;;;;;;;;;:17;;;2169:106;;;2215:4;2204:8;;:15;;;;;;;;;;;;;;;;;;2169:106;;;2259:5;2248:8;;:16;;;;;;;;;;;;;;;;;;2169:106;2110:171::o:0;8630:124:3:-;8694:7;8721:20;8733:7;8721:11;:20::i;:::-;:25;;;8714:32;;8630:124;;;:::o;193:21:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6647:206:3:-;6711:7;6752:1;6735:19;;:5;:19;;;6731:60;;;6763:28;;;;;;;;;;;;;;6731:60;6817:12;:19;6830:5;6817:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6809:36;;6802:43;;6647:206;;;:::o;1712:103:10:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1777:30:::1;1804:1;1777:18;:30::i;:::-;1712:103::o:0;2421:216:9:-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2505:4:9::1;2483:26;;:18;;;;;;;;;;;:26;;;2480:148;;;2548:5;2527:18;;:26;;;;;;;;;;;;;;;;;;2480:148;;;2607:4;2586:18;;:25;;;;;;;;;;;;;;;;;;2480:148;2421:216::o:0;429:38::-;;;;;;;;;;;;;:::o;1061:87:10:-;1107:7;1134:6;;;;;;;;;;;1127:13;;1061:87;:::o;2809:118:9:-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2905:15:9::1;2888:14;:32;;;;2809:118:::0;:::o;8990:104:3:-;9046:13;9079:7;9072:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8990:104;:::o;738:867:9:-;835:10;;823:8;807:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;799:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;903:7;:5;:7::i;:::-;889:21;;:10;:21;;;885:571;;940:18;;;;;;;;;;;932:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1044:18;;1032:8;1008:21;1018:10;1008:9;:21::i;:::-;:32;;;;:::i;:::-;:54;;1000:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;1149:1;1116:18;:30;1135:10;1116:30;;;;;;;;;;;;;;;;:34;1113:325;;;1230:8;1213:14;;:25;;;;:::i;:::-;1199:9;:40;;1191:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1113:325;;;1385:1;1376:8;:10;;;;:::i;:::-;1358:14;;:29;;;;:::i;:::-;1344:9;:44;;1336:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1113:325;885:571;1472:31;1482:10;1494:8;1472:9;:31::i;:::-;1583:8;1550:18;:30;1569:10;1550:30;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;1517:18;:30;1536:10;1517:30;;;;;;;;;;;;;;;:74;;;;738:867;:::o;10600:279:3:-;10703:12;:10;:12::i;:::-;10691:24;;:8;:24;;;10687:54;;;10724:17;;;;;;;;;;;;;;10687:54;10799:8;10754:18;:32;10773:12;:10;:12::i;:::-;10754:32;;;;;;;;;;;;;;;:42;10787:8;10754:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10852:8;10823:48;;10838:12;:10;:12::i;:::-;10823:48;;;10862:8;10823:48;;;;;;:::i;:::-;;;;;;;;10600:279;;:::o;11678:342::-;11845:28;11855:4;11861:2;11865:7;11845:9;:28::i;:::-;11889:48;11912:4;11918:2;11922:7;11931:5;11889:22;:48::i;:::-;11884:129;;11961:40;;;;;;;;;;;;;;11884:129;11678:342;;;;:::o;1619:352:9:-;1692:13;1722:16;1730:7;1722;:16::i;:::-;1717:59;;1747:29;;;;;;;;;;;;;;1717:59;1804:5;1792:17;;:8;;;;;;;;;;;:17;;;1789:64;;;1828:14;1821:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1789:64;1894:1;1875:7;1869:21;;;;;:::i;:::-;;;:26;;:95;;;;;;;;;;;;;;;;;1922:7;1931:18;:7;:16;:18::i;:::-;1905:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1869:95;1862:102;;1619:352;;;;:::o;10950:164:3:-;11047:4;11071:18;:25;11090:5;11071:25;;;;;;;;;;;;;;;:35;11097:8;11071:35;;;;;;;;;;;;;;;;;;;;;;;;;11064:42;;10950:164;;;;:::o;476:53:9:-;;;;;;;;;;;;;;;;;:::o;2289:124::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2391:15:9::1;2374:14;:32;;;;;;;;;;;;:::i;:::-;;2289:124:::0;:::o;1970:201:10:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2079:1:::1;2059:22;;:8;:22;;;;2051:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2135:28;2154:8;2135:18;:28::i;:::-;1970:201:::0;:::o;3044:134:9:-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3152:19:9::1;3131:18;:40;;;;3044:134:::0;:::o;852:157:2:-;937:4;976:25;961:40;;;:11;:40;;;;954:47;;852:157;;;:::o;12275:144:3:-;12332:4;12366:13;;;;;;;;;;;12356:23;;:7;:23;:55;;;;;12384:11;:20;12396:7;12384:20;;;;;;;;;;;:27;;;;;;;;;;;;12383:28;12356:55;12349:62;;12275:144;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;19491:196:3:-;19633:2;19606:15;:24;19622:7;19606:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19671:7;19667:2;19651:28;;19660:5;19651:28;;;;;;;;;;;;19491:196;;;:::o;14992:2112::-;15107:35;15145:20;15157:7;15145:11;:20::i;:::-;15107:58;;15178:22;15220:13;:18;;;15204:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15255:50;15272:13;:18;;;15292:12;:10;:12::i;:::-;15255:16;:50::i;:::-;15204:101;:154;;;;15346:12;:10;:12::i;:::-;15322:36;;:20;15334:7;15322:11;:20::i;:::-;:36;;;15204:154;15178:181;;15377:17;15372:66;;15403:35;;;;;;;;;;;;;;15372:66;15475:4;15453:26;;:13;:18;;;:26;;;15449:67;;15488:28;;;;;;;;;;;;;;15449:67;15545:1;15531:16;;:2;:16;;;15527:52;;;15556:23;;;;;;;;;;;;;;15527:52;15592:43;15614:4;15620:2;15624:7;15633:1;15592:21;:43::i;:::-;15700:49;15717:1;15721:7;15730:13;:18;;;15700:8;:49::i;:::-;16075:1;16045:12;:18;16058:4;16045:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16119:1;16091:12;:16;16104:2;16091:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16165:2;16137:11;:20;16149:7;16137:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16227:15;16182:11;:20;16194:7;16182:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16495:19;16527:1;16517:7;:11;16495:33;;16588:1;16547:43;;:11;:24;16559:11;16547:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16543:445;;;16772:13;;;;;;;;;;16758:27;;:11;:27;16754:219;;;16842:13;:18;;;16810:11;:24;16822:11;16810:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16925:13;:28;;;16883:11;:24;16895:11;16883:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16754:219;16543:445;16020:979;17035:7;17031:2;17016:27;;17025:4;17016:27;;;;;;;;;;;;17054:42;17075:4;17081:2;17085:7;17094:1;17054:20;:42::i;:::-;15096:2008;;14992:2112;;;:::o;7485:1083::-;7546:21;;:::i;:::-;7580:12;7595:7;7580:22;;7651:13;;;;;;;;;;7644:20;;:4;:20;7640:861;;;7685:31;7719:11;:17;7731:4;7719:17;;;;;;;;;;;7685:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7760:9;:16;;;7755:731;;7831:1;7805:28;;:9;:14;;;:28;;;7801:101;;7869:9;7862:16;;;;;;7801:101;8206:261;8213:4;8206:261;;;8246:6;;;;;;;;8291:11;:17;8303:4;8291:17;;;;;;;;;;;8279:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8365:1;8339:28;;:9;:14;;;:28;;;8335:109;;8407:9;8400:16;;;;;;8335:109;8206:261;;;7755:731;7666:835;7640:861;8529:31;;;;;;;;;;;;;;7485:1083;;;;:::o;2331:191:10:-;2405:16;2424:6;;;;;;;;;;;2405:25;;2450:8;2441:6;;:17;;;;;;;;;;;;;;;;;;2505:8;2474:40;;2495:8;2474:40;;;;;;;;;;;;2394:128;2331:191;:::o;12427:104:3:-;12496:27;12506:2;12510:8;12496:27;;;;;;;;;;;;:9;:27::i;:::-;12427:104;;:::o;20252:790::-;20407:4;20428:15;:2;:13;;;:15::i;:::-;20424:611;;;20480:2;20464:36;;;20501:12;:10;:12::i;:::-;20515:4;20521:7;20530:5;20464:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20460:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20727:1;20710:6;:13;:18;20706:259;;;20760:40;;;;;;;;;;;;;;20706:259;20915:6;20909:13;20900:6;20896:2;20892:15;20885:38;20460:520;20597:45;;;20587:55;;;:6;:55;;;;20580:62;;;;;20424:611;21019:4;21012:11;;20252:790;;;;;;;:::o;407:723:11:-;463:13;693:1;684:5;:10;680:53;;;711:10;;;;;;;;;;;;;;;;;;;;;680:53;743:12;758:5;743:20;;774:14;799:78;814:1;806:4;:9;799:78;;832:8;;;;;:::i;:::-;;;;863:2;855:10;;;;;:::i;:::-;;;799:78;;;887:19;919:6;909:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;887:39;;937:154;953:1;944:5;:10;937:154;;981:1;971:11;;;;;:::i;:::-;;;1048:2;1040:5;:10;;;;:::i;:::-;1027:2;:24;;;;:::i;:::-;1014:39;;997:6;1004;997:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1077:2;1068:11;;;;;:::i;:::-;;;937:154;;;1115:6;1101:21;;;;;407:723;;;;:::o;21690:159:3:-;;;;;:::o;22508:158::-;;;;;:::o;12894:163::-;13017:32;13023:2;13027:8;13037:5;13044:4;13017:5;:32::i;:::-;12894:163;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;13316:1422:3:-;13455:20;13478:13;;;;;;;;;;;13455:36;;;;13520:1;13506:16;;:2;:16;;;13502:48;;;13531:19;;;;;;;;;;;;;;13502:48;13577:1;13565:8;:13;13561:44;;;13587:18;;;;;;;;;;;;;;13561:44;13618:61;13648:1;13652:2;13656:12;13670:8;13618:21;:61::i;:::-;13992:8;13957:12;:16;13970:2;13957:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14056:8;14016:12;:16;14029:2;14016:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14115:2;14082:11;:25;14094:12;14082:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14182:15;14132:11;:25;14144:12;14132:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14215:20;14238:12;14215:35;;14272:9;14267:328;14287:8;14283:1;:12;14267:328;;;14351:12;14347:2;14326:38;;14343:1;14326:38;;;;;;;;;;;;14387:4;:68;;;;;14396:59;14427:1;14431:2;14435:12;14449:5;14396:22;:59::i;:::-;14395:60;14387:68;14383:164;;;14487:40;;;;;;;;;;;;;;14383:164;14565:14;;;;;;;14297:3;;;;;;;14267:328;;;;14635:12;14611:13;;:37;;;;;;;;;;;;;;;;;;13932:728;14670:60;14699:1;14703:2;14707:12;14721:8;14670:20;:60::i;:::-;13444:1294;13316:1422;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:12:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:400::-;10667:3;10688:84;10770:1;10765:3;10688:84;:::i;:::-;10681:91;;10781:93;10870:3;10781:93;:::i;:::-;10899:1;10894:3;10890:11;10883:18;;10507:400;;;:::o;10913:366::-;11055:3;11076:67;11140:2;11135:3;11076:67;:::i;:::-;11069:74;;11152:93;11241:3;11152:93;:::i;:::-;11270:2;11265:3;11261:12;11254:19;;10913:366;;;:::o;11285:::-;11427:3;11448:67;11512:2;11507:3;11448:67;:::i;:::-;11441:74;;11524:93;11613:3;11524:93;:::i;:::-;11642:2;11637:3;11633:12;11626:19;;11285:366;;;:::o;11657:398::-;11816:3;11837:83;11918:1;11913:3;11837:83;:::i;:::-;11830:90;;11929:93;12018:3;11929:93;:::i;:::-;12047:1;12042:3;12038:11;12031:18;;11657:398;;;:::o;12061:366::-;12203:3;12224:67;12288:2;12283:3;12224:67;:::i;:::-;12217:74;;12300:93;12389:3;12300:93;:::i;:::-;12418:2;12413:3;12409:12;12402:19;;12061:366;;;:::o;12433:118::-;12520:24;12538:5;12520:24;:::i;:::-;12515:3;12508:37;12433:118;;:::o;12557:695::-;12835:3;12857:92;12945:3;12936:6;12857:92;:::i;:::-;12850:99;;12966:95;13057:3;13048:6;12966:95;:::i;:::-;12959:102;;13078:148;13222:3;13078:148;:::i;:::-;13071:155;;13243:3;13236:10;;12557:695;;;;;:::o;13258:379::-;13442:3;13464:147;13607:3;13464:147;:::i;:::-;13457:154;;13628:3;13621:10;;13258:379;;;:::o;13643:222::-;13736:4;13774:2;13763:9;13759:18;13751:26;;13787:71;13855:1;13844:9;13840:17;13831:6;13787:71;:::i;:::-;13643:222;;;;:::o;13871:640::-;14066:4;14104:3;14093:9;14089:19;14081:27;;14118:71;14186:1;14175:9;14171:17;14162:6;14118:71;:::i;:::-;14199:72;14267:2;14256:9;14252:18;14243:6;14199:72;:::i;:::-;14281;14349:2;14338:9;14334:18;14325:6;14281:72;:::i;:::-;14400:9;14394:4;14390:20;14385:2;14374:9;14370:18;14363:48;14428:76;14499:4;14490:6;14428:76;:::i;:::-;14420:84;;13871:640;;;;;;;:::o;14517:210::-;14604:4;14642:2;14631:9;14627:18;14619:26;;14655:65;14717:1;14706:9;14702:17;14693:6;14655:65;:::i;:::-;14517:210;;;;:::o;14733:313::-;14846:4;14884:2;14873:9;14869:18;14861:26;;14933:9;14927:4;14923:20;14919:1;14908:9;14904:17;14897:47;14961:78;15034:4;15025:6;14961:78;:::i;:::-;14953:86;;14733:313;;;;:::o;15052:419::-;15218:4;15256:2;15245:9;15241:18;15233:26;;15305:9;15299:4;15295:20;15291:1;15280:9;15276:17;15269:47;15333:131;15459:4;15333:131;:::i;:::-;15325:139;;15052:419;;;:::o;15477:::-;15643:4;15681:2;15670:9;15666:18;15658:26;;15730:9;15724:4;15720:20;15716:1;15705:9;15701:17;15694:47;15758:131;15884:4;15758:131;:::i;:::-;15750:139;;15477:419;;;:::o;15902:::-;16068:4;16106:2;16095:9;16091:18;16083:26;;16155:9;16149:4;16145:20;16141:1;16130:9;16126:17;16119:47;16183:131;16309:4;16183:131;:::i;:::-;16175:139;;15902:419;;;:::o;16327:::-;16493:4;16531:2;16520:9;16516:18;16508:26;;16580:9;16574:4;16570:20;16566:1;16555:9;16551:17;16544:47;16608:131;16734:4;16608:131;:::i;:::-;16600:139;;16327:419;;;:::o;16752:::-;16918:4;16956:2;16945:9;16941:18;16933:26;;17005:9;16999:4;16995:20;16991:1;16980:9;16976:17;16969:47;17033:131;17159:4;17033:131;:::i;:::-;17025:139;;16752:419;;;:::o;17177:::-;17343:4;17381:2;17370:9;17366:18;17358:26;;17430:9;17424:4;17420:20;17416:1;17405:9;17401:17;17394:47;17458:131;17584:4;17458:131;:::i;:::-;17450:139;;17177:419;;;:::o;17602:222::-;17695:4;17733:2;17722:9;17718:18;17710:26;;17746:71;17814:1;17803:9;17799:17;17790:6;17746:71;:::i;:::-;17602:222;;;;:::o;17830:129::-;17864:6;17891:20;;:::i;:::-;17881:30;;17920:33;17948:4;17940:6;17920:33;:::i;:::-;17830:129;;;:::o;17965:75::-;17998:6;18031:2;18025:9;18015:19;;17965:75;:::o;18046:307::-;18107:4;18197:18;18189:6;18186:30;18183:56;;;18219:18;;:::i;:::-;18183:56;18257:29;18279:6;18257:29;:::i;:::-;18249:37;;18341:4;18335;18331:15;18323:23;;18046:307;;;:::o;18359:308::-;18421:4;18511:18;18503:6;18500:30;18497:56;;;18533:18;;:::i;:::-;18497:56;18571:29;18593:6;18571:29;:::i;:::-;18563:37;;18655:4;18649;18645:15;18637:23;;18359:308;;;:::o;18673:141::-;18722:4;18745:3;18737:11;;18768:3;18765:1;18758:14;18802:4;18799:1;18789:18;18781:26;;18673:141;;;:::o;18820:98::-;18871:6;18905:5;18899:12;18889:22;;18820:98;;;:::o;18924:99::-;18976:6;19010:5;19004:12;18994:22;;18924:99;;;:::o;19029:168::-;19112:11;19146:6;19141:3;19134:19;19186:4;19181:3;19177:14;19162:29;;19029:168;;;;:::o;19203:147::-;19304:11;19341:3;19326:18;;19203:147;;;;:::o;19356:169::-;19440:11;19474:6;19469:3;19462:19;19514:4;19509:3;19505:14;19490:29;;19356:169;;;;:::o;19531:148::-;19633:11;19670:3;19655:18;;19531:148;;;;:::o;19685:305::-;19725:3;19744:20;19762:1;19744:20;:::i;:::-;19739:25;;19778:20;19796:1;19778:20;:::i;:::-;19773:25;;19932:1;19864:66;19860:74;19857:1;19854:81;19851:107;;;19938:18;;:::i;:::-;19851:107;19982:1;19979;19975:9;19968:16;;19685:305;;;;:::o;19996:185::-;20036:1;20053:20;20071:1;20053:20;:::i;:::-;20048:25;;20087:20;20105:1;20087:20;:::i;:::-;20082:25;;20126:1;20116:35;;20131:18;;:::i;:::-;20116:35;20173:1;20170;20166:9;20161:14;;19996:185;;;;:::o;20187:348::-;20227:7;20250:20;20268:1;20250:20;:::i;:::-;20245:25;;20284:20;20302:1;20284:20;:::i;:::-;20279:25;;20472:1;20404:66;20400:74;20397:1;20394:81;20389:1;20382:9;20375:17;20371:105;20368:131;;;20479:18;;:::i;:::-;20368:131;20527:1;20524;20520:9;20509:20;;20187:348;;;;:::o;20541:191::-;20581:4;20601:20;20619:1;20601:20;:::i;:::-;20596:25;;20635:20;20653:1;20635:20;:::i;:::-;20630:25;;20674:1;20671;20668:8;20665:34;;;20679:18;;:::i;:::-;20665:34;20724:1;20721;20717:9;20709:17;;20541:191;;;;:::o;20738:96::-;20775:7;20804:24;20822:5;20804:24;:::i;:::-;20793:35;;20738:96;;;:::o;20840:90::-;20874:7;20917:5;20910:13;20903:21;20892:32;;20840:90;;;:::o;20936:149::-;20972:7;21012:66;21005:5;21001:78;20990:89;;20936:149;;;:::o;21091:126::-;21128:7;21168:42;21161:5;21157:54;21146:65;;21091:126;;;:::o;21223:77::-;21260:7;21289:5;21278:16;;21223:77;;;:::o;21306:154::-;21390:6;21385:3;21380;21367:30;21452:1;21443:6;21438:3;21434:16;21427:27;21306:154;;;:::o;21466:307::-;21534:1;21544:113;21558:6;21555:1;21552:13;21544:113;;;21643:1;21638:3;21634:11;21628:18;21624:1;21619:3;21615:11;21608:39;21580:2;21577:1;21573:10;21568:15;;21544:113;;;21675:6;21672:1;21669:13;21666:101;;;21755:1;21746:6;21741:3;21737:16;21730:27;21666:101;21515:258;21466:307;;;:::o;21779:320::-;21823:6;21860:1;21854:4;21850:12;21840:22;;21907:1;21901:4;21897:12;21928:18;21918:81;;21984:4;21976:6;21972:17;21962:27;;21918:81;22046:2;22038:6;22035:14;22015:18;22012:38;22009:84;;;22065:18;;:::i;:::-;22009:84;21830:269;21779:320;;;:::o;22105:281::-;22188:27;22210:4;22188:27;:::i;:::-;22180:6;22176:40;22318:6;22306:10;22303:22;22282:18;22270:10;22267:34;22264:62;22261:88;;;22329:18;;:::i;:::-;22261:88;22369:10;22365:2;22358:22;22148:238;22105:281;;:::o;22392:233::-;22431:3;22454:24;22472:5;22454:24;:::i;:::-;22445:33;;22500:66;22493:5;22490:77;22487:103;;;22570:18;;:::i;:::-;22487:103;22617:1;22610:5;22606:13;22599:20;;22392:233;;;:::o;22631:176::-;22663:1;22680:20;22698:1;22680:20;:::i;:::-;22675:25;;22714:20;22732:1;22714:20;:::i;:::-;22709:25;;22753:1;22743:35;;22758:18;;:::i;:::-;22743:35;22799:1;22796;22792:9;22787:14;;22631:176;;;;:::o;22813:180::-;22861:77;22858:1;22851:88;22958:4;22955:1;22948:15;22982:4;22979:1;22972:15;22999:180;23047:77;23044:1;23037:88;23144:4;23141:1;23134:15;23168:4;23165:1;23158:15;23185:180;23233:77;23230:1;23223:88;23330:4;23327:1;23320:15;23354:4;23351:1;23344:15;23371:180;23419:77;23416:1;23409:88;23516:4;23513:1;23506:15;23540:4;23537:1;23530:15;23557:180;23605:77;23602:1;23595:88;23702:4;23699:1;23692:15;23726:4;23723:1;23716:15;23743:117;23852:1;23849;23842:12;23866:117;23975:1;23972;23965:12;23989:117;24098:1;24095;24088:12;24112:117;24221:1;24218;24211:12;24235:102;24276:6;24327:2;24323:7;24318:2;24311:5;24307:14;24303:28;24293:38;;24235:102;;;:::o;24343:225::-;24483:34;24479:1;24471:6;24467:14;24460:58;24552:8;24547:2;24539:6;24535:15;24528:33;24343:225;:::o;24574:173::-;24714:25;24710:1;24702:6;24698:14;24691:49;24574:173;:::o;24753:172::-;24893:24;24889:1;24881:6;24877:14;24870:48;24753:172;:::o;24931:155::-;25071:7;25067:1;25059:6;25055:14;25048:31;24931:155;:::o;25092:182::-;25232:34;25228:1;25220:6;25216:14;25209:58;25092:182;:::o;25280:175::-;25420:27;25416:1;25408:6;25404:14;25397:51;25280:175;:::o;25461:114::-;;:::o;25581:171::-;25721:23;25717:1;25709:6;25705:14;25698:47;25581:171;:::o;25758:122::-;25831:24;25849:5;25831:24;:::i;:::-;25824:5;25821:35;25811:63;;25870:1;25867;25860:12;25811:63;25758:122;:::o;25886:116::-;25956:21;25971:5;25956:21;:::i;:::-;25949:5;25946:32;25936:60;;25992:1;25989;25982:12;25936:60;25886:116;:::o;26008:120::-;26080:23;26097:5;26080:23;:::i;:::-;26073:5;26070:34;26060:62;;26118:1;26115;26108:12;26060:62;26008:120;:::o;26134:122::-;26207:24;26225:5;26207:24;:::i;:::-;26200:5;26197:35;26187:63;;26246:1;26243;26236:12;26187:63;26134:122;:::o
Swarm Source
ipfs://737978219d6228f445a768a99b843d56f1102f13667117419f4aefe81fcf8765
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.