Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,000 GH
Holders
1,237
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 GHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GenesisHole
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "ERC721A.sol"; import "Ownable.sol"; contract GenesisHole is ERC721A, Ownable { uint256 MAX_MINTS = 10; uint256 MAX_SUPPLY = 10000; uint256 public payLimit = 500; uint256 public mintRate = 0.006 ether; bool public mintWindow = true; event Log(int); event Log(string); string public baseURI = "http://ipfs.blackholenft.xyz/QmRo75kh1QLPcnE7g2AR2ZuZGixdi7z6gKxb1oEtJ8im3A/"; constructor() ERC721A("GenesisHole NFT", "GH") {} function mint(uint256 quantity) external payable { require(mintWindow, "Mint is not open yet."); uint256 tokenNum = _numberMinted(msg.sender); require(quantity + tokenNum <= MAX_MINTS, "Each wallet can only mint 10 NFTs."); require(totalSupply() + quantity <= MAX_SUPPLY, "NFT is sold out."); uint256 payQuantity = 0; if(totalSupply() + quantity > payLimit) { if(totalSupply() >= payLimit){ payQuantity = quantity; } else { payQuantity = totalSupply() + quantity - payLimit; } } else { payQuantity = 0; } if (tokenNum == 0 && payQuantity > 0){ payQuantity = payQuantity - 1; } require(msg.value >= (mintRate * payQuantity), "The mint price of each Genesis-Hole is 0.006 ether."); _safeMint(msg.sender, quantity); } function withdraw(address addr) external onlyOwner { payable(addr).transfer(address(this).balance); } function setMintWindow(bool _mintOpen) public onlyOwner { mintWindow = _mintOpen; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setMintRate(uint256 _mintRate) public onlyOwner { mintRate = _mintRate; } function setPayLimit(uint256 _payLimit) public onlyOwner { payLimit = _payLimit; } }
// 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 MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; //return bytes(baseURI).length != 0 ? baseURI : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(updatedIndex); } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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/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
[{"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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"","type":"int256"}],"name":"Log","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"","type":"string"}],"name":"Log","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintWindow","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"payLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintOpen","type":"bool"}],"name":"setMintWindow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_payLimit","type":"uint256"}],"name":"setPayLimit","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a6008556127106009556101f4600a55661550f7dca70000600b556001600c60006101000a81548160ff0219169083151502179055506040518060800160405280604c815260200162003dd2604c9139600d908162000065919062000474565b503480156200007357600080fd5b506040518060400160405280600f81526020017f47656e65736973486f6c65204e465400000000000000000000000000000000008152506040518060400160405280600281526020017f47480000000000000000000000000000000000000000000000000000000000008152508160019081620000f1919062000474565b50806002908162000103919062000474565b505050620001266200011a6200012c60201b60201c565b6200013460201b60201c565b6200055b565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027c57607f821691505b60208210810362000292576200029162000234565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002fc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002bd565b620003088683620002bd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003556200034f620003498462000320565b6200032a565b62000320565b9050919050565b6000819050919050565b620003718362000334565b6200038962000380826200035c565b848454620002ca565b825550505050565b600090565b620003a062000391565b620003ad81848462000366565b505050565b5b81811015620003d557620003c960008262000396565b600181019050620003b3565b5050565b601f8211156200042457620003ee8162000298565b620003f984620002ad565b8101602085101562000409578190505b620004216200041885620002ad565b830182620003b2565b50505b505050565b600082821c905092915050565b6000620004496000198460080262000429565b1980831691505092915050565b600062000464838362000436565b9150826002028217905092915050565b6200047f82620001fa565b67ffffffffffffffff8111156200049b576200049a62000205565b5b620004a7825462000263565b620004b4828285620003d9565b600060209050601f831160018114620004ec5760008415620004d7578287015190505b620004e3858262000456565b86555062000553565b601f198416620004fc8662000298565b60005b828110156200052657848901518255600182019150602085019450602081019050620004ff565b8683101562000546578489015162000542601f89168262000436565b8355505b6001600288020188555050505b505050505050565b613867806200056b6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063ca0dcf1611610064578063ca0dcf161461060f578063dbe2193f1461063a578063e985e9c514610663578063f2fde38b146106a0576101b7565b8063a22cb46514610580578063b88d4fde146105a9578063c87b56dd146105d2576101b7565b80638da5cb5b116100c65780638da5cb5b146104e357806395d89b411461050e5780639ce93edf14610539578063a0712d6814610564576101b7565b806370a0823114610466578063715018a6146104a35780637c14bb51146104ba576101b7565b80632f745c591161015957806351cff8d91161013357806351cff8d9146103aa5780636352211e146103d35780636704dcb8146104105780636c0360eb1461043b576101b7565b80632f745c591461030757806342842e0e146103445780634f6ccce71461036d576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806318b4e2bb146102b557806323b872dd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612c38565b6106c9565b6040516101f09190612c80565b60405180910390f35b34801561020557600080fd5b5061020e610813565b60405161021b9190612d2b565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612d83565b6108a5565b6040516102589190612df1565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612e38565b610921565b005b34801561029657600080fd5b5061029f610a2b565b6040516102ac9190612e87565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612ece565b610a80565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612efb565b610b19565b005b34801561031357600080fd5b5061032e60048036038101906103299190612e38565b610b29565b60405161033b9190612e87565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612efb565b610d2d565b005b34801561037957600080fd5b50610394600480360381019061038f9190612d83565b610d4d565b6040516103a19190612e87565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612f4e565b610ebd565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612d83565b610f83565b6040516104079190612df1565b60405180910390f35b34801561041c57600080fd5b50610425610f99565b6040516104329190612e87565b60405180910390f35b34801561044757600080fd5b50610450610f9f565b60405161045d9190612d2b565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612f4e565b61102d565b60405161049a9190612e87565b60405180910390f35b3480156104af57600080fd5b506104b86110fc565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190612d83565b611184565b005b3480156104ef57600080fd5b506104f861120a565b6040516105059190612df1565b60405180910390f35b34801561051a57600080fd5b50610523611234565b6040516105309190612d2b565b60405180910390f35b34801561054557600080fd5b5061054e6112c6565b60405161055b9190612c80565b60405180910390f35b61057e60048036038101906105799190612d83565b6112d9565b005b34801561058c57600080fd5b506105a760048036038101906105a29190612f7b565b6114c3565b005b3480156105b557600080fd5b506105d060048036038101906105cb91906130f0565b61163a565b005b3480156105de57600080fd5b506105f960048036038101906105f49190612d83565b61168d565b6040516106069190612d2b565b60405180910390f35b34801561061b57600080fd5b5061062461172b565b6040516106319190612e87565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612d83565b611731565b005b34801561066f57600080fd5b5061068a60048036038101906106859190613173565b6117b7565b6040516106979190612c80565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612f4e565b61184b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080c575061080b82611942565b5b9050919050565b606060018054610822906131e2565b80601f016020809104026020016040519081016040528092919081815260200182805461084e906131e2565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006108b0826119ac565b6108e6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092c82610f83565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610993576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b2611a14565b73ffffffffffffffffffffffffffffffffffffffff16141580156109e457506109e2816109dd611a14565b6117b7565b155b15610a1b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a26838383611a1c565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610a88611a14565b73ffffffffffffffffffffffffffffffffffffffff16610aa661120a565b73ffffffffffffffffffffffffffffffffffffffff1614610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af39061325f565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b610b24838383611ace565b505050565b6000610b348361102d565b8210610b6c576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610d22576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610c835750610d15565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cc357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d1357868403610d0a578195505050505050610d27565b83806001019450505b505b8080600101915050610ba6565b600080fd5b92915050565b610d488383836040518060200160405280600081525061163a565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610e85576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610e7757858303610e6e5781945050505050610eb8565b82806001019350505b508080600101915050610d85565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b610ec5611a14565b73ffffffffffffffffffffffffffffffffffffffff16610ee361120a565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061325f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f7f573d6000803e3d6000fd5b5050565b6000610f8e82611fe9565b600001519050919050565b600a5481565b600d8054610fac906131e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd8906131e2565b80156110255780601f10610ffa57610100808354040283529160200191611025565b820191906000526020600020905b81548152906001019060200180831161100857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611094576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611104611a14565b73ffffffffffffffffffffffffffffffffffffffff1661112261120a565b73ffffffffffffffffffffffffffffffffffffffff1614611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f9061325f565b60405180910390fd5b6111826000612291565b565b61118c611a14565b73ffffffffffffffffffffffffffffffffffffffff166111aa61120a565b73ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f79061325f565b60405180910390fd5b80600a8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611243906131e2565b80601f016020809104026020016040519081016040528092919081815260200182805461126f906131e2565b80156112bc5780601f10611291576101008083540402835291602001916112bc565b820191906000526020600020905b81548152906001019060200180831161129f57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1681565b600c60009054906101000a900460ff16611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906132cb565b60405180910390fd5b600061133333612357565b90506008548183611344919061331a565b1115611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c906133c0565b60405180910390fd5b60095482611391610a2b565b61139b919061331a565b11156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d39061342c565b60405180910390fd5b6000600a54836113ea610a2b565b6113f4919061331a565b111561143a57600a54611405610a2b565b1061141257829050611435565b600a548361141e610a2b565b611428919061331a565b611432919061344c565b90505b61143f565b600090505b60008214801561144f5750600081115b1561146457600181611461919061344c565b90505b80600b546114729190613480565b3410156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613534565b60405180910390fd5b6114be3384612426565b505050565b6114cb611a14565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061153c611a14565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e9611a14565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161162e9190612c80565b60405180910390a35050565b611645848484611ace565b61165184848484612444565b611687576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611698826119ac565b6116ce576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116d86125c2565b905060008151036116f85760405180602001604052806000815250611723565b8061170284612654565b604051602001611713929190613590565b6040516020818303038152906040525b915050919050565b600b5481565b611739611a14565b73ffffffffffffffffffffffffffffffffffffffff1661175761120a565b73ffffffffffffffffffffffffffffffffffffffff16146117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a49061325f565b60405180910390fd5b80600b8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611853611a14565b73ffffffffffffffffffffffffffffffffffffffff1661187161120a565b73ffffffffffffffffffffffffffffffffffffffff16146118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be9061325f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d90613626565b60405180910390fd5b61193f81612291565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611a0d575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ad982611fe9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b00611a14565b73ffffffffffffffffffffffffffffffffffffffff161480611b335750611b328260000151611b2d611a14565b6117b7565b5b80611b785750611b41611a14565b73ffffffffffffffffffffffffffffffffffffffff16611b60846108a5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bb1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c1a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c80576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8d85858560016127b4565b611c9d6000848460000151611a1c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f795760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015611f785782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fe285858560016127ba565b5050505050565b611ff1612b89565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561225a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161225857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461213c57809250505061228c565b5b60011561225757818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461225257809250505061228c565b61213d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123be576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6124408282604051806020016040528060008152506127c0565b5050565b60006124658473ffffffffffffffffffffffffffffffffffffffff166127d2565b156125b5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261248e611a14565b8786866040518563ffffffff1660e01b81526004016124b0949392919061369b565b6020604051808303816000875af19250505080156124ec57506040513d601f19601f820116820180604052508101906124e991906136fc565b60015b612565573d806000811461251c576040519150601f19603f3d011682016040523d82523d6000602084013e612521565b606091505b50600081510361255d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ba565b600190505b949350505050565b6060600d80546125d1906131e2565b80601f01602080910402602001604051908101604052809291908181526020018280546125fd906131e2565b801561264a5780601f1061261f5761010080835404028352916020019161264a565b820191906000526020600020905b81548152906001019060200180831161262d57829003601f168201915b5050505050905090565b60606000820361269b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127af565b600082905060005b600082146126cd5780806126b690613729565b915050600a826126c691906137a0565b91506126a3565b60008167ffffffffffffffff8111156126e9576126e8612fc5565b5b6040519080825280601f01601f19166020018201604052801561271b5781602001600182028036833780820191505090505b5090505b600085146127a857600182612734919061344c565b9150600a8561274391906137d1565b603061274f919061331a565b60f81b81838151811061276557612764613802565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127a191906137a0565b945061271f565b8093505050505b919050565b50505050565b50505050565b6127cd83838360016127f5565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361288f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036128c9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128d660008683876127b4565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b3b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612aef5750612aed6000888488612444565b155b15612b26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612a74565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612b8260008683876127ba565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c1581612be0565b8114612c2057600080fd5b50565b600081359050612c3281612c0c565b92915050565b600060208284031215612c4e57612c4d612bd6565b5b6000612c5c84828501612c23565b91505092915050565b60008115159050919050565b612c7a81612c65565b82525050565b6000602082019050612c956000830184612c71565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cd5578082015181840152602081019050612cba565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cfd82612c9b565b612d078185612ca6565b9350612d17818560208601612cb7565b612d2081612ce1565b840191505092915050565b60006020820190508181036000830152612d458184612cf2565b905092915050565b6000819050919050565b612d6081612d4d565b8114612d6b57600080fd5b50565b600081359050612d7d81612d57565b92915050565b600060208284031215612d9957612d98612bd6565b5b6000612da784828501612d6e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ddb82612db0565b9050919050565b612deb81612dd0565b82525050565b6000602082019050612e066000830184612de2565b92915050565b612e1581612dd0565b8114612e2057600080fd5b50565b600081359050612e3281612e0c565b92915050565b60008060408385031215612e4f57612e4e612bd6565b5b6000612e5d85828601612e23565b9250506020612e6e85828601612d6e565b9150509250929050565b612e8181612d4d565b82525050565b6000602082019050612e9c6000830184612e78565b92915050565b612eab81612c65565b8114612eb657600080fd5b50565b600081359050612ec881612ea2565b92915050565b600060208284031215612ee457612ee3612bd6565b5b6000612ef284828501612eb9565b91505092915050565b600080600060608486031215612f1457612f13612bd6565b5b6000612f2286828701612e23565b9350506020612f3386828701612e23565b9250506040612f4486828701612d6e565b9150509250925092565b600060208284031215612f6457612f63612bd6565b5b6000612f7284828501612e23565b91505092915050565b60008060408385031215612f9257612f91612bd6565b5b6000612fa085828601612e23565b9250506020612fb185828601612eb9565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ffd82612ce1565b810181811067ffffffffffffffff8211171561301c5761301b612fc5565b5b80604052505050565b600061302f612bcc565b905061303b8282612ff4565b919050565b600067ffffffffffffffff82111561305b5761305a612fc5565b5b61306482612ce1565b9050602081019050919050565b82818337600083830152505050565b600061309361308e84613040565b613025565b9050828152602081018484840111156130af576130ae612fc0565b5b6130ba848285613071565b509392505050565b600082601f8301126130d7576130d6612fbb565b5b81356130e7848260208601613080565b91505092915050565b6000806000806080858703121561310a57613109612bd6565b5b600061311887828801612e23565b945050602061312987828801612e23565b935050604061313a87828801612d6e565b925050606085013567ffffffffffffffff81111561315b5761315a612bdb565b5b613167878288016130c2565b91505092959194509250565b6000806040838503121561318a57613189612bd6565b5b600061319885828601612e23565b92505060206131a985828601612e23565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131fa57607f821691505b60208210810361320d5761320c6131b3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613249602083612ca6565b915061325482613213565b602082019050919050565b600060208201905081810360008301526132788161323c565b9050919050565b7f4d696e74206973206e6f74206f70656e207965742e0000000000000000000000600082015250565b60006132b5601583612ca6565b91506132c08261327f565b602082019050919050565b600060208201905081810360008301526132e4816132a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061332582612d4d565b915061333083612d4d565b9250828201905080821115613348576133476132eb565b5b92915050565b7f456163682077616c6c65742063616e206f6e6c79206d696e74203130204e465460008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b60006133aa602283612ca6565b91506133b58261334e565b604082019050919050565b600060208201905081810360008301526133d98161339d565b9050919050565b7f4e465420697320736f6c64206f75742e00000000000000000000000000000000600082015250565b6000613416601083612ca6565b9150613421826133e0565b602082019050919050565b6000602082019050818103600083015261344581613409565b9050919050565b600061345782612d4d565b915061346283612d4d565b925082820390508181111561347a576134796132eb565b5b92915050565b600061348b82612d4d565b915061349683612d4d565b92508282026134a481612d4d565b915082820484148315176134bb576134ba6132eb565b5b5092915050565b7f546865206d696e74207072696365206f6620656163682047656e657369732d4860008201527f6f6c6520697320302e3030362065746865722e00000000000000000000000000602082015250565b600061351e603383612ca6565b9150613529826134c2565b604082019050919050565b6000602082019050818103600083015261354d81613511565b9050919050565b600081905092915050565b600061356a82612c9b565b6135748185613554565b9350613584818560208601612cb7565b80840191505092915050565b600061359c828561355f565b91506135a8828461355f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613610602683612ca6565b915061361b826135b4565b604082019050919050565b6000602082019050818103600083015261363f81613603565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061366d82613646565b6136778185613651565b9350613687818560208601612cb7565b61369081612ce1565b840191505092915050565b60006080820190506136b06000830187612de2565b6136bd6020830186612de2565b6136ca6040830185612e78565b81810360608301526136dc8184613662565b905095945050505050565b6000815190506136f681612c0c565b92915050565b60006020828403121561371257613711612bd6565b5b6000613720848285016136e7565b91505092915050565b600061373482612d4d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613766576137656132eb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137ab82612d4d565b91506137b683612d4d565b9250826137c6576137c5613771565b5b828204905092915050565b60006137dc82612d4d565b91506137e783612d4d565b9250826137f7576137f6613771565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212202303a005cbcfe3b95a3cb4d3d5d8851812e84a0eead35236d6590e9c854dd35064736f6c63430008120033687474703a2f2f697066732e626c61636b686f6c656e66742e78797a2f516d526f37356b6831514c50636e453767324152325a755a4769786469377a36674b7862316f45744a38696d33412f
Deployed Bytecode
0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063ca0dcf1611610064578063ca0dcf161461060f578063dbe2193f1461063a578063e985e9c514610663578063f2fde38b146106a0576101b7565b8063a22cb46514610580578063b88d4fde146105a9578063c87b56dd146105d2576101b7565b80638da5cb5b116100c65780638da5cb5b146104e357806395d89b411461050e5780639ce93edf14610539578063a0712d6814610564576101b7565b806370a0823114610466578063715018a6146104a35780637c14bb51146104ba576101b7565b80632f745c591161015957806351cff8d91161013357806351cff8d9146103aa5780636352211e146103d35780636704dcb8146104105780636c0360eb1461043b576101b7565b80632f745c591461030757806342842e0e146103445780634f6ccce71461036d576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806318b4e2bb146102b557806323b872dd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612c38565b6106c9565b6040516101f09190612c80565b60405180910390f35b34801561020557600080fd5b5061020e610813565b60405161021b9190612d2b565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612d83565b6108a5565b6040516102589190612df1565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612e38565b610921565b005b34801561029657600080fd5b5061029f610a2b565b6040516102ac9190612e87565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612ece565b610a80565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612efb565b610b19565b005b34801561031357600080fd5b5061032e60048036038101906103299190612e38565b610b29565b60405161033b9190612e87565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612efb565b610d2d565b005b34801561037957600080fd5b50610394600480360381019061038f9190612d83565b610d4d565b6040516103a19190612e87565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612f4e565b610ebd565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612d83565b610f83565b6040516104079190612df1565b60405180910390f35b34801561041c57600080fd5b50610425610f99565b6040516104329190612e87565b60405180910390f35b34801561044757600080fd5b50610450610f9f565b60405161045d9190612d2b565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612f4e565b61102d565b60405161049a9190612e87565b60405180910390f35b3480156104af57600080fd5b506104b86110fc565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190612d83565b611184565b005b3480156104ef57600080fd5b506104f861120a565b6040516105059190612df1565b60405180910390f35b34801561051a57600080fd5b50610523611234565b6040516105309190612d2b565b60405180910390f35b34801561054557600080fd5b5061054e6112c6565b60405161055b9190612c80565b60405180910390f35b61057e60048036038101906105799190612d83565b6112d9565b005b34801561058c57600080fd5b506105a760048036038101906105a29190612f7b565b6114c3565b005b3480156105b557600080fd5b506105d060048036038101906105cb91906130f0565b61163a565b005b3480156105de57600080fd5b506105f960048036038101906105f49190612d83565b61168d565b6040516106069190612d2b565b60405180910390f35b34801561061b57600080fd5b5061062461172b565b6040516106319190612e87565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612d83565b611731565b005b34801561066f57600080fd5b5061068a60048036038101906106859190613173565b6117b7565b6040516106979190612c80565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612f4e565b61184b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080c575061080b82611942565b5b9050919050565b606060018054610822906131e2565b80601f016020809104026020016040519081016040528092919081815260200182805461084e906131e2565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006108b0826119ac565b6108e6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092c82610f83565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610993576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b2611a14565b73ffffffffffffffffffffffffffffffffffffffff16141580156109e457506109e2816109dd611a14565b6117b7565b155b15610a1b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a26838383611a1c565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610a88611a14565b73ffffffffffffffffffffffffffffffffffffffff16610aa661120a565b73ffffffffffffffffffffffffffffffffffffffff1614610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af39061325f565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b610b24838383611ace565b505050565b6000610b348361102d565b8210610b6c576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610d22576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610c835750610d15565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cc357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d1357868403610d0a578195505050505050610d27565b83806001019450505b505b8080600101915050610ba6565b600080fd5b92915050565b610d488383836040518060200160405280600081525061163a565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610e85576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610e7757858303610e6e5781945050505050610eb8565b82806001019350505b508080600101915050610d85565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b610ec5611a14565b73ffffffffffffffffffffffffffffffffffffffff16610ee361120a565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061325f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f7f573d6000803e3d6000fd5b5050565b6000610f8e82611fe9565b600001519050919050565b600a5481565b600d8054610fac906131e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd8906131e2565b80156110255780601f10610ffa57610100808354040283529160200191611025565b820191906000526020600020905b81548152906001019060200180831161100857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611094576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611104611a14565b73ffffffffffffffffffffffffffffffffffffffff1661112261120a565b73ffffffffffffffffffffffffffffffffffffffff1614611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f9061325f565b60405180910390fd5b6111826000612291565b565b61118c611a14565b73ffffffffffffffffffffffffffffffffffffffff166111aa61120a565b73ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f79061325f565b60405180910390fd5b80600a8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611243906131e2565b80601f016020809104026020016040519081016040528092919081815260200182805461126f906131e2565b80156112bc5780601f10611291576101008083540402835291602001916112bc565b820191906000526020600020905b81548152906001019060200180831161129f57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1681565b600c60009054906101000a900460ff16611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906132cb565b60405180910390fd5b600061133333612357565b90506008548183611344919061331a565b1115611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c906133c0565b60405180910390fd5b60095482611391610a2b565b61139b919061331a565b11156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d39061342c565b60405180910390fd5b6000600a54836113ea610a2b565b6113f4919061331a565b111561143a57600a54611405610a2b565b1061141257829050611435565b600a548361141e610a2b565b611428919061331a565b611432919061344c565b90505b61143f565b600090505b60008214801561144f5750600081115b1561146457600181611461919061344c565b90505b80600b546114729190613480565b3410156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613534565b60405180910390fd5b6114be3384612426565b505050565b6114cb611a14565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061153c611a14565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e9611a14565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161162e9190612c80565b60405180910390a35050565b611645848484611ace565b61165184848484612444565b611687576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611698826119ac565b6116ce576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116d86125c2565b905060008151036116f85760405180602001604052806000815250611723565b8061170284612654565b604051602001611713929190613590565b6040516020818303038152906040525b915050919050565b600b5481565b611739611a14565b73ffffffffffffffffffffffffffffffffffffffff1661175761120a565b73ffffffffffffffffffffffffffffffffffffffff16146117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a49061325f565b60405180910390fd5b80600b8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611853611a14565b73ffffffffffffffffffffffffffffffffffffffff1661187161120a565b73ffffffffffffffffffffffffffffffffffffffff16146118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be9061325f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d90613626565b60405180910390fd5b61193f81612291565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611a0d575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ad982611fe9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b00611a14565b73ffffffffffffffffffffffffffffffffffffffff161480611b335750611b328260000151611b2d611a14565b6117b7565b5b80611b785750611b41611a14565b73ffffffffffffffffffffffffffffffffffffffff16611b60846108a5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bb1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c1a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c80576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8d85858560016127b4565b611c9d6000848460000151611a1c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f795760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015611f785782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fe285858560016127ba565b5050505050565b611ff1612b89565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561225a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161225857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461213c57809250505061228c565b5b60011561225757818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461225257809250505061228c565b61213d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123be576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6124408282604051806020016040528060008152506127c0565b5050565b60006124658473ffffffffffffffffffffffffffffffffffffffff166127d2565b156125b5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261248e611a14565b8786866040518563ffffffff1660e01b81526004016124b0949392919061369b565b6020604051808303816000875af19250505080156124ec57506040513d601f19601f820116820180604052508101906124e991906136fc565b60015b612565573d806000811461251c576040519150601f19603f3d011682016040523d82523d6000602084013e612521565b606091505b50600081510361255d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ba565b600190505b949350505050565b6060600d80546125d1906131e2565b80601f01602080910402602001604051908101604052809291908181526020018280546125fd906131e2565b801561264a5780601f1061261f5761010080835404028352916020019161264a565b820191906000526020600020905b81548152906001019060200180831161262d57829003601f168201915b5050505050905090565b60606000820361269b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127af565b600082905060005b600082146126cd5780806126b690613729565b915050600a826126c691906137a0565b91506126a3565b60008167ffffffffffffffff8111156126e9576126e8612fc5565b5b6040519080825280601f01601f19166020018201604052801561271b5781602001600182028036833780820191505090505b5090505b600085146127a857600182612734919061344c565b9150600a8561274391906137d1565b603061274f919061331a565b60f81b81838151811061276557612764613802565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127a191906137a0565b945061271f565b8093505050505b919050565b50505050565b50505050565b6127cd83838360016127f5565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361288f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036128c9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128d660008683876127b4565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b3b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612aef5750612aed6000888488612444565b155b15612b26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612a74565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612b8260008683876127ba565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c1581612be0565b8114612c2057600080fd5b50565b600081359050612c3281612c0c565b92915050565b600060208284031215612c4e57612c4d612bd6565b5b6000612c5c84828501612c23565b91505092915050565b60008115159050919050565b612c7a81612c65565b82525050565b6000602082019050612c956000830184612c71565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cd5578082015181840152602081019050612cba565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cfd82612c9b565b612d078185612ca6565b9350612d17818560208601612cb7565b612d2081612ce1565b840191505092915050565b60006020820190508181036000830152612d458184612cf2565b905092915050565b6000819050919050565b612d6081612d4d565b8114612d6b57600080fd5b50565b600081359050612d7d81612d57565b92915050565b600060208284031215612d9957612d98612bd6565b5b6000612da784828501612d6e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ddb82612db0565b9050919050565b612deb81612dd0565b82525050565b6000602082019050612e066000830184612de2565b92915050565b612e1581612dd0565b8114612e2057600080fd5b50565b600081359050612e3281612e0c565b92915050565b60008060408385031215612e4f57612e4e612bd6565b5b6000612e5d85828601612e23565b9250506020612e6e85828601612d6e565b9150509250929050565b612e8181612d4d565b82525050565b6000602082019050612e9c6000830184612e78565b92915050565b612eab81612c65565b8114612eb657600080fd5b50565b600081359050612ec881612ea2565b92915050565b600060208284031215612ee457612ee3612bd6565b5b6000612ef284828501612eb9565b91505092915050565b600080600060608486031215612f1457612f13612bd6565b5b6000612f2286828701612e23565b9350506020612f3386828701612e23565b9250506040612f4486828701612d6e565b9150509250925092565b600060208284031215612f6457612f63612bd6565b5b6000612f7284828501612e23565b91505092915050565b60008060408385031215612f9257612f91612bd6565b5b6000612fa085828601612e23565b9250506020612fb185828601612eb9565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ffd82612ce1565b810181811067ffffffffffffffff8211171561301c5761301b612fc5565b5b80604052505050565b600061302f612bcc565b905061303b8282612ff4565b919050565b600067ffffffffffffffff82111561305b5761305a612fc5565b5b61306482612ce1565b9050602081019050919050565b82818337600083830152505050565b600061309361308e84613040565b613025565b9050828152602081018484840111156130af576130ae612fc0565b5b6130ba848285613071565b509392505050565b600082601f8301126130d7576130d6612fbb565b5b81356130e7848260208601613080565b91505092915050565b6000806000806080858703121561310a57613109612bd6565b5b600061311887828801612e23565b945050602061312987828801612e23565b935050604061313a87828801612d6e565b925050606085013567ffffffffffffffff81111561315b5761315a612bdb565b5b613167878288016130c2565b91505092959194509250565b6000806040838503121561318a57613189612bd6565b5b600061319885828601612e23565b92505060206131a985828601612e23565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131fa57607f821691505b60208210810361320d5761320c6131b3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613249602083612ca6565b915061325482613213565b602082019050919050565b600060208201905081810360008301526132788161323c565b9050919050565b7f4d696e74206973206e6f74206f70656e207965742e0000000000000000000000600082015250565b60006132b5601583612ca6565b91506132c08261327f565b602082019050919050565b600060208201905081810360008301526132e4816132a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061332582612d4d565b915061333083612d4d565b9250828201905080821115613348576133476132eb565b5b92915050565b7f456163682077616c6c65742063616e206f6e6c79206d696e74203130204e465460008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b60006133aa602283612ca6565b91506133b58261334e565b604082019050919050565b600060208201905081810360008301526133d98161339d565b9050919050565b7f4e465420697320736f6c64206f75742e00000000000000000000000000000000600082015250565b6000613416601083612ca6565b9150613421826133e0565b602082019050919050565b6000602082019050818103600083015261344581613409565b9050919050565b600061345782612d4d565b915061346283612d4d565b925082820390508181111561347a576134796132eb565b5b92915050565b600061348b82612d4d565b915061349683612d4d565b92508282026134a481612d4d565b915082820484148315176134bb576134ba6132eb565b5b5092915050565b7f546865206d696e74207072696365206f6620656163682047656e657369732d4860008201527f6f6c6520697320302e3030362065746865722e00000000000000000000000000602082015250565b600061351e603383612ca6565b9150613529826134c2565b604082019050919050565b6000602082019050818103600083015261354d81613511565b9050919050565b600081905092915050565b600061356a82612c9b565b6135748185613554565b9350613584818560208601612cb7565b80840191505092915050565b600061359c828561355f565b91506135a8828461355f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613610602683612ca6565b915061361b826135b4565b604082019050919050565b6000602082019050818103600083015261363f81613603565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061366d82613646565b6136778185613651565b9350613687818560208601612cb7565b61369081612ce1565b840191505092915050565b60006080820190506136b06000830187612de2565b6136bd6020830186612de2565b6136ca6040830185612e78565b81810360608301526136dc8184613662565b905095945050505050565b6000815190506136f681612c0c565b92915050565b60006020828403121561371257613711612bd6565b5b6000613720848285016136e7565b91505092915050565b600061373482612d4d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613766576137656132eb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137ab82612d4d565b91506137b683612d4d565b9250826137c6576137c5613771565b5b828204905092915050565b60006137dc82612d4d565b91506137e783612d4d565b9250826137f7576137f6613771565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212202303a005cbcfe3b95a3cb4d3d5d8851812e84a0eead35236d6590e9c854dd35064736f6c63430008120033
Deployed Bytecode Sourcemap
102:1860:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5973:350:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8414:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9930:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9507:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3409:258;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1561:95:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10761:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4897:1009;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10991:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3953:651;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1442:113:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8230:122:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;209:29:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;365:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6382:203:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1659:101:9;;;;;;;;;;;;;:::i;:::-;;1866:94:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1027:85:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8576:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;287:29:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;529:907;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10197:274:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11236:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8744:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;244:37:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1766:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10537:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1909:198:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5973:350:3;6075:4;6121:25;6106:40;;;:11;:40;;;;:100;;;;6173:33;6158:48;;;:11;:48;;;;6106:100;:162;;;;6233:35;6218:50;;;:11;:50;;;;6106:162;:210;;;;6280:36;6304:11;6280:23;:36::i;:::-;6106:210;6091:225;;5973:350;;;:::o;8414:98::-;8468:13;8500:5;8493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8414:98;:::o;9930:200::-;9998:7;10022:16;10030:7;10022;:16::i;:::-;10017:64;;10047:34;;;;;;;;;;;;;;10017:64;10099:15;:24;10115:7;10099:24;;;;;;;;;;;;;;;;;;;;;10092:31;;9930:200;;;:::o;9507:362::-;9579:13;9595:24;9611:7;9595:15;:24::i;:::-;9579:40;;9639:5;9633:11;;:2;:11;;;9629:48;;9653:24;;;;;;;;;;;;;;9629:48;9708:5;9692:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9718:37;9735:5;9742:12;:10;:12::i;:::-;9718:16;:37::i;:::-;9717:38;9692:63;9688:136;;;9778:35;;;;;;;;;;;;;;9688:136;9834:28;9843:2;9847:7;9856:5;9834:8;:28::i;:::-;9569:300;9507:362;;:::o;3409:258::-;3462:7;3642:12;;;;;;;;;;;3626:13;;;;;;;;;;:28;3619:35;;;;3409:258;:::o;1561:95:11:-;1250:12:9;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1640:9:11::1;1627:10;;:22;;;;;;;;;;;;;;;;;;1561:95:::0;:::o;10761:164:3:-;10890:28;10900:4;10906:2;10910:7;10890:9;:28::i;:::-;10761:164;;;:::o;4897:1009::-;4986:7;5018:16;5028:5;5018:9;:16::i;:::-;5009:5;:25;5005:61;;5043:23;;;;;;;;;;;;;;5005:61;5076:22;5101:13;;;;;;;;;;;5076:38;;;;5124:19;5153:25;5341:9;5336:487;5356:14;5352:1;:18;5336:487;;;5391:31;5425:11;:14;5437:1;5425:14;;;;;;;;;;;5391:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5457:9;:16;;;5453:63;;;5493:8;;;5453:63;5559:1;5533:28;;:9;:14;;;:28;;;5529:101;;5601:9;:14;;;5581:34;;5529:101;5668:5;5647:26;;:17;:26;;;5643:170;;5712:5;5697:11;:20;5693:75;;5748:1;5741:8;;;;;;;;;5693:75;5785:13;;;;;;;5643:170;5377:446;5336:487;5372:3;;;;;;;5336:487;;;5891:8;;;4897:1009;;;;;:::o;10991:179::-;11124:39;11141:4;11147:2;11151:7;11124:39;;;;;;;;;;;;:16;:39::i;:::-;10991:179;;;:::o;3953:651::-;4020:7;4039:22;4064:13;;;;;;;;;;4039:38;;;;4087:19;4269:9;4264:288;4284:14;4280:1;:18;4264:288;;;4319:31;4353:11;:14;4365:1;4353:14;;;;;;;;;;;4319:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4386:9;:16;;;4381:161;;4441:5;4426:11;:20;4422:75;;4477:1;4470:8;;;;;;;;4422:75;4514:13;;;;;;;4381:161;4305:247;4300:3;;;;;;;4264:288;;;;4574:23;;;;;;;;;;;;;;3953:651;;;;:::o;1442:113:11:-;1250:12:9;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1511:4:11::1;1503:22;;:45;1526:21;1503:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1442:113:::0;:::o;8230:122:3:-;8294:7;8320:20;8332:7;8320:11;:20::i;:::-;:25;;;8313:32;;8230:122;;;:::o;209:29:11:-;;;;:::o;365:102::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6382:203:3:-;6446:7;6486:1;6469:19;;:5;:19;;;6465:60;;6497:28;;;;;;;;;;;;;;6465:60;6550:12;:19;6563:5;6550:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6542:36;;6535:43;;6382:203;;;:::o;1659:101:9:-;1250:12;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1723:30:::1;1750:1;1723:18;:30::i;:::-;1659:101::o:0;1866:94:11:-;1250:12:9;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1944:9:11::1;1933:8;:20;;;;1866:94:::0;:::o;1027:85:9:-;1073:7;1099:6;;;;;;;;;;;1092:13;;1027:85;:::o;8576:102:3:-;8632:13;8664:7;8657:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8576:102;:::o;287:29:11:-;;;;;;;;;;;;;:::o;529:907::-;596:10;;;;;;;;;;;588:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;642:16;661:25;675:10;661:13;:25::i;:::-;642:44;;727:9;;715:8;704;:19;;;;:::i;:::-;:32;;696:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;821:10;;809:8;793:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;785:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;862:19;925:8;;914;898:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:35;895:282;;;969:8;;952:13;:11;:13::i;:::-;:25;949:172;;1010:8;996:22;;949:172;;;1098:8;;1087;1071:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:35;;;;:::i;:::-;1057:49;;949:172;895:282;;;1165:1;1151:15;;895:282;1202:1;1190:8;:13;:32;;;;;1221:1;1207:11;:15;1190:32;1186:91;;;1265:1;1251:11;:15;;;;:::i;:::-;1237:29;;1186:91;1319:11;1308:8;;:22;;;;:::i;:::-;1294:9;:37;;1286:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;1398:31;1408:10;1420:8;1398:9;:31::i;:::-;578:858;;529:907;:::o;10197:274:3:-;10299:12;:10;:12::i;:::-;10287:24;;:8;:24;;;10283:54;;10320:17;;;;;;;;;;;;;;10283:54;10393:8;10348:18;:32;10367:12;:10;:12::i;:::-;10348:32;;;;;;;;;;;;;;;:42;10381:8;10348:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10445:8;10416:48;;10431:12;:10;:12::i;:::-;10416:48;;;10455:8;10416:48;;;;;;:::i;:::-;;;;;;;;10197:274;;:::o;11236:332::-;11397:28;11407:4;11413:2;11417:7;11397:9;:28::i;:::-;11440:48;11463:4;11469:2;11473:7;11482:5;11440:22;:48::i;:::-;11435:127;;11511:40;;;;;;;;;;;;;;11435:127;11236:332;;;;:::o;8744:373::-;8817:13;8847:16;8855:7;8847;:16::i;:::-;8842:59;;8872:29;;;;;;;;;;;;;;8842:59;8912:21;8936:10;:8;:10::i;:::-;8912:34;;8988:1;8969:7;8963:21;:26;:87;;;;;;;;;;;;;;;;;9016:7;9025:18;:7;:16;:18::i;:::-;8999:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8963:87;8956:94;;;8744:373;;;:::o;244:37:11:-;;;;:::o;1766:94::-;1250:12:9;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1844:9:11::1;1833:8;:20;;;;1766:94:::0;:::o;10537:162:3:-;10634:4;10657:18;:25;10676:5;10657:25;;;;;;;;;;;;;;;:35;10683:8;10657:35;;;;;;;;;;;;;;;;;;;;;;;;;10650:42;;10537:162;;;;:::o;1909:198:9:-;1250:12;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2017:1:::1;1997:22;;:8;:22;;::::0;1989:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2072:28;2091:8;2072:18;:28::i;:::-;1909:198:::0;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;11814:142:3:-;11871:4;11904:13;;;;;;;;;;;11894:23;;:7;:23;:55;;;;;11922:11;:20;11934:7;11922:20;;;;;;;;;;;:27;;;;;;;;;;;;11921:28;11894:55;11887:62;;11814:142;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;18618:189:3:-;18755:2;18728:15;:24;18744:7;18728:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18792:7;18788:2;18772:28;;18781:5;18772:28;;;;;;;;;;;;18618:189;;;:::o;14388:1991::-;14498:35;14536:20;14548:7;14536:11;:20::i;:::-;14498:58;;14567:22;14609:13;:18;;;14593:34;;:12;:10;:12::i;:::-;:34;;;:96;;;;14639:50;14656:13;:18;;;14676:12;:10;:12::i;:::-;14639:16;:50::i;:::-;14593:96;:144;;;;14725:12;:10;:12::i;:::-;14701:36;;:20;14713:7;14701:11;:20::i;:::-;:36;;;14593:144;14567:171;;14754:17;14749:66;;14780:35;;;;;;;;;;;;;;14749:66;14851:4;14829:26;;:13;:18;;;:26;;;14825:67;;14864:28;;;;;;;;;;;;;;14825:67;14920:1;14906:16;;:2;:16;;;14902:52;;14931:23;;;;;;;;;;;;;;14902:52;14965:43;14987:4;14993:2;14997:7;15006:1;14965:21;:43::i;:::-;15070:49;15087:1;15091:7;15100:13;:18;;;15070:8;:49::i;:::-;15431:1;15401:12;:18;15414:4;15401:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15470:1;15442:12;:16;15455:2;15442:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15510:2;15482:11;:20;15494:7;15482:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;15567:15;15522:11;:20;15534:7;15522:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;15819:19;15851:1;15841:7;:11;15819:33;;15907:1;15866:43;;:11;:24;15878:11;15866:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;15862:410;;16076:13;;;;;;;;;;16062:27;;:11;:27;16058:204;;;16141:13;:18;;;16109:11;:24;16121:11;16109:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16219:13;:28;;;16177:11;:24;16189:11;16177:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16058:204;15862:410;15381:897;16312:7;16308:2;16293:27;;16302:4;16293:27;;;;;;;;;;;;16330:42;16351:4;16357:2;16361:7;16370:1;16330:20;:42::i;:::-;14488:1891;;14388:1991;;;:::o;7201:972::-;7262:21;;:::i;:::-;7295:12;7310:7;7295:22;;7355:13;;;;;;;;;;7348:20;;:4;:20;7344:769;;;7384:31;7418:11;:17;7430:4;7418:17;;;;;;;;;;;7384:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7454:9;:16;;;7449:654;;7520:1;7494:28;;:9;:14;;;:28;;;7490:91;;7553:9;7546:16;;;;;;7490:91;7858:231;7865:4;7858:231;;;7893:6;;;;;;;;7933:11;:17;7945:4;7933:17;;;;;;;;;;;7921:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8002:1;7976:28;;:9;:14;;;:28;;;7972:99;;8039:9;8032:16;;;;;;7972:99;7858:231;;;7449:654;7370:743;7344:769;8135:31;;;;;;;;;;;;;;7201:972;;;;:::o;2261:187:9:-;2334:16;2353:6;;;;;;;;;;;2334:25;;2378:8;2369:6;;:17;;;;;;;;;;;;;;;;;;2432:8;2401:40;;2422:8;2401:40;;;;;;;;;;;;2324:124;2261:187;:::o;6591:204:3:-;6652:7;6692:1;6675:19;;:5;:19;;;6671:59;;6703:27;;;;;;;;;;;;;;6671:59;6755:12;:19;6768:5;6755:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;6747:41;;6740:48;;6591:204;;;:::o;11962:102::-;12030:27;12040:2;12044:8;12030:27;;;;;;;;;;;;:9;:27::i;:::-;11962:102;;:::o;19360:769::-;19510:4;19530:15;:2;:13;;;:15::i;:::-;19526:597;;;19581:2;19565:36;;;19602:12;:10;:12::i;:::-;19616:4;19622:7;19631:5;19565:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19561:510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19825:1;19808:6;:13;:18;19804:253;;19857:40;;;;;;;;;;;;;;19804:253;20009:6;20003:13;19994:6;19990:2;19986:15;19979:38;19561:510;19697:45;;;19687:55;;;:6;:55;;;;19680:62;;;;;19526:597;20108:4;20101:11;;19360:769;;;;;;;:::o;1662:98:11:-;1714:13;1746:7;1739:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1662:98;:::o;328:703:10:-;384:13;610:1;601:5;:10;597:51;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;20760:154:3:-;;;;;:::o;21555:153::-;;;;;:::o;12415:157::-;12533:32;12539:2;12543:8;12553:5;12560:4;12533:5;:32::i;:::-;12415:157;;;:::o;1175:320:0:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;12819:1327:3:-;12952:20;12975:13;;;;;;;;;;;12952:36;;;;13016:1;13002:16;;:2;:16;;;12998:48;;13027:19;;;;;;;;;;;;;;12998:48;13072:1;13060:8;:13;13056:44;;13082:18;;;;;;;;;;;;;;13056:44;13111:61;13141:1;13145:2;13149:12;13163:8;13111:21;:61::i;:::-;13471:8;13436:12;:16;13449:2;13436:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13530:8;13490:12;:16;13503:2;13490:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13583:2;13550:11;:25;13562:12;13550:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13645:15;13595:11;:25;13607:12;13595:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13672:20;13695:12;13672:35;;13723:9;13718:298;13738:8;13734:1;:12;13718:298;;;13797:12;13793:2;13772:38;;13789:1;13772:38;;;;;;;;;;;;13828:4;:68;;;;;13837:59;13868:1;13872:2;13876:12;13890:5;13837:22;:59::i;:::-;13836:60;13828:68;13824:154;;;13923:40;;;;;;;;;;;;;;13824:154;13991:14;;;;;;;13748:3;;;;;;;13718:298;;;;14050:12;14026:13;;:37;;;;;;;;;;;;;;;;;;13416:654;14079:60;14108:1;14112:2;14116:12;14130:8;14079:20;:60::i;:::-;12942:1204;12819:1327;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:12:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:116::-;5312:21;5327:5;5312:21;:::i;:::-;5305:5;5302:32;5292:60;;5348:1;5345;5338:12;5292:60;5242:116;:::o;5364:133::-;5407:5;5445:6;5432:20;5423:29;;5461:30;5485:5;5461:30;:::i;:::-;5364:133;;;;:::o;5503:323::-;5559:6;5608:2;5596:9;5587:7;5583:23;5579:32;5576:119;;;5614:79;;:::i;:::-;5576:119;5734:1;5759:50;5801:7;5792:6;5781:9;5777:22;5759:50;:::i;:::-;5749:60;;5705:114;5503:323;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:329::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6662:117;6457:329;;;;:::o;6792:468::-;6857:6;6865;6914:2;6902:9;6893:7;6889:23;6885:32;6882:119;;;6920:79;;:::i;:::-;6882:119;7040:1;7065:53;7110:7;7101:6;7090:9;7086:22;7065:53;:::i;:::-;7055:63;;7011:117;7167:2;7193:50;7235:7;7226:6;7215:9;7211:22;7193:50;:::i;:::-;7183:60;;7138:115;6792:468;;;;;:::o;7266:117::-;7375:1;7372;7365:12;7389:117;7498:1;7495;7488:12;7512:180;7560:77;7557:1;7550:88;7657:4;7654:1;7647:15;7681:4;7678:1;7671:15;7698:281;7781:27;7803:4;7781:27;:::i;:::-;7773:6;7769:40;7911:6;7899:10;7896:22;7875:18;7863:10;7860:34;7857:62;7854:88;;;7922:18;;:::i;:::-;7854:88;7962:10;7958:2;7951:22;7741:238;7698:281;;:::o;7985:129::-;8019:6;8046:20;;:::i;:::-;8036:30;;8075:33;8103:4;8095:6;8075:33;:::i;:::-;7985:129;;;:::o;8120:307::-;8181:4;8271:18;8263:6;8260:30;8257:56;;;8293:18;;:::i;:::-;8257:56;8331:29;8353:6;8331:29;:::i;:::-;8323:37;;8415:4;8409;8405:15;8397:23;;8120:307;;;:::o;8433:146::-;8530:6;8525:3;8520;8507:30;8571:1;8562:6;8557:3;8553:16;8546:27;8433:146;;;:::o;8585:423::-;8662:5;8687:65;8703:48;8744:6;8703:48;:::i;:::-;8687:65;:::i;:::-;8678:74;;8775:6;8768:5;8761:21;8813:4;8806:5;8802:16;8851:3;8842:6;8837:3;8833:16;8830:25;8827:112;;;8858:79;;:::i;:::-;8827:112;8948:54;8995:6;8990:3;8985;8948:54;:::i;:::-;8668:340;8585:423;;;;;:::o;9027:338::-;9082:5;9131:3;9124:4;9116:6;9112:17;9108:27;9098:122;;9139:79;;:::i;:::-;9098:122;9256:6;9243:20;9281:78;9355:3;9347:6;9340:4;9332:6;9328:17;9281:78;:::i;:::-;9272:87;;9088:277;9027:338;;;;:::o;9371:943::-;9466:6;9474;9482;9490;9539:3;9527:9;9518:7;9514:23;9510:33;9507:120;;;9546:79;;:::i;:::-;9507:120;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:53;9864:7;9855:6;9844:9;9840:22;9819:53;:::i;:::-;9809:63;;9764:118;9921:2;9947:53;9992:7;9983:6;9972:9;9968:22;9947:53;:::i;:::-;9937:63;;9892:118;10077:2;10066:9;10062:18;10049:32;10108:18;10100:6;10097:30;10094:117;;;10130:79;;:::i;:::-;10094:117;10235:62;10289:7;10280:6;10269:9;10265:22;10235:62;:::i;:::-;10225:72;;10020:287;9371:943;;;;;;;:::o;10320:474::-;10388:6;10396;10445:2;10433:9;10424:7;10420:23;10416:32;10413:119;;;10451:79;;:::i;:::-;10413:119;10571:1;10596:53;10641:7;10632:6;10621:9;10617:22;10596:53;:::i;:::-;10586:63;;10542:117;10698:2;10724:53;10769:7;10760:6;10749:9;10745:22;10724:53;:::i;:::-;10714:63;;10669:118;10320:474;;;;;:::o;10800:180::-;10848:77;10845:1;10838:88;10945:4;10942:1;10935:15;10969:4;10966:1;10959:15;10986:320;11030:6;11067:1;11061:4;11057:12;11047:22;;11114:1;11108:4;11104:12;11135:18;11125:81;;11191:4;11183:6;11179:17;11169:27;;11125:81;11253:2;11245:6;11242:14;11222:18;11219:38;11216:84;;11272:18;;:::i;:::-;11216:84;11037:269;10986:320;;;:::o;11312:182::-;11452:34;11448:1;11440:6;11436:14;11429:58;11312:182;:::o;11500:366::-;11642:3;11663:67;11727:2;11722:3;11663:67;:::i;:::-;11656:74;;11739:93;11828:3;11739:93;:::i;:::-;11857:2;11852:3;11848:12;11841:19;;11500:366;;;:::o;11872:419::-;12038:4;12076:2;12065:9;12061:18;12053:26;;12125:9;12119:4;12115:20;12111:1;12100:9;12096:17;12089:47;12153:131;12279:4;12153:131;:::i;:::-;12145:139;;11872:419;;;:::o;12297:171::-;12437:23;12433:1;12425:6;12421:14;12414:47;12297:171;:::o;12474:366::-;12616:3;12637:67;12701:2;12696:3;12637:67;:::i;:::-;12630:74;;12713:93;12802:3;12713:93;:::i;:::-;12831:2;12826:3;12822:12;12815:19;;12474:366;;;:::o;12846:419::-;13012:4;13050:2;13039:9;13035:18;13027:26;;13099:9;13093:4;13089:20;13085:1;13074:9;13070:17;13063:47;13127:131;13253:4;13127:131;:::i;:::-;13119:139;;12846:419;;;:::o;13271:180::-;13319:77;13316:1;13309:88;13416:4;13413:1;13406:15;13440:4;13437:1;13430:15;13457:191;13497:3;13516:20;13534:1;13516:20;:::i;:::-;13511:25;;13550:20;13568:1;13550:20;:::i;:::-;13545:25;;13593:1;13590;13586:9;13579:16;;13614:3;13611:1;13608:10;13605:36;;;13621:18;;:::i;:::-;13605:36;13457:191;;;;:::o;13654:221::-;13794:34;13790:1;13782:6;13778:14;13771:58;13863:4;13858:2;13850:6;13846:15;13839:29;13654:221;:::o;13881:366::-;14023:3;14044:67;14108:2;14103:3;14044:67;:::i;:::-;14037:74;;14120:93;14209:3;14120:93;:::i;:::-;14238:2;14233:3;14229:12;14222:19;;13881:366;;;:::o;14253:419::-;14419:4;14457:2;14446:9;14442:18;14434:26;;14506:9;14500:4;14496:20;14492:1;14481:9;14477:17;14470:47;14534:131;14660:4;14534:131;:::i;:::-;14526:139;;14253:419;;;:::o;14678:166::-;14818:18;14814:1;14806:6;14802:14;14795:42;14678:166;:::o;14850:366::-;14992:3;15013:67;15077:2;15072:3;15013:67;:::i;:::-;15006:74;;15089:93;15178:3;15089:93;:::i;:::-;15207:2;15202:3;15198:12;15191:19;;14850:366;;;:::o;15222:419::-;15388:4;15426:2;15415:9;15411:18;15403:26;;15475:9;15469:4;15465:20;15461:1;15450:9;15446:17;15439:47;15503:131;15629:4;15503:131;:::i;:::-;15495:139;;15222:419;;;:::o;15647:194::-;15687:4;15707:20;15725:1;15707:20;:::i;:::-;15702:25;;15741:20;15759:1;15741:20;:::i;:::-;15736:25;;15785:1;15782;15778:9;15770:17;;15809:1;15803:4;15800:11;15797:37;;;15814:18;;:::i;:::-;15797:37;15647:194;;;;:::o;15847:410::-;15887:7;15910:20;15928:1;15910:20;:::i;:::-;15905:25;;15944:20;15962:1;15944:20;:::i;:::-;15939:25;;15999:1;15996;15992:9;16021:30;16039:11;16021:30;:::i;:::-;16010:41;;16200:1;16191:7;16187:15;16184:1;16181:22;16161:1;16154:9;16134:83;16111:139;;16230:18;;:::i;:::-;16111:139;15895:362;15847:410;;;;:::o;16263:238::-;16403:34;16399:1;16391:6;16387:14;16380:58;16472:21;16467:2;16459:6;16455:15;16448:46;16263:238;:::o;16507:366::-;16649:3;16670:67;16734:2;16729:3;16670:67;:::i;:::-;16663:74;;16746:93;16835:3;16746:93;:::i;:::-;16864:2;16859:3;16855:12;16848:19;;16507:366;;;:::o;16879:419::-;17045:4;17083:2;17072:9;17068:18;17060:26;;17132:9;17126:4;17122:20;17118:1;17107:9;17103:17;17096:47;17160:131;17286:4;17160:131;:::i;:::-;17152:139;;16879:419;;;:::o;17304:148::-;17406:11;17443:3;17428:18;;17304:148;;;;:::o;17458:390::-;17564:3;17592:39;17625:5;17592:39;:::i;:::-;17647:89;17729:6;17724:3;17647:89;:::i;:::-;17640:96;;17745:65;17803:6;17798:3;17791:4;17784:5;17780:16;17745:65;:::i;:::-;17835:6;17830:3;17826:16;17819:23;;17568:280;17458:390;;;;:::o;17854:435::-;18034:3;18056:95;18147:3;18138:6;18056:95;:::i;:::-;18049:102;;18168:95;18259:3;18250:6;18168:95;:::i;:::-;18161:102;;18280:3;18273:10;;17854:435;;;;;:::o;18295:225::-;18435:34;18431:1;18423:6;18419:14;18412:58;18504:8;18499:2;18491:6;18487:15;18480:33;18295:225;:::o;18526:366::-;18668:3;18689:67;18753:2;18748:3;18689:67;:::i;:::-;18682:74;;18765:93;18854:3;18765:93;:::i;:::-;18883:2;18878:3;18874:12;18867:19;;18526:366;;;:::o;18898:419::-;19064:4;19102:2;19091:9;19087:18;19079:26;;19151:9;19145:4;19141:20;19137:1;19126:9;19122:17;19115:47;19179:131;19305:4;19179:131;:::i;:::-;19171:139;;18898:419;;;:::o;19323:98::-;19374:6;19408:5;19402:12;19392:22;;19323:98;;;:::o;19427:168::-;19510:11;19544:6;19539:3;19532:19;19584:4;19579:3;19575:14;19560:29;;19427:168;;;;:::o;19601:373::-;19687:3;19715:38;19747:5;19715:38;:::i;:::-;19769:70;19832:6;19827:3;19769:70;:::i;:::-;19762:77;;19848:65;19906:6;19901:3;19894:4;19887:5;19883:16;19848:65;:::i;:::-;19938:29;19960:6;19938:29;:::i;:::-;19933:3;19929:39;19922:46;;19691:283;19601:373;;;;:::o;19980:640::-;20175:4;20213:3;20202:9;20198:19;20190:27;;20227:71;20295:1;20284:9;20280:17;20271:6;20227:71;:::i;:::-;20308:72;20376:2;20365:9;20361:18;20352:6;20308:72;:::i;:::-;20390;20458:2;20447:9;20443:18;20434:6;20390:72;:::i;:::-;20509:9;20503:4;20499:20;20494:2;20483:9;20479:18;20472:48;20537:76;20608:4;20599:6;20537:76;:::i;:::-;20529:84;;19980:640;;;;;;;:::o;20626:141::-;20682:5;20713:6;20707:13;20698:22;;20729:32;20755:5;20729:32;:::i;:::-;20626:141;;;;:::o;20773:349::-;20842:6;20891:2;20879:9;20870:7;20866:23;20862:32;20859:119;;;20897:79;;:::i;:::-;20859:119;21017:1;21042:63;21097:7;21088:6;21077:9;21073:22;21042:63;:::i;:::-;21032:73;;20988:127;20773:349;;;;:::o;21128:233::-;21167:3;21190:24;21208:5;21190:24;:::i;:::-;21181:33;;21236:66;21229:5;21226:77;21223:103;;21306:18;;:::i;:::-;21223:103;21353:1;21346:5;21342:13;21335:20;;21128:233;;;:::o;21367:180::-;21415:77;21412:1;21405:88;21512:4;21509:1;21502:15;21536:4;21533:1;21526:15;21553:185;21593:1;21610:20;21628:1;21610:20;:::i;:::-;21605:25;;21644:20;21662:1;21644:20;:::i;:::-;21639:25;;21683:1;21673:35;;21688:18;;:::i;:::-;21673:35;21730:1;21727;21723:9;21718:14;;21553:185;;;;:::o;21744:176::-;21776:1;21793:20;21811:1;21793:20;:::i;:::-;21788:25;;21827:20;21845:1;21827:20;:::i;:::-;21822:25;;21866:1;21856:35;;21871:18;;:::i;:::-;21856:35;21912:1;21909;21905:9;21900:14;;21744:176;;;;:::o;21926:180::-;21974:77;21971:1;21964:88;22071:4;22068:1;22061:15;22095:4;22092:1;22085:15
Swarm Source
ipfs://2303a005cbcfe3b95a3cb4d3d5d8851812e84a0eead35236d6590e9c854dd350
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.