Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,145 Pi Dao NFT
Holders
174
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 Pi Dao NFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PiDAOClub
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "./ERC721A.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; import "./Strings.sol"; contract PiDAOClub is ERC721A, Ownable { using Strings for uint256; using SafeMath for uint256; uint256 public cost = 0.0025 ether; uint256 public maxMintAmount = 20; uint256 public maxPerTxFree = 5; uint256 public maxSupply = 3333; uint256 public freeMintAmount = 2000; bool public paused = true; string public constant baseExtension = ".json"; string public baseURI = "https://gateway.pinata.cloud/ipfs/Qme4cZU1QZsLgvqhZhyoB19Z7zJydBKrTp9tNSGatf3Lwc/"; error freeMintIsOver(); constructor() ERC721A("Pi DAO Club", "Pi Dao NFT") {} function mint(uint256 _amount) external payable { address _caller = _msgSender(); require(!paused, "Contract Paused."); require(maxSupply >= totalSupply() + _amount, "Minting would exceed maxSupply."); require(_amount > 0, "Must mint at least one token."); require(maxMintAmount >= _amount , "Must mint less than maxMintAmount."); if(freeMintAmount >= totalSupply()){ require(maxPerTxFree >= _amount , "Minting would exceed maxPerTxFree."); }else{ require(maxMintAmount >= _amount , "Minting would exceed maxMintAmount."); require(_amount * cost == msg.value, "Insufficient value."); } _safeMint(_caller, _amount); } function devMint(uint256 _number) external onlyOwner { require(totalSupply() + _number <= maxSupply, "Minting would exceed maxSupply."); _safeMint(_msgSender(), _number); } function setMaxFreeMint(uint256 _max) public onlyOwner { freeMintAmount = _max; } function setMaxPaidPerTx(uint256 _max) public onlyOwner { maxMintAmount = _max; } function setMaxFreePerTx(uint256 _max) public onlyOwner { maxPerTxFree = _max; } function setMaxSupply(uint256 _max) public onlyOwner { maxSupply = _max; } function _startTokenId() internal override view virtual returns (uint256) { return 1; } function minted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Failed to withdraw Ether"); } function withdraw() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Insufficent balance"); _withdraw(_msgSender(), address(this).balance); } function setCost(uint256 _cost) external onlyOwner { cost = _cost; } function setPause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "URI does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension)) : ""; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 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 MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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 extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { 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; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 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_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).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); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * 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 (_startTokenId() <= curr && 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 virtual 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 (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_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 > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 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; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev 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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev 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 contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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)) } } } } /** * @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 v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// 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 v4.4.1 (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 `IERC721.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 v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"freeMintIsOver","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPaidPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526608e1bc9bf040006009556014600a556005600b55610d05600c556107d0600d556001600e60006101000a81548160ff0219169083151502179055506040518060800160405280605181526020016200420160519139600f90805190602001906200007192919062000233565b503480156200007f57600080fd5b506040518060400160405280600b81526020017f50692044414f20436c75620000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f50692044616f204e46540000000000000000000000000000000000000000000081525081600290805190602001906200010492919062000233565b5080600390805190602001906200011d92919062000233565b506200012e6200015c60201b60201c565b6000819055505050620001566200014a6200016560201b60201c565b6200016d60201b60201c565b62000348565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002419062000312565b90600052602060002090601f016020900481019282620002655760008555620002b1565b82601f106200028057805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b057825182559160200191906001019062000293565b5b509050620002c09190620002c4565b5090565b5b80821115620002df576000816000905550600101620002c5565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032b57607f821691505b60208210811415620003425762000341620002e3565b5b50919050565b613ea980620003586000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a0712d68116100a0578063c66828621161006f578063c668286214610752578063c87b56dd1461077d578063d5abeb01146107ba578063e985e9c5146107e5578063f2fde38b146108225761020f565b8063a0712d68146106bb578063a22cb465146106d7578063b88d4fde14610700578063bedb86fb146107295761020f565b8063715018a6116100e7578063715018a6146105fa578063742a4c9b146106115780638da5cb5b1461063a57806395d89b4114610665578063980a70d2146106905761020f565b80636352211e1461052c5780636c0360eb146105695780636f8b44b01461059457806370a08231146105bd5761020f565b806323b872dd1161019b57806340f070a81161016a57806340f070a81461045d57806342842e0e1461048657806344a0d68a146104af57806355f804b3146104d85780635c975abb146105015761020f565b806323b872dd146103c9578063375a069a146103f25780633a467e3d1461041b5780633ccfd60b146104465761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd146103365780631e7269c514610361578063239c70ae1461039e5761020f565b806301ffc9a71461021457806306fdde031461025157806307d363671461027c578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612db6565b61084b565b6040516102489190612dfe565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b6040516102739190612eb2565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f0a565b6109bf565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190612f0a565b610a45565b6040516102d99190612f78565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612fbf565b610ac1565b005b34801561031757600080fd5b50610320610bcc565b60405161032d919061300e565b60405180910390f35b34801561034257600080fd5b5061034b610bd2565b604051610358919061300e565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190613029565b610be9565b604051610395919061300e565b60405180910390f35b3480156103aa57600080fd5b506103b3610bfb565b6040516103c0919061300e565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190613056565b610c01565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612f0a565b610c11565b005b34801561042757600080fd5b50610430610cf8565b60405161043d919061300e565b60405180910390f35b34801561045257600080fd5b5061045b610cfe565b005b34801561046957600080fd5b50610484600480360381019061047f9190612f0a565b610dd6565b005b34801561049257600080fd5b506104ad60048036038101906104a89190613056565b610e5c565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190612f0a565b610e7c565b005b3480156104e457600080fd5b506104ff60048036038101906104fa91906131de565b610f02565b005b34801561050d57600080fd5b50610516610f98565b6040516105239190612dfe565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190612f0a565b610fab565b6040516105609190612f78565b60405180910390f35b34801561057557600080fd5b5061057e610fc1565b60405161058b9190612eb2565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190612f0a565b61104f565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613029565b6110d5565b6040516105f1919061300e565b60405180910390f35b34801561060657600080fd5b5061060f6111a5565b005b34801561061d57600080fd5b5061063860048036038101906106339190612f0a565b61122d565b005b34801561064657600080fd5b5061064f6112b3565b60405161065c9190612f78565b60405180910390f35b34801561067157600080fd5b5061067a6112dd565b6040516106879190612eb2565b60405180910390f35b34801561069c57600080fd5b506106a561136f565b6040516106b2919061300e565b60405180910390f35b6106d560048036038101906106d09190612f0a565b611375565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190613253565b6115ad565b005b34801561070c57600080fd5b5061072760048036038101906107229190613334565b611725565b005b34801561073557600080fd5b50610750600480360381019061074b91906133b7565b6117a1565b005b34801561075e57600080fd5b5061076761183a565b6040516107749190612eb2565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612f0a565b611873565b6040516107b19190612eb2565b60405180910390f35b3480156107c657600080fd5b506107cf611952565b6040516107dc919061300e565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906133e4565b611958565b6040516108199190612dfe565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190613029565b6119ec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611ae4565b5b9050919050565b60606002805461093c90613453565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613453565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b6109c7611b4e565b73ffffffffffffffffffffffffffffffffffffffff166109e56112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906134d1565b60405180910390fd5b80600a8190555050565b6000610a5082611b56565b610a86576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acc82610fab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b34576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b53611b4e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b855750610b8381610b7e611b4e565b611958565b155b15610bbc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bc7838383611ba4565b505050565b60095481565b6000610bdc611c56565b6001546000540303905090565b6000610bf482611c5f565b9050919050565b600a5481565b610c0c838383611cc9565b505050565b610c19611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610c376112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906134d1565b60405180910390fd5b600c5481610c99610bd2565b610ca39190613520565b1115610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906135c2565b60405180910390fd5b610cf5610cef611b4e565b8261217f565b50565b600d5481565b610d06611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610d246112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906134d1565b60405180910390fd5b600047905060008111610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db99061362e565b60405180910390fd5b610dd3610dcd611b4e565b4761219d565b50565b610dde611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610dfc6112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e49906134d1565b60405180910390fd5b80600b8190555050565b610e7783838360405180602001604052806000815250611725565b505050565b610e84611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610ea26112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef906134d1565b60405180910390fd5b8060098190555050565b610f0a611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610f286112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f75906134d1565b60405180910390fd5b80600f9080519060200190610f94929190612c64565b5050565b600e60009054906101000a900460ff1681565b6000610fb68261224e565b600001519050919050565b600f8054610fce90613453565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffa90613453565b80156110475780601f1061101c57610100808354040283529160200191611047565b820191906000526020600020905b81548152906001019060200180831161102a57829003601f168201915b505050505081565b611057611b4e565b73ffffffffffffffffffffffffffffffffffffffff166110756112b3565b73ffffffffffffffffffffffffffffffffffffffff16146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c2906134d1565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111ad611b4e565b73ffffffffffffffffffffffffffffffffffffffff166111cb6112b3565b73ffffffffffffffffffffffffffffffffffffffff1614611221576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611218906134d1565b60405180910390fd5b61122b60006124dd565b565b611235611b4e565b73ffffffffffffffffffffffffffffffffffffffff166112536112b3565b73ffffffffffffffffffffffffffffffffffffffff16146112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a0906134d1565b60405180910390fd5b80600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112ec90613453565b80601f016020809104026020016040519081016040528092919081815260200182805461131890613453565b80156113655780601f1061133a57610100808354040283529160200191611365565b820191906000526020600020905b81548152906001019060200180831161134857829003601f168201915b5050505050905090565b600b5481565b600061137f611b4e565b9050600e60009054906101000a900460ff16156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c89061369a565b60405180910390fd5b816113da610bd2565b6113e49190613520565b600c541015611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f906135c2565b60405180910390fd5b6000821161146b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146290613706565b60405180910390fd5b81600a5410156114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790613798565b60405180910390fd5b6114b8610bd2565b600d541061150a5781600b541015611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc9061382a565b60405180910390fd5b61159f565b81600a54101561154f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611546906138bc565b60405180910390fd5b346009548361155e91906138dc565b1461159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590613982565b60405180910390fd5b5b6115a9818361217f565b5050565b6115b5611b4e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561161a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611627611b4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d4611b4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117199190612dfe565b60405180910390a35050565b611730848484611cc9565b61174f8373ffffffffffffffffffffffffffffffffffffffff166125a3565b80156117645750611762848484846125c6565b155b1561179b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6117a9611b4e565b73ffffffffffffffffffffffffffffffffffffffff166117c76112b3565b73ffffffffffffffffffffffffffffffffffffffff161461181d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611814906134d1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061187e82611b56565b6118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906139ee565b60405180910390fd5b6000600f80546118cc90613453565b9050116118e8576040518060200160405280600081525061194b565b600f6118f383612717565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161193b93929190613ade565b6040516020818303038152906040525b9050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119f4611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611a126112b3565b73ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906134d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613b81565b60405180910390fd5b611ae1816124dd565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611b61611c56565b11158015611b70575060005482105b8015611b9d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611cd48261224e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d3f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d60611b4e565b73ffffffffffffffffffffffffffffffffffffffff161480611d8f5750611d8e85611d89611b4e565b611958565b5b80611dd45750611d9d611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611dbc84610a45565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e0d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e74576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e818585856001612878565b611e8d60008487611ba4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561210d57600054821461210c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612178858585600161287e565b5050505050565b612199828260405180602001604052806000815250612884565b5050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121c390613bd2565b60006040518083038185875af1925050503d8060008114612200576040519150601f19603f3d011682016040523d82523d6000602084013e612205565b606091505b5050905080612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224090613c33565b60405180910390fd5b505050565b612256612cea565b600082905080612264611c56565b11158015612273575060005481105b156124a6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124a457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123885780925050506124d8565b5b6001156124a357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461249e5780925050506124d8565b612389565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ec611b4e565b8786866040518563ffffffff1660e01b815260040161260e9493929190613ca8565b6020604051808303816000875af192505050801561264a57506040513d601f19601f820116820180604052508101906126479190613d09565b60015b6126c4573d806000811461267a576040519150601f19603f3d011682016040523d82523d6000602084013e61267f565b606091505b506000815114156126bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561275f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612873565b600082905060005b6000821461279157808061277a90613d36565b915050600a8261278a9190613dae565b9150612767565b60008167ffffffffffffffff8111156127ad576127ac6130b3565b5b6040519080825280601f01601f1916602001820160405280156127df5781602001600182028036833780820191505090505b5090505b6000851461286c576001826127f89190613ddf565b9150600a856128079190613e13565b60306128139190613520565b60f81b81838151811061282957612828613e44565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128659190613dae565b94506127e3565b8093505050505b919050565b50505050565b50505050565b6128918383836001612896565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612903576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561293e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61294b6000868387612878565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b155750612b148773ffffffffffffffffffffffffffffffffffffffff166125a3565b5b15612bdb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8a60008884806001019550886125c6565b612bc0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b1b578260005414612bd657600080fd5b612c47565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612bdc575b816000819055505050612c5d600086838761287e565b5050505050565b828054612c7090613453565b90600052602060002090601f016020900481019282612c925760008555612cd9565b82601f10612cab57805160ff1916838001178555612cd9565b82800160010185558215612cd9579182015b82811115612cd8578251825591602001919060010190612cbd565b5b509050612ce69190612d2d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d46576000816000905550600101612d2e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9381612d5e565b8114612d9e57600080fd5b50565b600081359050612db081612d8a565b92915050565b600060208284031215612dcc57612dcb612d54565b5b6000612dda84828501612da1565b91505092915050565b60008115159050919050565b612df881612de3565b82525050565b6000602082019050612e136000830184612def565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e53578082015181840152602081019050612e38565b83811115612e62576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e8482612e19565b612e8e8185612e24565b9350612e9e818560208601612e35565b612ea781612e68565b840191505092915050565b60006020820190508181036000830152612ecc8184612e79565b905092915050565b6000819050919050565b612ee781612ed4565b8114612ef257600080fd5b50565b600081359050612f0481612ede565b92915050565b600060208284031215612f2057612f1f612d54565b5b6000612f2e84828501612ef5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6282612f37565b9050919050565b612f7281612f57565b82525050565b6000602082019050612f8d6000830184612f69565b92915050565b612f9c81612f57565b8114612fa757600080fd5b50565b600081359050612fb981612f93565b92915050565b60008060408385031215612fd657612fd5612d54565b5b6000612fe485828601612faa565b9250506020612ff585828601612ef5565b9150509250929050565b61300881612ed4565b82525050565b60006020820190506130236000830184612fff565b92915050565b60006020828403121561303f5761303e612d54565b5b600061304d84828501612faa565b91505092915050565b60008060006060848603121561306f5761306e612d54565b5b600061307d86828701612faa565b935050602061308e86828701612faa565b925050604061309f86828701612ef5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130eb82612e68565b810181811067ffffffffffffffff8211171561310a576131096130b3565b5b80604052505050565b600061311d612d4a565b905061312982826130e2565b919050565b600067ffffffffffffffff821115613149576131486130b3565b5b61315282612e68565b9050602081019050919050565b82818337600083830152505050565b600061318161317c8461312e565b613113565b90508281526020810184848401111561319d5761319c6130ae565b5b6131a884828561315f565b509392505050565b600082601f8301126131c5576131c46130a9565b5b81356131d584826020860161316e565b91505092915050565b6000602082840312156131f4576131f3612d54565b5b600082013567ffffffffffffffff81111561321257613211612d59565b5b61321e848285016131b0565b91505092915050565b61323081612de3565b811461323b57600080fd5b50565b60008135905061324d81613227565b92915050565b6000806040838503121561326a57613269612d54565b5b600061327885828601612faa565b92505060206132898582860161323e565b9150509250929050565b600067ffffffffffffffff8211156132ae576132ad6130b3565b5b6132b782612e68565b9050602081019050919050565b60006132d76132d284613293565b613113565b9050828152602081018484840111156132f3576132f26130ae565b5b6132fe84828561315f565b509392505050565b600082601f83011261331b5761331a6130a9565b5b813561332b8482602086016132c4565b91505092915050565b6000806000806080858703121561334e5761334d612d54565b5b600061335c87828801612faa565b945050602061336d87828801612faa565b935050604061337e87828801612ef5565b925050606085013567ffffffffffffffff81111561339f5761339e612d59565b5b6133ab87828801613306565b91505092959194509250565b6000602082840312156133cd576133cc612d54565b5b60006133db8482850161323e565b91505092915050565b600080604083850312156133fb576133fa612d54565b5b600061340985828601612faa565b925050602061341a85828601612faa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061346b57607f821691505b6020821081141561347f5761347e613424565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134bb602083612e24565b91506134c682613485565b602082019050919050565b600060208201905081810360008301526134ea816134ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061352b82612ed4565b915061353683612ed4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561356b5761356a6134f1565b5b828201905092915050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c792e00600082015250565b60006135ac601f83612e24565b91506135b782613576565b602082019050919050565b600060208201905081810360008301526135db8161359f565b9050919050565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b6000613618601383612e24565b9150613623826135e2565b602082019050919050565b600060208201905081810360008301526136478161360b565b9050919050565b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b6000613684601083612e24565b915061368f8261364e565b602082019050919050565b600060208201905081810360008301526136b381613677565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e2e000000600082015250565b60006136f0601d83612e24565b91506136fb826136ba565b602082019050919050565b6000602082019050818103600083015261371f816136e3565b9050919050565b7f4d757374206d696e74206c657373207468616e206d61784d696e74416d6f756e60008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613782602283612e24565b915061378d82613726565b604082019050919050565b600060208201905081810360008301526137b181613775565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d6178506572547846726560008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613814602283612e24565b915061381f826137b8565b604082019050919050565b6000602082019050818103600083015261384381613807565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d61784d696e74416d6f7560008201527f6e742e0000000000000000000000000000000000000000000000000000000000602082015250565b60006138a6602383612e24565b91506138b18261384a565b604082019050919050565b600060208201905081810360008301526138d581613899565b9050919050565b60006138e782612ed4565b91506138f283612ed4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392b5761392a6134f1565b5b828202905092915050565b7f496e73756666696369656e742076616c75652e00000000000000000000000000600082015250565b600061396c601383612e24565b915061397782613936565b602082019050919050565b6000602082019050818103600083015261399b8161395f565b9050919050565b7f55524920646f6573206e6f742065786973742e00000000000000000000000000600082015250565b60006139d8601383612e24565b91506139e3826139a2565b602082019050919050565b60006020820190508181036000830152613a07816139cb565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613a3b81613453565b613a458186613a0e565b94506001821660008114613a605760018114613a7157613aa4565b60ff19831686528186019350613aa4565b613a7a85613a19565b60005b83811015613a9c57815481890152600182019150602081019050613a7d565b838801955050505b50505092915050565b6000613ab882612e19565b613ac28185613a0e565b9350613ad2818560208601612e35565b80840191505092915050565b6000613aea8286613a2e565b9150613af68285613aad565b9150613b028284613aad565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b6b602683612e24565b9150613b7682613b0f565b604082019050919050565b60006020820190508181036000830152613b9a81613b5e565b9050919050565b600081905092915050565b50565b6000613bbc600083613ba1565b9150613bc782613bac565b600082019050919050565b6000613bdd82613baf565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b6000613c1d601883612e24565b9150613c2882613be7565b602082019050919050565b60006020820190508181036000830152613c4c81613c10565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c7a82613c53565b613c848185613c5e565b9350613c94818560208601612e35565b613c9d81612e68565b840191505092915050565b6000608082019050613cbd6000830187612f69565b613cca6020830186612f69565b613cd76040830185612fff565b8181036060830152613ce98184613c6f565b905095945050505050565b600081519050613d0381612d8a565b92915050565b600060208284031215613d1f57613d1e612d54565b5b6000613d2d84828501613cf4565b91505092915050565b6000613d4182612ed4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d7457613d736134f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613db982612ed4565b9150613dc483612ed4565b925082613dd457613dd3613d7f565b5b828204905092915050565b6000613dea82612ed4565b9150613df583612ed4565b925082821015613e0857613e076134f1565b5b828203905092915050565b6000613e1e82612ed4565b9150613e2983612ed4565b925082613e3957613e38613d7f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212204ffa7f3538dd72ff2dc7b20dc7f6ff8251123fc363ce8cde5d3e7595ae86b3b964736f6c634300080c003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6534635a5531515a734c677671685a68796f4231395a377a4a7964424b72547039744e5347617466334c77632f
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636352211e11610118578063a0712d68116100a0578063c66828621161006f578063c668286214610752578063c87b56dd1461077d578063d5abeb01146107ba578063e985e9c5146107e5578063f2fde38b146108225761020f565b8063a0712d68146106bb578063a22cb465146106d7578063b88d4fde14610700578063bedb86fb146107295761020f565b8063715018a6116100e7578063715018a6146105fa578063742a4c9b146106115780638da5cb5b1461063a57806395d89b4114610665578063980a70d2146106905761020f565b80636352211e1461052c5780636c0360eb146105695780636f8b44b01461059457806370a08231146105bd5761020f565b806323b872dd1161019b57806340f070a81161016a57806340f070a81461045d57806342842e0e1461048657806344a0d68a146104af57806355f804b3146104d85780635c975abb146105015761020f565b806323b872dd146103c9578063375a069a146103f25780633a467e3d1461041b5780633ccfd60b146104465761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd146103365780631e7269c514610361578063239c70ae1461039e5761020f565b806301ffc9a71461021457806306fdde031461025157806307d363671461027c578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612db6565b61084b565b6040516102489190612dfe565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b6040516102739190612eb2565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f0a565b6109bf565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190612f0a565b610a45565b6040516102d99190612f78565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612fbf565b610ac1565b005b34801561031757600080fd5b50610320610bcc565b60405161032d919061300e565b60405180910390f35b34801561034257600080fd5b5061034b610bd2565b604051610358919061300e565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190613029565b610be9565b604051610395919061300e565b60405180910390f35b3480156103aa57600080fd5b506103b3610bfb565b6040516103c0919061300e565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190613056565b610c01565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612f0a565b610c11565b005b34801561042757600080fd5b50610430610cf8565b60405161043d919061300e565b60405180910390f35b34801561045257600080fd5b5061045b610cfe565b005b34801561046957600080fd5b50610484600480360381019061047f9190612f0a565b610dd6565b005b34801561049257600080fd5b506104ad60048036038101906104a89190613056565b610e5c565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190612f0a565b610e7c565b005b3480156104e457600080fd5b506104ff60048036038101906104fa91906131de565b610f02565b005b34801561050d57600080fd5b50610516610f98565b6040516105239190612dfe565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190612f0a565b610fab565b6040516105609190612f78565b60405180910390f35b34801561057557600080fd5b5061057e610fc1565b60405161058b9190612eb2565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190612f0a565b61104f565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613029565b6110d5565b6040516105f1919061300e565b60405180910390f35b34801561060657600080fd5b5061060f6111a5565b005b34801561061d57600080fd5b5061063860048036038101906106339190612f0a565b61122d565b005b34801561064657600080fd5b5061064f6112b3565b60405161065c9190612f78565b60405180910390f35b34801561067157600080fd5b5061067a6112dd565b6040516106879190612eb2565b60405180910390f35b34801561069c57600080fd5b506106a561136f565b6040516106b2919061300e565b60405180910390f35b6106d560048036038101906106d09190612f0a565b611375565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190613253565b6115ad565b005b34801561070c57600080fd5b5061072760048036038101906107229190613334565b611725565b005b34801561073557600080fd5b50610750600480360381019061074b91906133b7565b6117a1565b005b34801561075e57600080fd5b5061076761183a565b6040516107749190612eb2565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612f0a565b611873565b6040516107b19190612eb2565b60405180910390f35b3480156107c657600080fd5b506107cf611952565b6040516107dc919061300e565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906133e4565b611958565b6040516108199190612dfe565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190613029565b6119ec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611ae4565b5b9050919050565b60606002805461093c90613453565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613453565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b6109c7611b4e565b73ffffffffffffffffffffffffffffffffffffffff166109e56112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906134d1565b60405180910390fd5b80600a8190555050565b6000610a5082611b56565b610a86576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acc82610fab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b34576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b53611b4e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b855750610b8381610b7e611b4e565b611958565b155b15610bbc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bc7838383611ba4565b505050565b60095481565b6000610bdc611c56565b6001546000540303905090565b6000610bf482611c5f565b9050919050565b600a5481565b610c0c838383611cc9565b505050565b610c19611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610c376112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906134d1565b60405180910390fd5b600c5481610c99610bd2565b610ca39190613520565b1115610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906135c2565b60405180910390fd5b610cf5610cef611b4e565b8261217f565b50565b600d5481565b610d06611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610d246112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906134d1565b60405180910390fd5b600047905060008111610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db99061362e565b60405180910390fd5b610dd3610dcd611b4e565b4761219d565b50565b610dde611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610dfc6112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e49906134d1565b60405180910390fd5b80600b8190555050565b610e7783838360405180602001604052806000815250611725565b505050565b610e84611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610ea26112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef906134d1565b60405180910390fd5b8060098190555050565b610f0a611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610f286112b3565b73ffffffffffffffffffffffffffffffffffffffff1614610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f75906134d1565b60405180910390fd5b80600f9080519060200190610f94929190612c64565b5050565b600e60009054906101000a900460ff1681565b6000610fb68261224e565b600001519050919050565b600f8054610fce90613453565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffa90613453565b80156110475780601f1061101c57610100808354040283529160200191611047565b820191906000526020600020905b81548152906001019060200180831161102a57829003601f168201915b505050505081565b611057611b4e565b73ffffffffffffffffffffffffffffffffffffffff166110756112b3565b73ffffffffffffffffffffffffffffffffffffffff16146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c2906134d1565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111ad611b4e565b73ffffffffffffffffffffffffffffffffffffffff166111cb6112b3565b73ffffffffffffffffffffffffffffffffffffffff1614611221576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611218906134d1565b60405180910390fd5b61122b60006124dd565b565b611235611b4e565b73ffffffffffffffffffffffffffffffffffffffff166112536112b3565b73ffffffffffffffffffffffffffffffffffffffff16146112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a0906134d1565b60405180910390fd5b80600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112ec90613453565b80601f016020809104026020016040519081016040528092919081815260200182805461131890613453565b80156113655780601f1061133a57610100808354040283529160200191611365565b820191906000526020600020905b81548152906001019060200180831161134857829003601f168201915b5050505050905090565b600b5481565b600061137f611b4e565b9050600e60009054906101000a900460ff16156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c89061369a565b60405180910390fd5b816113da610bd2565b6113e49190613520565b600c541015611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f906135c2565b60405180910390fd5b6000821161146b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146290613706565b60405180910390fd5b81600a5410156114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790613798565b60405180910390fd5b6114b8610bd2565b600d541061150a5781600b541015611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc9061382a565b60405180910390fd5b61159f565b81600a54101561154f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611546906138bc565b60405180910390fd5b346009548361155e91906138dc565b1461159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590613982565b60405180910390fd5b5b6115a9818361217f565b5050565b6115b5611b4e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561161a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611627611b4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d4611b4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117199190612dfe565b60405180910390a35050565b611730848484611cc9565b61174f8373ffffffffffffffffffffffffffffffffffffffff166125a3565b80156117645750611762848484846125c6565b155b1561179b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6117a9611b4e565b73ffffffffffffffffffffffffffffffffffffffff166117c76112b3565b73ffffffffffffffffffffffffffffffffffffffff161461181d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611814906134d1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061187e82611b56565b6118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906139ee565b60405180910390fd5b6000600f80546118cc90613453565b9050116118e8576040518060200160405280600081525061194b565b600f6118f383612717565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161193b93929190613ade565b6040516020818303038152906040525b9050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119f4611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611a126112b3565b73ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906134d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613b81565b60405180910390fd5b611ae1816124dd565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611b61611c56565b11158015611b70575060005482105b8015611b9d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611cd48261224e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d3f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d60611b4e565b73ffffffffffffffffffffffffffffffffffffffff161480611d8f5750611d8e85611d89611b4e565b611958565b5b80611dd45750611d9d611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611dbc84610a45565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e0d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e74576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e818585856001612878565b611e8d60008487611ba4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561210d57600054821461210c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612178858585600161287e565b5050505050565b612199828260405180602001604052806000815250612884565b5050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121c390613bd2565b60006040518083038185875af1925050503d8060008114612200576040519150601f19603f3d011682016040523d82523d6000602084013e612205565b606091505b5050905080612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224090613c33565b60405180910390fd5b505050565b612256612cea565b600082905080612264611c56565b11158015612273575060005481105b156124a6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124a457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123885780925050506124d8565b5b6001156124a357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461249e5780925050506124d8565b612389565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ec611b4e565b8786866040518563ffffffff1660e01b815260040161260e9493929190613ca8565b6020604051808303816000875af192505050801561264a57506040513d601f19601f820116820180604052508101906126479190613d09565b60015b6126c4573d806000811461267a576040519150601f19603f3d011682016040523d82523d6000602084013e61267f565b606091505b506000815114156126bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561275f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612873565b600082905060005b6000821461279157808061277a90613d36565b915050600a8261278a9190613dae565b9150612767565b60008167ffffffffffffffff8111156127ad576127ac6130b3565b5b6040519080825280601f01601f1916602001820160405280156127df5781602001600182028036833780820191505090505b5090505b6000851461286c576001826127f89190613ddf565b9150600a856128079190613e13565b60306128139190613520565b60f81b81838151811061282957612828613e44565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128659190613dae565b94506127e3565b8093505050505b919050565b50505050565b50505050565b6128918383836001612896565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612903576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561293e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61294b6000868387612878565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b155750612b148773ffffffffffffffffffffffffffffffffffffffff166125a3565b5b15612bdb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8a60008884806001019550886125c6565b612bc0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b1b578260005414612bd657600080fd5b612c47565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612bdc575b816000819055505050612c5d600086838761287e565b5050505050565b828054612c7090613453565b90600052602060002090601f016020900481019282612c925760008555612cd9565b82601f10612cab57805160ff1916838001178555612cd9565b82800160010185558215612cd9579182015b82811115612cd8578251825591602001919060010190612cbd565b5b509050612ce69190612d2d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d46576000816000905550600101612d2e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9381612d5e565b8114612d9e57600080fd5b50565b600081359050612db081612d8a565b92915050565b600060208284031215612dcc57612dcb612d54565b5b6000612dda84828501612da1565b91505092915050565b60008115159050919050565b612df881612de3565b82525050565b6000602082019050612e136000830184612def565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e53578082015181840152602081019050612e38565b83811115612e62576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e8482612e19565b612e8e8185612e24565b9350612e9e818560208601612e35565b612ea781612e68565b840191505092915050565b60006020820190508181036000830152612ecc8184612e79565b905092915050565b6000819050919050565b612ee781612ed4565b8114612ef257600080fd5b50565b600081359050612f0481612ede565b92915050565b600060208284031215612f2057612f1f612d54565b5b6000612f2e84828501612ef5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6282612f37565b9050919050565b612f7281612f57565b82525050565b6000602082019050612f8d6000830184612f69565b92915050565b612f9c81612f57565b8114612fa757600080fd5b50565b600081359050612fb981612f93565b92915050565b60008060408385031215612fd657612fd5612d54565b5b6000612fe485828601612faa565b9250506020612ff585828601612ef5565b9150509250929050565b61300881612ed4565b82525050565b60006020820190506130236000830184612fff565b92915050565b60006020828403121561303f5761303e612d54565b5b600061304d84828501612faa565b91505092915050565b60008060006060848603121561306f5761306e612d54565b5b600061307d86828701612faa565b935050602061308e86828701612faa565b925050604061309f86828701612ef5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130eb82612e68565b810181811067ffffffffffffffff8211171561310a576131096130b3565b5b80604052505050565b600061311d612d4a565b905061312982826130e2565b919050565b600067ffffffffffffffff821115613149576131486130b3565b5b61315282612e68565b9050602081019050919050565b82818337600083830152505050565b600061318161317c8461312e565b613113565b90508281526020810184848401111561319d5761319c6130ae565b5b6131a884828561315f565b509392505050565b600082601f8301126131c5576131c46130a9565b5b81356131d584826020860161316e565b91505092915050565b6000602082840312156131f4576131f3612d54565b5b600082013567ffffffffffffffff81111561321257613211612d59565b5b61321e848285016131b0565b91505092915050565b61323081612de3565b811461323b57600080fd5b50565b60008135905061324d81613227565b92915050565b6000806040838503121561326a57613269612d54565b5b600061327885828601612faa565b92505060206132898582860161323e565b9150509250929050565b600067ffffffffffffffff8211156132ae576132ad6130b3565b5b6132b782612e68565b9050602081019050919050565b60006132d76132d284613293565b613113565b9050828152602081018484840111156132f3576132f26130ae565b5b6132fe84828561315f565b509392505050565b600082601f83011261331b5761331a6130a9565b5b813561332b8482602086016132c4565b91505092915050565b6000806000806080858703121561334e5761334d612d54565b5b600061335c87828801612faa565b945050602061336d87828801612faa565b935050604061337e87828801612ef5565b925050606085013567ffffffffffffffff81111561339f5761339e612d59565b5b6133ab87828801613306565b91505092959194509250565b6000602082840312156133cd576133cc612d54565b5b60006133db8482850161323e565b91505092915050565b600080604083850312156133fb576133fa612d54565b5b600061340985828601612faa565b925050602061341a85828601612faa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061346b57607f821691505b6020821081141561347f5761347e613424565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134bb602083612e24565b91506134c682613485565b602082019050919050565b600060208201905081810360008301526134ea816134ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061352b82612ed4565b915061353683612ed4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561356b5761356a6134f1565b5b828201905092915050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c792e00600082015250565b60006135ac601f83612e24565b91506135b782613576565b602082019050919050565b600060208201905081810360008301526135db8161359f565b9050919050565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b6000613618601383612e24565b9150613623826135e2565b602082019050919050565b600060208201905081810360008301526136478161360b565b9050919050565b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b6000613684601083612e24565b915061368f8261364e565b602082019050919050565b600060208201905081810360008301526136b381613677565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e2e000000600082015250565b60006136f0601d83612e24565b91506136fb826136ba565b602082019050919050565b6000602082019050818103600083015261371f816136e3565b9050919050565b7f4d757374206d696e74206c657373207468616e206d61784d696e74416d6f756e60008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613782602283612e24565b915061378d82613726565b604082019050919050565b600060208201905081810360008301526137b181613775565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d6178506572547846726560008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613814602283612e24565b915061381f826137b8565b604082019050919050565b6000602082019050818103600083015261384381613807565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d61784d696e74416d6f7560008201527f6e742e0000000000000000000000000000000000000000000000000000000000602082015250565b60006138a6602383612e24565b91506138b18261384a565b604082019050919050565b600060208201905081810360008301526138d581613899565b9050919050565b60006138e782612ed4565b91506138f283612ed4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392b5761392a6134f1565b5b828202905092915050565b7f496e73756666696369656e742076616c75652e00000000000000000000000000600082015250565b600061396c601383612e24565b915061397782613936565b602082019050919050565b6000602082019050818103600083015261399b8161395f565b9050919050565b7f55524920646f6573206e6f742065786973742e00000000000000000000000000600082015250565b60006139d8601383612e24565b91506139e3826139a2565b602082019050919050565b60006020820190508181036000830152613a07816139cb565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613a3b81613453565b613a458186613a0e565b94506001821660008114613a605760018114613a7157613aa4565b60ff19831686528186019350613aa4565b613a7a85613a19565b60005b83811015613a9c57815481890152600182019150602081019050613a7d565b838801955050505b50505092915050565b6000613ab882612e19565b613ac28185613a0e565b9350613ad2818560208601612e35565b80840191505092915050565b6000613aea8286613a2e565b9150613af68285613aad565b9150613b028284613aad565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b6b602683612e24565b9150613b7682613b0f565b604082019050919050565b60006020820190508181036000830152613b9a81613b5e565b9050919050565b600081905092915050565b50565b6000613bbc600083613ba1565b9150613bc782613bac565b600082019050919050565b6000613bdd82613baf565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b6000613c1d601883612e24565b9150613c2882613be7565b602082019050919050565b60006020820190508181036000830152613c4c81613c10565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c7a82613c53565b613c848185613c5e565b9350613c94818560208601612e35565b613c9d81612e68565b840191505092915050565b6000608082019050613cbd6000830187612f69565b613cca6020830186612f69565b613cd76040830185612fff565b8181036060830152613ce98184613c6f565b905095945050505050565b600081519050613d0381612d8a565b92915050565b600060208284031215613d1f57613d1e612d54565b5b6000613d2d84828501613cf4565b91505092915050565b6000613d4182612ed4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d7457613d736134f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613db982612ed4565b9150613dc483612ed4565b925082613dd457613dd3613d7f565b5b828204905092915050565b6000613dea82612ed4565b9150613df583612ed4565b925082821015613e0857613e076134f1565b5b828203905092915050565b6000613e1e82612ed4565b9150613e2983612ed4565b925082613e3957613e38613d7f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212204ffa7f3538dd72ff2dc7b20dc7f6ff8251123fc363ce8cde5d3e7595ae86b3b964736f6c634300080c0033
Deployed Bytecode Sourcemap
166:3199:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4522:305:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7635:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1847:95:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9138:204:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8701:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;279:34:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3771:303:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2257:109:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;320:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10003:170:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1541:195:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;436:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2570:216;;;;;;;;;;;;;:::i;:::-;;1950:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10244:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2794:82:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2976:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;479:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7443:125:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;566:107:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2052:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4891:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:9;;;;;;;;;;;;;:::i;:::-;;1744:95:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1063:87:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7804:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;360:31:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;778:751;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9414:287:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10500:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2884:84:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;513:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3084:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;398:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9772:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4522:305:3;4624:4;4676:25;4661:40;;;:11;:40;;;;:105;;;;4733:33;4718:48;;;:11;:48;;;;4661:105;:158;;;;4783:36;4807:11;4783:23;:36::i;:::-;4661:158;4641:178;;4522:305;;;:::o;7635:100::-;7689:13;7722:5;7715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7635:100;:::o;1847:95:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1930:4:10::1;1914:13;:20;;;;1847:95:::0;:::o;9138:204:3:-;9206:7;9231:16;9239:7;9231;:16::i;:::-;9226:64;;9256:34;;;;;;;;;;;;;;9226:64;9310:15;:24;9326:7;9310:24;;;;;;;;;;;;;;;;;;;;;9303:31;;9138:204;;;:::o;8701:371::-;8774:13;8790:24;8806:7;8790:15;:24::i;:::-;8774:40;;8835:5;8829:11;;:2;:11;;;8825:48;;;8849:24;;;;;;;;;;;;;;8825:48;8906:5;8890:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;8916:37;8933:5;8940:12;:10;:12::i;:::-;8916:16;:37::i;:::-;8915:38;8890:63;8886:138;;;8977:35;;;;;;;;;;;;;;8886:138;9036:28;9045:2;9049:7;9058:5;9036:8;:28::i;:::-;8763:309;8701:371;;:::o;279:34:10:-;;;;:::o;3771:303:3:-;3815:7;4040:15;:13;:15::i;:::-;4025:12;;4009:13;;:28;:46;4002:53;;3771:303;:::o;2257:109:10:-;2310:7;2337:21;2351:6;2337:13;:21::i;:::-;2330:28;;2257:109;;;:::o;320:33::-;;;;:::o;10003:170:3:-;10137:28;10147:4;10153:2;10157:7;10137:9;:28::i;:::-;10003:170;;;:::o;1541:195:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1640:9:10::1;;1629:7;1613:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;1605:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;1696:32;1706:12;:10;:12::i;:::-;1720:7;1696:9;:32::i;:::-;1541:195:::0;:::o;436:36::-;;;;:::o;2570:216::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2618:15:10::1;2636:21;2618:39;;2686:1;2676:7;:11;2668:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;2732:46;2742:12;:10;:12::i;:::-;2756:21;2732:9;:46::i;:::-;2607:179;2570:216::o:0;1950:94::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2032:4:10::1;2017:12;:19;;;;1950:94:::0;:::o;10244:185:3:-;10382:39;10399:4;10405:2;10409:7;10382:39;;;;;;;;;;;;:16;:39::i;:::-;10244:185;;;:::o;2794:82:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2863:5:10::1;2856:4;:12;;;;2794:82:::0;:::o;2976:100::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3060:8:10::1;3050:7;:18;;;;;;;;;;;;:::i;:::-;;2976:100:::0;:::o;479:25::-;;;;;;;;;;;;;:::o;7443:125:3:-;7507:7;7534:21;7547:7;7534:12;:21::i;:::-;:26;;;7527:33;;7443:125;;;:::o;566:107:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2052:88::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2128:4:10::1;2116:9;:16;;;;2052:88:::0;:::o;4891:206:3:-;4955:7;4996:1;4979:19;;:5;:19;;;4975:60;;;5007:28;;;;;;;;;;;;;;4975:60;5061:12;:19;5074:5;5061:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;5053:36;;5046:43;;4891:206;;;:::o;1714:103:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;1744:95:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:4:10::1;1810:14;:21;;;;1744:95:::0;:::o;1063:87:9:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;7804:104:3:-;7860:13;7893:7;7886:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7804:104;:::o;360:31:10:-;;;;:::o;778:751::-;837:15;855:12;:10;:12::i;:::-;837:30;;887:6;;;;;;;;;;;886:7;878:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;962:7;946:13;:11;:13::i;:::-;:23;;;;:::i;:::-;933:9;;:36;;925:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;1034:1;1024:7;:11;1016:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;1105:7;1088:13;;:24;;1080:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;1194:13;:11;:13::i;:::-;1176:14;;:31;1173:311;;1247:7;1231:12;;:23;;1223:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1173:311;;;1350:7;1333:13;;:24;;1325:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1439:9;1431:4;;1421:7;:14;;;;:::i;:::-;:27;1413:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;1173:311;1494:27;1504:7;1513;1494:9;:27::i;:::-;826:703;778:751;:::o;9414:287:3:-;9525:12;:10;:12::i;:::-;9513:24;;:8;:24;;;9509:54;;;9546:17;;;;;;;;;;;;;;9509:54;9621:8;9576:18;:32;9595:12;:10;:12::i;:::-;9576:32;;;;;;;;;;;;;;;:42;9609:8;9576:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;9674:8;9645:48;;9660:12;:10;:12::i;:::-;9645:48;;;9684:8;9645:48;;;;;;:::i;:::-;;;;;;;;9414:287;;:::o;10500:369::-;10667:28;10677:4;10683:2;10687:7;10667:9;:28::i;:::-;10710:15;:2;:13;;;:15::i;:::-;:76;;;;;10730:56;10761:4;10767:2;10771:7;10780:5;10730:30;:56::i;:::-;10729:57;10710:76;10706:156;;;10810:40;;;;;;;;;;;;;;10706:156;10500:369;;;;:::o;2884:84:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2954:6:10::1;2945;;:15;;;;;;;;;;;;;;;;;;2884:84:::0;:::o;513:46::-;;;;;;;;;;;;;;;;;;;:::o;3084:278::-;3150:13;3184:17;3192:8;3184:7;:17::i;:::-;3176:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3267:1;3249:7;3243:21;;;;;:::i;:::-;;;:25;:111;;;;;;;;;;;;;;;;;3297:7;3306:26;3323:8;3306:16;:26::i;:::-;3334:13;;;;;;;;;;;;;;;;;3279:69;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3243:111;3236:118;;3084:278;;;:::o;398:31::-;;;;:::o;9772:164:3:-;9869:4;9893:18;:25;9912:5;9893:25;;;;;;;;;;;;;;;:35;9919:8;9893:35;;;;;;;;;;;;;;;;;;;;;;;;;9886:42;;9772:164;;;;:::o;1972:201:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;11124:187:3:-;11181:4;11224:7;11205:15;:13;:15::i;:::-;:26;;:53;;;;;11245:13;;11235:7;:23;11205:53;:98;;;;;11276:11;:20;11288:7;11276:20;;;;;;;;;;;:27;;;;;;;;;;;;11275:28;11205:98;11198:105;;11124:187;;;:::o;19294:196::-;19436:2;19409:15;:24;19425:7;19409:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19474:7;19470:2;19454:28;;19463:5;19454:28;;;;;;;;;;;;19294:196;;;:::o;2148:101:10:-;2213:7;2240:1;2233:8;;2148:101;:::o;5179:137:3:-;5240:7;5275:12;:19;5288:5;5275:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;5267:41;;5260:48;;5179:137;;;:::o;14237:2130::-;14352:35;14390:21;14403:7;14390:12;:21::i;:::-;14352:59;;14450:4;14428:26;;:13;:18;;;:26;;;14424:67;;14463:28;;;;;;;;;;;;;;14424:67;14504:22;14546:4;14530:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;14567:36;14584:4;14590:12;:10;:12::i;:::-;14567:16;:36::i;:::-;14530:73;:126;;;;14644:12;:10;:12::i;:::-;14620:36;;:20;14632:7;14620:11;:20::i;:::-;:36;;;14530:126;14504:153;;14675:17;14670:66;;14701:35;;;;;;;;;;;;;;14670:66;14765:1;14751:16;;:2;:16;;;14747:52;;;14776:23;;;;;;;;;;;;;;14747:52;14812:43;14834:4;14840:2;14844:7;14853:1;14812:21;:43::i;:::-;14920:35;14937:1;14941:7;14950:4;14920:8;:35::i;:::-;15281:1;15251:12;:18;15264:4;15251:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15325:1;15297:12;:16;15310:2;15297:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15343:31;15377:11;:20;15389:7;15377:20;;;;;;;;;;;15343:54;;15428:2;15412:8;:13;;;:18;;;;;;;;;;;;;;;;;;15478:15;15445:8;:23;;;:49;;;;;;;;;;;;;;;;;;15746:19;15778:1;15768:7;:11;15746:33;;15794:31;15828:11;:24;15840:11;15828:24;;;;;;;;;;;15794:58;;15896:1;15871:27;;:8;:13;;;;;;;;;;;;:27;;;15867:384;;;16081:13;;16066:11;:28;16062:174;;16135:4;16119:8;:13;;;:20;;;;;;;;;;;;;;;;;;16188:13;:28;;;16162:8;:23;;;:54;;;;;;;;;;;;;;;;;;16062:174;15867:384;15226:1036;;;16298:7;16294:2;16279:27;;16288:4;16279:27;;;;;;;;;;;;16317:42;16338:4;16344:2;16348:7;16357:1;16317:20;:42::i;:::-;14341:2026;;14237:2130;;;:::o;11319:104::-;11388:27;11398:2;11402:8;11388:27;;;;;;;;;;;;:9;:27::i;:::-;11319:104;;:::o;2374:188:10:-;2448:12;2466:8;:13;;2487:7;2466:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2447:52;;;2518:7;2510:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;2436:126;2374:188;;:::o;6272:1109:3:-;6334:21;;:::i;:::-;6368:12;6383:7;6368:22;;6451:4;6432:15;:13;:15::i;:::-;:23;;:47;;;;;6466:13;;6459:4;:20;6432:47;6428:886;;;6500:31;6534:11;:17;6546:4;6534:17;;;;;;;;;;;6500:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6575:9;:16;;;6570:729;;6646:1;6620:28;;:9;:14;;;:28;;;6616:101;;6684:9;6677:16;;;;;;6616:101;7019:261;7026:4;7019:261;;;7059:6;;;;;;;;7104:11;:17;7116:4;7104:17;;;;;;;;;;;7092:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7178:1;7152:28;;:9;:14;;;:28;;;7148:109;;7220:9;7213:16;;;;;;7148:109;7019:261;;;6570:729;6481:833;6428:886;7342:31;;;;;;;;;;;;;;6272:1109;;;;:::o;2333:191:9:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;19982:667:3:-;20145:4;20182:2;20166:36;;;20203:12;:10;:12::i;:::-;20217:4;20223:7;20232:5;20166:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20162:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20417:1;20400:6;:13;:18;20396:235;;;20446:40;;;;;;;;;;;;;;20396:235;20589:6;20583:13;20574:6;20570:2;20566:15;20559:38;20162:480;20295:45;;;20285:55;;;:6;:55;;;;20278:62;;;19982:667;;;;;;:::o;342:723:12:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;21297:159:3:-;;;;;:::o;22115:158::-;;;;;:::o;11786:163::-;11909:32;11915:2;11919:8;11929:5;11936:4;11909:5;:32::i;:::-;11786:163;;;:::o;12208:1775::-;12347:20;12370:13;;12347:36;;12412:1;12398:16;;:2;:16;;;12394:48;;;12423:19;;;;;;;;;;;;;;12394:48;12469:1;12457:8;:13;12453:44;;;12479:18;;;;;;;;;;;;;;12453:44;12510:61;12540:1;12544:2;12548:12;12562:8;12510:21;:61::i;:::-;12883:8;12848:12;:16;12861:2;12848:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12947:8;12907:12;:16;12920:2;12907:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13006:2;12973:11;:25;12985:12;12973:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13073:15;13023:11;:25;13035:12;13023:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13106:20;13129:12;13106:35;;13156:11;13185:8;13170:12;:23;13156:37;;13214:4;:23;;;;;13222:15;:2;:13;;;:15::i;:::-;13214:23;13210:641;;;13258:314;13314:12;13310:2;13289:38;;13306:1;13289:38;;;;;;;;;;;;13355:69;13394:1;13398:2;13402:14;;;;;;13418:5;13355:30;:69::i;:::-;13350:174;;13460:40;;;;;;;;;;;;;;13350:174;13567:3;13551:12;:19;;13258:314;;13653:12;13636:13;;:29;13632:43;;13667:8;;;13632:43;13210:641;;;13716:120;13772:14;;;;;;13768:2;13747:40;;13764:1;13747:40;;;;;;;;;;;;13831:3;13815:12;:19;;13716:120;;13210:641;13881:12;13865:13;:28;;;;12823:1082;;13915:60;13944:1;13948:2;13952:12;13966:8;13915:20;:60::i;:::-;12336:1647;12208:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:13:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:323::-;11697:6;11746:2;11734:9;11725:7;11721:23;11717:32;11714:119;;;11752:79;;:::i;:::-;11714:119;11872:1;11897:50;11939:7;11930:6;11919:9;11915:22;11897:50;:::i;:::-;11887:60;;11843:114;11641:323;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:180::-;13995:77;13992:1;13985:88;14092:4;14089:1;14082:15;14116:4;14113:1;14106:15;14133:305;14173:3;14192:20;14210:1;14192:20;:::i;:::-;14187:25;;14226:20;14244:1;14226:20;:::i;:::-;14221:25;;14380:1;14312:66;14308:74;14305:1;14302:81;14299:107;;;14386:18;;:::i;:::-;14299:107;14430:1;14427;14423:9;14416:16;;14133:305;;;;:::o;14444:181::-;14584:33;14580:1;14572:6;14568:14;14561:57;14444:181;:::o;14631:366::-;14773:3;14794:67;14858:2;14853:3;14794:67;:::i;:::-;14787:74;;14870:93;14959:3;14870:93;:::i;:::-;14988:2;14983:3;14979:12;14972:19;;14631:366;;;:::o;15003:419::-;15169:4;15207:2;15196:9;15192:18;15184:26;;15256:9;15250:4;15246:20;15242:1;15231:9;15227:17;15220:47;15284:131;15410:4;15284:131;:::i;:::-;15276:139;;15003:419;;;:::o;15428:169::-;15568:21;15564:1;15556:6;15552:14;15545:45;15428:169;:::o;15603:366::-;15745:3;15766:67;15830:2;15825:3;15766:67;:::i;:::-;15759:74;;15842:93;15931:3;15842:93;:::i;:::-;15960:2;15955:3;15951:12;15944:19;;15603:366;;;:::o;15975:419::-;16141:4;16179:2;16168:9;16164:18;16156:26;;16228:9;16222:4;16218:20;16214:1;16203:9;16199:17;16192:47;16256:131;16382:4;16256:131;:::i;:::-;16248:139;;15975:419;;;:::o;16400:166::-;16540:18;16536:1;16528:6;16524:14;16517:42;16400:166;:::o;16572:366::-;16714:3;16735:67;16799:2;16794:3;16735:67;:::i;:::-;16728:74;;16811:93;16900:3;16811:93;:::i;:::-;16929:2;16924:3;16920:12;16913:19;;16572:366;;;:::o;16944:419::-;17110:4;17148:2;17137:9;17133:18;17125:26;;17197:9;17191:4;17187:20;17183:1;17172:9;17168:17;17161:47;17225:131;17351:4;17225:131;:::i;:::-;17217:139;;16944:419;;;:::o;17369:179::-;17509:31;17505:1;17497:6;17493:14;17486:55;17369:179;:::o;17554:366::-;17696:3;17717:67;17781:2;17776:3;17717:67;:::i;:::-;17710:74;;17793:93;17882:3;17793:93;:::i;:::-;17911:2;17906:3;17902:12;17895:19;;17554:366;;;:::o;17926:419::-;18092:4;18130:2;18119:9;18115:18;18107:26;;18179:9;18173:4;18169:20;18165:1;18154:9;18150:17;18143:47;18207:131;18333:4;18207:131;:::i;:::-;18199:139;;17926:419;;;:::o;18351:221::-;18491:34;18487:1;18479:6;18475:14;18468:58;18560:4;18555:2;18547:6;18543:15;18536:29;18351:221;:::o;18578:366::-;18720:3;18741:67;18805:2;18800:3;18741:67;:::i;:::-;18734:74;;18817:93;18906:3;18817:93;:::i;:::-;18935:2;18930:3;18926:12;18919:19;;18578:366;;;:::o;18950:419::-;19116:4;19154:2;19143:9;19139:18;19131:26;;19203:9;19197:4;19193:20;19189:1;19178:9;19174:17;19167:47;19231:131;19357:4;19231:131;:::i;:::-;19223:139;;18950:419;;;:::o;19375:221::-;19515:34;19511:1;19503:6;19499:14;19492:58;19584:4;19579:2;19571:6;19567:15;19560:29;19375:221;:::o;19602:366::-;19744:3;19765:67;19829:2;19824:3;19765:67;:::i;:::-;19758:74;;19841:93;19930:3;19841:93;:::i;:::-;19959:2;19954:3;19950:12;19943:19;;19602:366;;;:::o;19974:419::-;20140:4;20178:2;20167:9;20163:18;20155:26;;20227:9;20221:4;20217:20;20213:1;20202:9;20198:17;20191:47;20255:131;20381:4;20255:131;:::i;:::-;20247:139;;19974:419;;;:::o;20399:222::-;20539:34;20535:1;20527:6;20523:14;20516:58;20608:5;20603:2;20595:6;20591:15;20584:30;20399:222;:::o;20627:366::-;20769:3;20790:67;20854:2;20849:3;20790:67;:::i;:::-;20783:74;;20866:93;20955:3;20866:93;:::i;:::-;20984:2;20979:3;20975:12;20968:19;;20627:366;;;:::o;20999:419::-;21165:4;21203:2;21192:9;21188:18;21180:26;;21252:9;21246:4;21242:20;21238:1;21227:9;21223:17;21216:47;21280:131;21406:4;21280:131;:::i;:::-;21272:139;;20999:419;;;:::o;21424:348::-;21464:7;21487:20;21505:1;21487:20;:::i;:::-;21482:25;;21521:20;21539:1;21521:20;:::i;:::-;21516:25;;21709:1;21641:66;21637:74;21634:1;21631:81;21626:1;21619:9;21612:17;21608:105;21605:131;;;21716:18;;:::i;:::-;21605:131;21764:1;21761;21757:9;21746:20;;21424:348;;;;:::o;21778:169::-;21918:21;21914:1;21906:6;21902:14;21895:45;21778:169;:::o;21953:366::-;22095:3;22116:67;22180:2;22175:3;22116:67;:::i;:::-;22109:74;;22192:93;22281:3;22192:93;:::i;:::-;22310:2;22305:3;22301:12;22294:19;;21953:366;;;:::o;22325:419::-;22491:4;22529:2;22518:9;22514:18;22506:26;;22578:9;22572:4;22568:20;22564:1;22553:9;22549:17;22542:47;22606:131;22732:4;22606:131;:::i;:::-;22598:139;;22325:419;;;:::o;22750:169::-;22890:21;22886:1;22878:6;22874:14;22867:45;22750:169;:::o;22925:366::-;23067:3;23088:67;23152:2;23147:3;23088:67;:::i;:::-;23081:74;;23164:93;23253:3;23164:93;:::i;:::-;23282:2;23277:3;23273:12;23266:19;;22925:366;;;:::o;23297:419::-;23463:4;23501:2;23490:9;23486:18;23478:26;;23550:9;23544:4;23540:20;23536:1;23525:9;23521:17;23514:47;23578:131;23704:4;23578:131;:::i;:::-;23570:139;;23297:419;;;:::o;23722:148::-;23824:11;23861:3;23846:18;;23722:148;;;;:::o;23876:141::-;23925:4;23948:3;23940:11;;23971:3;23968:1;23961:14;24005:4;24002:1;23992:18;23984:26;;23876:141;;;:::o;24047:845::-;24150:3;24187:5;24181:12;24216:36;24242:9;24216:36;:::i;:::-;24268:89;24350:6;24345:3;24268:89;:::i;:::-;24261:96;;24388:1;24377:9;24373:17;24404:1;24399:137;;;;24550:1;24545:341;;;;24366:520;;24399:137;24483:4;24479:9;24468;24464:25;24459:3;24452:38;24519:6;24514:3;24510:16;24503:23;;24399:137;;24545:341;24612:38;24644:5;24612:38;:::i;:::-;24672:1;24686:154;24700:6;24697:1;24694:13;24686:154;;;24774:7;24768:14;24764:1;24759:3;24755:11;24748:35;24824:1;24815:7;24811:15;24800:26;;24722:4;24719:1;24715:12;24710:17;;24686:154;;;24869:6;24864:3;24860:16;24853:23;;24552:334;;24366:520;;24154:738;;24047:845;;;;:::o;24898:377::-;25004:3;25032:39;25065:5;25032:39;:::i;:::-;25087:89;25169:6;25164:3;25087:89;:::i;:::-;25080:96;;25185:52;25230:6;25225:3;25218:4;25211:5;25207:16;25185:52;:::i;:::-;25262:6;25257:3;25253:16;25246:23;;25008:267;24898:377;;;;:::o;25281:589::-;25506:3;25528:92;25616:3;25607:6;25528:92;:::i;:::-;25521:99;;25637:95;25728:3;25719:6;25637:95;:::i;:::-;25630:102;;25749:95;25840:3;25831:6;25749:95;:::i;:::-;25742:102;;25861:3;25854:10;;25281:589;;;;;;:::o;25876:225::-;26016:34;26012:1;26004:6;26000:14;25993:58;26085:8;26080:2;26072:6;26068:15;26061:33;25876:225;:::o;26107:366::-;26249:3;26270:67;26334:2;26329:3;26270:67;:::i;:::-;26263:74;;26346:93;26435:3;26346:93;:::i;:::-;26464:2;26459:3;26455:12;26448:19;;26107:366;;;:::o;26479:419::-;26645:4;26683:2;26672:9;26668:18;26660:26;;26732:9;26726:4;26722:20;26718:1;26707:9;26703:17;26696:47;26760:131;26886:4;26760:131;:::i;:::-;26752:139;;26479:419;;;:::o;26904:147::-;27005:11;27042:3;27027:18;;26904:147;;;;:::o;27057:114::-;;:::o;27177:398::-;27336:3;27357:83;27438:1;27433:3;27357:83;:::i;:::-;27350:90;;27449:93;27538:3;27449:93;:::i;:::-;27567:1;27562:3;27558:11;27551:18;;27177:398;;;:::o;27581:379::-;27765:3;27787:147;27930:3;27787:147;:::i;:::-;27780:154;;27951:3;27944:10;;27581:379;;;:::o;27966:174::-;28106:26;28102:1;28094:6;28090:14;28083:50;27966:174;:::o;28146:366::-;28288:3;28309:67;28373:2;28368:3;28309:67;:::i;:::-;28302:74;;28385:93;28474:3;28385:93;:::i;:::-;28503:2;28498:3;28494:12;28487:19;;28146:366;;;:::o;28518:419::-;28684:4;28722:2;28711:9;28707:18;28699:26;;28771:9;28765:4;28761:20;28757:1;28746:9;28742:17;28735:47;28799:131;28925:4;28799:131;:::i;:::-;28791:139;;28518:419;;;:::o;28943:98::-;28994:6;29028:5;29022:12;29012:22;;28943:98;;;:::o;29047:168::-;29130:11;29164:6;29159:3;29152:19;29204:4;29199:3;29195:14;29180:29;;29047:168;;;;:::o;29221:360::-;29307:3;29335:38;29367:5;29335:38;:::i;:::-;29389:70;29452:6;29447:3;29389:70;:::i;:::-;29382:77;;29468:52;29513:6;29508:3;29501:4;29494:5;29490:16;29468:52;:::i;:::-;29545:29;29567:6;29545:29;:::i;:::-;29540:3;29536:39;29529:46;;29311:270;29221:360;;;;:::o;29587:640::-;29782:4;29820:3;29809:9;29805:19;29797:27;;29834:71;29902:1;29891:9;29887:17;29878:6;29834:71;:::i;:::-;29915:72;29983:2;29972:9;29968:18;29959:6;29915:72;:::i;:::-;29997;30065:2;30054:9;30050:18;30041:6;29997:72;:::i;:::-;30116:9;30110:4;30106:20;30101:2;30090:9;30086:18;30079:48;30144:76;30215:4;30206:6;30144:76;:::i;:::-;30136:84;;29587:640;;;;;;;:::o;30233:141::-;30289:5;30320:6;30314:13;30305:22;;30336:32;30362:5;30336:32;:::i;:::-;30233:141;;;;:::o;30380:349::-;30449:6;30498:2;30486:9;30477:7;30473:23;30469:32;30466:119;;;30504:79;;:::i;:::-;30466:119;30624:1;30649:63;30704:7;30695:6;30684:9;30680:22;30649:63;:::i;:::-;30639:73;;30595:127;30380:349;;;;:::o;30735:233::-;30774:3;30797:24;30815:5;30797:24;:::i;:::-;30788:33;;30843:66;30836:5;30833:77;30830:103;;;30913:18;;:::i;:::-;30830:103;30960:1;30953:5;30949:13;30942:20;;30735:233;;;:::o;30974:180::-;31022:77;31019:1;31012:88;31119:4;31116:1;31109:15;31143:4;31140:1;31133:15;31160:185;31200:1;31217:20;31235:1;31217:20;:::i;:::-;31212:25;;31251:20;31269:1;31251:20;:::i;:::-;31246:25;;31290:1;31280:35;;31295:18;;:::i;:::-;31280:35;31337:1;31334;31330:9;31325:14;;31160:185;;;;:::o;31351:191::-;31391:4;31411:20;31429:1;31411:20;:::i;:::-;31406:25;;31445:20;31463:1;31445:20;:::i;:::-;31440:25;;31484:1;31481;31478:8;31475:34;;;31489:18;;:::i;:::-;31475:34;31534:1;31531;31527:9;31519:17;;31351:191;;;;:::o;31548:176::-;31580:1;31597:20;31615:1;31597:20;:::i;:::-;31592:25;;31631:20;31649:1;31631:20;:::i;:::-;31626:25;;31670:1;31660:35;;31675:18;;:::i;:::-;31660:35;31716:1;31713;31709:9;31704:14;;31548:176;;;;:::o;31730:180::-;31778:77;31775:1;31768:88;31875:4;31872:1;31865:15;31899:4;31896:1;31889:15
Swarm Source
ipfs://4ffa7f3538dd72ff2dc7b20dc7f6ff8251123fc363ce8cde5d3e7595ae86b3b9
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.