ERC-721
Overview
Max Total Supply
329 SEED
Holders
254
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SEEDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheSeed
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-24 */ // File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: @openzeppelin/contracts/utils/Address.sol // 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/ERC721A.sol pragma solidity ^0.8.12; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); 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 extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); 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**256. 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**256. 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 contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/ERC721ABurnable.sol pragma solidity ^0.8.12; /** * @title ERC721A Burnable Token * @dev ERC721A Token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is Context, ERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); _burn(tokenId); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } } // File: contracts/TheSeed.sol pragma solidity ^0.8.12; contract TheSeed is Ownable, ERC721A, ERC721ABurnable { using Strings for uint256; uint256 public collectionSize = 333; string private baseTokenURI; bool public saleIsActive; constructor() ERC721A("The Seed", "SEED") {} function mint() external { require( saleIsActive, "Sale is not active" ); require( _getAux(_msgSender()) == 0, "You have already minted" ); require( _totalMinted() + 1 <= collectionSize, "Exceeds max supply" ); require( tx.origin == _msgSender(), "Not allowing contracts" ); _setAux(_msgSender(), 1); _safeMint(_msgSender(), 1); } function ownerMint(uint256 _amount) external onlyOwner { require( _totalMinted() == 0, "Owner has already minted" ); _safeMint(_msgSender(), _amount); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { baseTokenURI = baseURI; } function _startTokenId() internal view override returns (uint256) { return 1; } function flipSaleState() external onlyOwner { saleIsActive = !saleIsActive; } function withdraw() external onlyOwner { payable(_msgSender()).transfer(address(this).balance); } }
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":"AuxQueryForZeroAddress","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261014d6009553480156200001757600080fd5b506040518060400160405280600881526020017f54686520536565640000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5345454400000000000000000000000000000000000000000000000000000000815250620000a462000098620000f460201b60201c565b620000fc60201b60201c565b8160039080519060200190620000bc929190620001c9565b508060049080519060200190620000d5929190620001c9565b50620000e6620001c060201b60201c565b6001819055505050620002dd565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b828054620001d790620002a8565b90600052602060002090601f016020900481019282620001fb576000855562000247565b82601f106200021657805160ff191683800117855562000247565b8280016001018555821562000247579182015b828111156200024657825182559160200191906001019062000229565b5b5090506200025691906200025a565b5090565b5b80821115620002755760008160009055506001016200025b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c157607f821691505b602082108103620002d757620002d662000279565b5b50919050565b6137fe80620002ed6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806355f804b3116100de578063a22cb46511610097578063e985e9c511610071578063e985e9c5146103ea578063eb8d24441461041a578063f19e75d414610438578063f2fde38b1461045457610173565b8063a22cb46514610382578063b88d4fde1461039e578063c87b56dd146103ba57610173565b806355f804b3146102c05780636352211e146102dc57806370a082311461030c578063715018a61461033c5780638da5cb5b1461034657806395d89b411461036457610173565b806323b872dd1161013057806323b872dd1461023a57806334918dfd146102565780633ccfd60b1461026057806342842e0e1461026a57806342966c681461028657806345c0f533146102a257610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f65780631249c58b1461021257806318160ddd1461021c575b600080fd5b610192600480360381019061018d9190612b46565b610470565b60405161019f9190612b8e565b60405180910390f35b6101b0610552565b6040516101bd9190612c42565b60405180910390f35b6101e060048036038101906101db9190612c9a565b6105e4565b6040516101ed9190612d08565b60405180910390f35b610210600480360381019061020b9190612d4f565b610660565b005b61021a61076a565b005b610224610908565b6040516102319190612d9e565b60405180910390f35b610254600480360381019061024f9190612db9565b61091f565b005b61025e61092f565b005b6102686109d7565b005b610284600480360381019061027f9190612db9565b610aa3565b005b6102a0600480360381019061029b9190612c9a565b610ac3565b005b6102aa610bb4565b6040516102b79190612d9e565b60405180910390f35b6102da60048036038101906102d59190612e71565b610bba565b005b6102f660048036038101906102f19190612c9a565b610c4c565b6040516103039190612d08565b60405180910390f35b61032660048036038101906103219190612ebe565b610c62565b6040516103339190612d9e565b60405180910390f35b610344610d31565b005b61034e610db9565b60405161035b9190612d08565b60405180910390f35b61036c610de2565b6040516103799190612c42565b60405180910390f35b61039c60048036038101906103979190612f17565b610e74565b005b6103b860048036038101906103b39190613087565b610feb565b005b6103d460048036038101906103cf9190612c9a565b611067565b6040516103e19190612c42565b60405180910390f35b61040460048036038101906103ff919061310a565b611105565b6040516104119190612b8e565b60405180910390f35b610422611199565b60405161042f9190612b8e565b60405180910390f35b610452600480360381019061044d9190612c9a565b6111ac565b005b61046e60048036038101906104699190612ebe565b611286565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061053b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061054b575061054a8261137d565b5b9050919050565b60606003805461056190613179565b80601f016020809104026020016040519081016040528092919081815260200182805461058d90613179565b80156105da5780601f106105af576101008083540402835291602001916105da565b820191906000526020600020905b8154815290600101906020018083116105bd57829003601f168201915b5050505050905090565b60006105ef826113e7565b610625576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061066b82610c4c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106d2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106f1611435565b73ffffffffffffffffffffffffffffffffffffffff161415801561072357506107218161071c611435565b611105565b155b1561075a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61076583838361143d565b505050565b600b60009054906101000a900460ff166107b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b0906131f6565b60405180910390fd5b60006107cb6107c6611435565b6114ef565b67ffffffffffffffff1614610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c90613262565b60405180910390fd5b60095460016108226115b4565b61082c91906132b1565b111561086d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086490613353565b60405180910390fd5b610875611435565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d9906133bf565b60405180910390fd5b6108f46108ed611435565b60016115c7565b6109066108ff611435565b600161169a565b565b60006109126116b8565b6002546001540303905090565b61092a8383836116c1565b505050565b610937611435565b73ffffffffffffffffffffffffffffffffffffffff16610955610db9565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a29061342b565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6109df611435565b73ffffffffffffffffffffffffffffffffffffffff166109fd610db9565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a9061342b565b60405180910390fd5b610a5b611435565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610aa0573d6000803e3d6000fd5b50565b610abe83838360405180602001604052806000815250610feb565b505050565b6000610ace82611bb0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16610af5611435565b73ffffffffffffffffffffffffffffffffffffffff161480610b285750610b278260000151610b22611435565b611105565b5b80610b6d5750610b36611435565b73ffffffffffffffffffffffffffffffffffffffff16610b55846105e4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080610ba6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610baf83611e3f565b505050565b60095481565b610bc2611435565b73ffffffffffffffffffffffffffffffffffffffff16610be0610db9565b73ffffffffffffffffffffffffffffffffffffffff1614610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d9061342b565b60405180910390fd5b8181600a9190610c479291906129f4565b505050565b6000610c5782611bb0565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610d39611435565b73ffffffffffffffffffffffffffffffffffffffff16610d57610db9565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da49061342b565b60405180910390fd5b610db760006121e2565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610df190613179565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1d90613179565b8015610e6a5780601f10610e3f57610100808354040283529160200191610e6a565b820191906000526020600020905b815481529060010190602001808311610e4d57829003601f168201915b5050505050905090565b610e7c611435565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610eed611435565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f9a611435565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fdf9190612b8e565b60405180910390a35050565b610ff68484846116c1565b6110158373ffffffffffffffffffffffffffffffffffffffff166122a6565b801561102a5750611028848484846122c9565b155b15611061576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611072826113e7565b6110a8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110b2612419565b905060008151036110d257604051806020016040528060008152506110fd565b806110dc846124ab565b6040516020016110ed929190613487565b6040516020818303038152906040525b915050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1681565b6111b4611435565b73ffffffffffffffffffffffffffffffffffffffff166111d2610db9565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f9061342b565b60405180910390fd5b60006112326115b4565b14611272576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611269906134f7565b60405180910390fd5b61128361127d611435565b8261169a565b50565b61128e611435565b73ffffffffffffffffffffffffffffffffffffffff166112ac610db9565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f99061342b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613589565b60405180910390fd5b61137a816121e2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816113f26116b8565b11158015611401575060015482105b801561142e575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611556576040517fac3727ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b60006115be6116b8565b60015403905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162d576040517fac3727ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6116b482826040518060200160405280600081525061260b565b5050565b60006001905090565b60006116cc82611bb0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166116f3611435565b73ffffffffffffffffffffffffffffffffffffffff16148061172657506117258260000151611720611435565b611105565b5b8061176b5750611734611435565b73ffffffffffffffffffffffffffffffffffffffff16611753846105e4565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117a4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461180d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611873576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611880858585600161261d565b611890600084846000015161143d565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b4057600154811015611b3f5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ba98585856001612623565b5050505050565b611bb8612a7a565b600082905080611bc66116b8565b11158015611bd5575060015481105b15611e08576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e0657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cea578092505050611e3a565b5b600115611e0557818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e00578092505050611e3a565b611ceb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000611e4a82611bb0565b9050611e5e8160000151600084600161261d565b611e6e600083836000015161143d565b600160066000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160066000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516005600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612159576001548110156121585781600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121cc81600001516000846001612623565b6002600081548092919060010191905055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122ef611435565b8786866040518563ffffffff1660e01b815260040161231194939291906135fe565b6020604051808303816000875af192505050801561234d57506040513d601f19601f8201168201806040525081019061234a919061365f565b60015b6123c6573d806000811461237d576040519150601f19603f3d011682016040523d82523d6000602084013e612382565b606091505b5060008151036123be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461242890613179565b80601f016020809104026020016040519081016040528092919081815260200182805461245490613179565b80156124a15780601f10612476576101008083540402835291602001916124a1565b820191906000526020600020905b81548152906001019060200180831161248457829003601f168201915b5050505050905090565b6060600082036124f2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612606565b600082905060005b6000821461252457808061250d9061368c565b915050600a8261251d9190613703565b91506124fa565b60008167ffffffffffffffff8111156125405761253f612f5c565b5b6040519080825280601f01601f1916602001820160405280156125725781602001600182028036833780820191505090505b5090505b600085146125ff5760018261258b9190613734565b9150600a8561259a9190613768565b60306125a691906132b1565b60f81b8183815181106125bc576125bb613799565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f89190613703565b9450612576565b8093505050505b919050565b6126188383836001612629565b505050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612696576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036126d0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126dd600086838761261d565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156128a757506128a68773ffffffffffffffffffffffffffffffffffffffff166122a6565b5b1561296c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461291c60008884806001019550886122c9565b612952576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036128ad57826001541461296757600080fd5b6129d7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361296d575b8160018190555050506129ed6000868387612623565b5050505050565b828054612a0090613179565b90600052602060002090601f016020900481019282612a225760008555612a69565b82601f10612a3b57803560ff1916838001178555612a69565b82800160010185558215612a69579182015b82811115612a68578235825591602001919060010190612a4d565b5b509050612a769190612abd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ad6576000816000905550600101612abe565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b2381612aee565b8114612b2e57600080fd5b50565b600081359050612b4081612b1a565b92915050565b600060208284031215612b5c57612b5b612ae4565b5b6000612b6a84828501612b31565b91505092915050565b60008115159050919050565b612b8881612b73565b82525050565b6000602082019050612ba36000830184612b7f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612be3578082015181840152602081019050612bc8565b83811115612bf2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c1482612ba9565b612c1e8185612bb4565b9350612c2e818560208601612bc5565b612c3781612bf8565b840191505092915050565b60006020820190508181036000830152612c5c8184612c09565b905092915050565b6000819050919050565b612c7781612c64565b8114612c8257600080fd5b50565b600081359050612c9481612c6e565b92915050565b600060208284031215612cb057612caf612ae4565b5b6000612cbe84828501612c85565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf282612cc7565b9050919050565b612d0281612ce7565b82525050565b6000602082019050612d1d6000830184612cf9565b92915050565b612d2c81612ce7565b8114612d3757600080fd5b50565b600081359050612d4981612d23565b92915050565b60008060408385031215612d6657612d65612ae4565b5b6000612d7485828601612d3a565b9250506020612d8585828601612c85565b9150509250929050565b612d9881612c64565b82525050565b6000602082019050612db36000830184612d8f565b92915050565b600080600060608486031215612dd257612dd1612ae4565b5b6000612de086828701612d3a565b9350506020612df186828701612d3a565b9250506040612e0286828701612c85565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612e3157612e30612e0c565b5b8235905067ffffffffffffffff811115612e4e57612e4d612e11565b5b602083019150836001820283011115612e6a57612e69612e16565b5b9250929050565b60008060208385031215612e8857612e87612ae4565b5b600083013567ffffffffffffffff811115612ea657612ea5612ae9565b5b612eb285828601612e1b565b92509250509250929050565b600060208284031215612ed457612ed3612ae4565b5b6000612ee284828501612d3a565b91505092915050565b612ef481612b73565b8114612eff57600080fd5b50565b600081359050612f1181612eeb565b92915050565b60008060408385031215612f2e57612f2d612ae4565b5b6000612f3c85828601612d3a565b9250506020612f4d85828601612f02565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f9482612bf8565b810181811067ffffffffffffffff82111715612fb357612fb2612f5c565b5b80604052505050565b6000612fc6612ada565b9050612fd28282612f8b565b919050565b600067ffffffffffffffff821115612ff257612ff1612f5c565b5b612ffb82612bf8565b9050602081019050919050565b82818337600083830152505050565b600061302a61302584612fd7565b612fbc565b90508281526020810184848401111561304657613045612f57565b5b613051848285613008565b509392505050565b600082601f83011261306e5761306d612e0c565b5b813561307e848260208601613017565b91505092915050565b600080600080608085870312156130a1576130a0612ae4565b5b60006130af87828801612d3a565b94505060206130c087828801612d3a565b93505060406130d187828801612c85565b925050606085013567ffffffffffffffff8111156130f2576130f1612ae9565b5b6130fe87828801613059565b91505092959194509250565b6000806040838503121561312157613120612ae4565b5b600061312f85828601612d3a565b925050602061314085828601612d3a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061319157607f821691505b6020821081036131a4576131a361314a565b5b50919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b60006131e0601283612bb4565b91506131eb826131aa565b602082019050919050565b6000602082019050818103600083015261320f816131d3565b9050919050565b7f596f75206861766520616c7265616479206d696e746564000000000000000000600082015250565b600061324c601783612bb4565b915061325782613216565b602082019050919050565b6000602082019050818103600083015261327b8161323f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132bc82612c64565b91506132c783612c64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132fc576132fb613282565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b600061333d601283612bb4565b915061334882613307565b602082019050919050565b6000602082019050818103600083015261336c81613330565b9050919050565b7f4e6f7420616c6c6f77696e6720636f6e74726163747300000000000000000000600082015250565b60006133a9601683612bb4565b91506133b482613373565b602082019050919050565b600060208201905081810360008301526133d88161339c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613415602083612bb4565b9150613420826133df565b602082019050919050565b6000602082019050818103600083015261344481613408565b9050919050565b600081905092915050565b600061346182612ba9565b61346b818561344b565b935061347b818560208601612bc5565b80840191505092915050565b60006134938285613456565b915061349f8284613456565b91508190509392505050565b7f4f776e65722068617320616c7265616479206d696e7465640000000000000000600082015250565b60006134e1601883612bb4565b91506134ec826134ab565b602082019050919050565b60006020820190508181036000830152613510816134d4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613573602683612bb4565b915061357e82613517565b604082019050919050565b600060208201905081810360008301526135a281613566565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135d0826135a9565b6135da81856135b4565b93506135ea818560208601612bc5565b6135f381612bf8565b840191505092915050565b60006080820190506136136000830187612cf9565b6136206020830186612cf9565b61362d6040830185612d8f565b818103606083015261363f81846135c5565b905095945050505050565b60008151905061365981612b1a565b92915050565b60006020828403121561367557613674612ae4565b5b60006136838482850161364a565b91505092915050565b600061369782612c64565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136c9576136c8613282565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061370e82612c64565b915061371983612c64565b925082613729576137286136d4565b5b828204905092915050565b600061373f82612c64565b915061374a83612c64565b92508282101561375d5761375c613282565b5b828203905092915050565b600061377382612c64565b915061377e83612c64565b92508261378e5761378d6136d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212200260cc0c941e07bbc04be41660651b7dcf90d217b15d671c83aafca84525d13464736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c806355f804b3116100de578063a22cb46511610097578063e985e9c511610071578063e985e9c5146103ea578063eb8d24441461041a578063f19e75d414610438578063f2fde38b1461045457610173565b8063a22cb46514610382578063b88d4fde1461039e578063c87b56dd146103ba57610173565b806355f804b3146102c05780636352211e146102dc57806370a082311461030c578063715018a61461033c5780638da5cb5b1461034657806395d89b411461036457610173565b806323b872dd1161013057806323b872dd1461023a57806334918dfd146102565780633ccfd60b1461026057806342842e0e1461026a57806342966c681461028657806345c0f533146102a257610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f65780631249c58b1461021257806318160ddd1461021c575b600080fd5b610192600480360381019061018d9190612b46565b610470565b60405161019f9190612b8e565b60405180910390f35b6101b0610552565b6040516101bd9190612c42565b60405180910390f35b6101e060048036038101906101db9190612c9a565b6105e4565b6040516101ed9190612d08565b60405180910390f35b610210600480360381019061020b9190612d4f565b610660565b005b61021a61076a565b005b610224610908565b6040516102319190612d9e565b60405180910390f35b610254600480360381019061024f9190612db9565b61091f565b005b61025e61092f565b005b6102686109d7565b005b610284600480360381019061027f9190612db9565b610aa3565b005b6102a0600480360381019061029b9190612c9a565b610ac3565b005b6102aa610bb4565b6040516102b79190612d9e565b60405180910390f35b6102da60048036038101906102d59190612e71565b610bba565b005b6102f660048036038101906102f19190612c9a565b610c4c565b6040516103039190612d08565b60405180910390f35b61032660048036038101906103219190612ebe565b610c62565b6040516103339190612d9e565b60405180910390f35b610344610d31565b005b61034e610db9565b60405161035b9190612d08565b60405180910390f35b61036c610de2565b6040516103799190612c42565b60405180910390f35b61039c60048036038101906103979190612f17565b610e74565b005b6103b860048036038101906103b39190613087565b610feb565b005b6103d460048036038101906103cf9190612c9a565b611067565b6040516103e19190612c42565b60405180910390f35b61040460048036038101906103ff919061310a565b611105565b6040516104119190612b8e565b60405180910390f35b610422611199565b60405161042f9190612b8e565b60405180910390f35b610452600480360381019061044d9190612c9a565b6111ac565b005b61046e60048036038101906104699190612ebe565b611286565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061053b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061054b575061054a8261137d565b5b9050919050565b60606003805461056190613179565b80601f016020809104026020016040519081016040528092919081815260200182805461058d90613179565b80156105da5780601f106105af576101008083540402835291602001916105da565b820191906000526020600020905b8154815290600101906020018083116105bd57829003601f168201915b5050505050905090565b60006105ef826113e7565b610625576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061066b82610c4c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106d2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106f1611435565b73ffffffffffffffffffffffffffffffffffffffff161415801561072357506107218161071c611435565b611105565b155b1561075a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61076583838361143d565b505050565b600b60009054906101000a900460ff166107b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b0906131f6565b60405180910390fd5b60006107cb6107c6611435565b6114ef565b67ffffffffffffffff1614610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c90613262565b60405180910390fd5b60095460016108226115b4565b61082c91906132b1565b111561086d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086490613353565b60405180910390fd5b610875611435565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d9906133bf565b60405180910390fd5b6108f46108ed611435565b60016115c7565b6109066108ff611435565b600161169a565b565b60006109126116b8565b6002546001540303905090565b61092a8383836116c1565b505050565b610937611435565b73ffffffffffffffffffffffffffffffffffffffff16610955610db9565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a29061342b565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6109df611435565b73ffffffffffffffffffffffffffffffffffffffff166109fd610db9565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a9061342b565b60405180910390fd5b610a5b611435565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610aa0573d6000803e3d6000fd5b50565b610abe83838360405180602001604052806000815250610feb565b505050565b6000610ace82611bb0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16610af5611435565b73ffffffffffffffffffffffffffffffffffffffff161480610b285750610b278260000151610b22611435565b611105565b5b80610b6d5750610b36611435565b73ffffffffffffffffffffffffffffffffffffffff16610b55846105e4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080610ba6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610baf83611e3f565b505050565b60095481565b610bc2611435565b73ffffffffffffffffffffffffffffffffffffffff16610be0610db9565b73ffffffffffffffffffffffffffffffffffffffff1614610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d9061342b565b60405180910390fd5b8181600a9190610c479291906129f4565b505050565b6000610c5782611bb0565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610d39611435565b73ffffffffffffffffffffffffffffffffffffffff16610d57610db9565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da49061342b565b60405180910390fd5b610db760006121e2565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610df190613179565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1d90613179565b8015610e6a5780601f10610e3f57610100808354040283529160200191610e6a565b820191906000526020600020905b815481529060010190602001808311610e4d57829003601f168201915b5050505050905090565b610e7c611435565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610eed611435565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f9a611435565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fdf9190612b8e565b60405180910390a35050565b610ff68484846116c1565b6110158373ffffffffffffffffffffffffffffffffffffffff166122a6565b801561102a5750611028848484846122c9565b155b15611061576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611072826113e7565b6110a8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110b2612419565b905060008151036110d257604051806020016040528060008152506110fd565b806110dc846124ab565b6040516020016110ed929190613487565b6040516020818303038152906040525b915050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1681565b6111b4611435565b73ffffffffffffffffffffffffffffffffffffffff166111d2610db9565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f9061342b565b60405180910390fd5b60006112326115b4565b14611272576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611269906134f7565b60405180910390fd5b61128361127d611435565b8261169a565b50565b61128e611435565b73ffffffffffffffffffffffffffffffffffffffff166112ac610db9565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f99061342b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613589565b60405180910390fd5b61137a816121e2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816113f26116b8565b11158015611401575060015482105b801561142e575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611556576040517fac3727ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b60006115be6116b8565b60015403905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162d576040517fac3727ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6116b482826040518060200160405280600081525061260b565b5050565b60006001905090565b60006116cc82611bb0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166116f3611435565b73ffffffffffffffffffffffffffffffffffffffff16148061172657506117258260000151611720611435565b611105565b5b8061176b5750611734611435565b73ffffffffffffffffffffffffffffffffffffffff16611753846105e4565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117a4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461180d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611873576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611880858585600161261d565b611890600084846000015161143d565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b4057600154811015611b3f5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ba98585856001612623565b5050505050565b611bb8612a7a565b600082905080611bc66116b8565b11158015611bd5575060015481105b15611e08576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e0657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cea578092505050611e3a565b5b600115611e0557818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e00578092505050611e3a565b611ceb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000611e4a82611bb0565b9050611e5e8160000151600084600161261d565b611e6e600083836000015161143d565b600160066000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160066000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516005600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612159576001548110156121585781600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121cc81600001516000846001612623565b6002600081548092919060010191905055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122ef611435565b8786866040518563ffffffff1660e01b815260040161231194939291906135fe565b6020604051808303816000875af192505050801561234d57506040513d601f19601f8201168201806040525081019061234a919061365f565b60015b6123c6573d806000811461237d576040519150601f19603f3d011682016040523d82523d6000602084013e612382565b606091505b5060008151036123be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461242890613179565b80601f016020809104026020016040519081016040528092919081815260200182805461245490613179565b80156124a15780601f10612476576101008083540402835291602001916124a1565b820191906000526020600020905b81548152906001019060200180831161248457829003601f168201915b5050505050905090565b6060600082036124f2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612606565b600082905060005b6000821461252457808061250d9061368c565b915050600a8261251d9190613703565b91506124fa565b60008167ffffffffffffffff8111156125405761253f612f5c565b5b6040519080825280601f01601f1916602001820160405280156125725781602001600182028036833780820191505090505b5090505b600085146125ff5760018261258b9190613734565b9150600a8561259a9190613768565b60306125a691906132b1565b60f81b8183815181106125bc576125bb613799565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f89190613703565b9450612576565b8093505050505b919050565b6126188383836001612629565b505050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612696576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036126d0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126dd600086838761261d565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156128a757506128a68773ffffffffffffffffffffffffffffffffffffffff166122a6565b5b1561296c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461291c60008884806001019550886122c9565b612952576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036128ad57826001541461296757600080fd5b6129d7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361296d575b8160018190555050506129ed6000868387612623565b5050505050565b828054612a0090613179565b90600052602060002090601f016020900481019282612a225760008555612a69565b82601f10612a3b57803560ff1916838001178555612a69565b82800160010185558215612a69579182015b82811115612a68578235825591602001919060010190612a4d565b5b509050612a769190612abd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ad6576000816000905550600101612abe565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b2381612aee565b8114612b2e57600080fd5b50565b600081359050612b4081612b1a565b92915050565b600060208284031215612b5c57612b5b612ae4565b5b6000612b6a84828501612b31565b91505092915050565b60008115159050919050565b612b8881612b73565b82525050565b6000602082019050612ba36000830184612b7f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612be3578082015181840152602081019050612bc8565b83811115612bf2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c1482612ba9565b612c1e8185612bb4565b9350612c2e818560208601612bc5565b612c3781612bf8565b840191505092915050565b60006020820190508181036000830152612c5c8184612c09565b905092915050565b6000819050919050565b612c7781612c64565b8114612c8257600080fd5b50565b600081359050612c9481612c6e565b92915050565b600060208284031215612cb057612caf612ae4565b5b6000612cbe84828501612c85565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf282612cc7565b9050919050565b612d0281612ce7565b82525050565b6000602082019050612d1d6000830184612cf9565b92915050565b612d2c81612ce7565b8114612d3757600080fd5b50565b600081359050612d4981612d23565b92915050565b60008060408385031215612d6657612d65612ae4565b5b6000612d7485828601612d3a565b9250506020612d8585828601612c85565b9150509250929050565b612d9881612c64565b82525050565b6000602082019050612db36000830184612d8f565b92915050565b600080600060608486031215612dd257612dd1612ae4565b5b6000612de086828701612d3a565b9350506020612df186828701612d3a565b9250506040612e0286828701612c85565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612e3157612e30612e0c565b5b8235905067ffffffffffffffff811115612e4e57612e4d612e11565b5b602083019150836001820283011115612e6a57612e69612e16565b5b9250929050565b60008060208385031215612e8857612e87612ae4565b5b600083013567ffffffffffffffff811115612ea657612ea5612ae9565b5b612eb285828601612e1b565b92509250509250929050565b600060208284031215612ed457612ed3612ae4565b5b6000612ee284828501612d3a565b91505092915050565b612ef481612b73565b8114612eff57600080fd5b50565b600081359050612f1181612eeb565b92915050565b60008060408385031215612f2e57612f2d612ae4565b5b6000612f3c85828601612d3a565b9250506020612f4d85828601612f02565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f9482612bf8565b810181811067ffffffffffffffff82111715612fb357612fb2612f5c565b5b80604052505050565b6000612fc6612ada565b9050612fd28282612f8b565b919050565b600067ffffffffffffffff821115612ff257612ff1612f5c565b5b612ffb82612bf8565b9050602081019050919050565b82818337600083830152505050565b600061302a61302584612fd7565b612fbc565b90508281526020810184848401111561304657613045612f57565b5b613051848285613008565b509392505050565b600082601f83011261306e5761306d612e0c565b5b813561307e848260208601613017565b91505092915050565b600080600080608085870312156130a1576130a0612ae4565b5b60006130af87828801612d3a565b94505060206130c087828801612d3a565b93505060406130d187828801612c85565b925050606085013567ffffffffffffffff8111156130f2576130f1612ae9565b5b6130fe87828801613059565b91505092959194509250565b6000806040838503121561312157613120612ae4565b5b600061312f85828601612d3a565b925050602061314085828601612d3a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061319157607f821691505b6020821081036131a4576131a361314a565b5b50919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b60006131e0601283612bb4565b91506131eb826131aa565b602082019050919050565b6000602082019050818103600083015261320f816131d3565b9050919050565b7f596f75206861766520616c7265616479206d696e746564000000000000000000600082015250565b600061324c601783612bb4565b915061325782613216565b602082019050919050565b6000602082019050818103600083015261327b8161323f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132bc82612c64565b91506132c783612c64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132fc576132fb613282565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b600061333d601283612bb4565b915061334882613307565b602082019050919050565b6000602082019050818103600083015261336c81613330565b9050919050565b7f4e6f7420616c6c6f77696e6720636f6e74726163747300000000000000000000600082015250565b60006133a9601683612bb4565b91506133b482613373565b602082019050919050565b600060208201905081810360008301526133d88161339c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613415602083612bb4565b9150613420826133df565b602082019050919050565b6000602082019050818103600083015261344481613408565b9050919050565b600081905092915050565b600061346182612ba9565b61346b818561344b565b935061347b818560208601612bc5565b80840191505092915050565b60006134938285613456565b915061349f8284613456565b91508190509392505050565b7f4f776e65722068617320616c7265616479206d696e7465640000000000000000600082015250565b60006134e1601883612bb4565b91506134ec826134ab565b602082019050919050565b60006020820190508181036000830152613510816134d4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613573602683612bb4565b915061357e82613517565b604082019050919050565b600060208201905081810360008301526135a281613566565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135d0826135a9565b6135da81856135b4565b93506135ea818560208601612bc5565b6135f381612bf8565b840191505092915050565b60006080820190506136136000830187612cf9565b6136206020830186612cf9565b61362d6040830185612d8f565b818103606083015261363f81846135c5565b905095945050505050565b60008151905061365981612b1a565b92915050565b60006020828403121561367557613674612ae4565b5b60006136838482850161364a565b91505092915050565b600061369782612c64565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136c9576136c8613282565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061370e82612c64565b915061371983612c64565b925082613729576137286136d4565b5b828204905092915050565b600061373f82612c64565b915061374a83612c64565b92508282101561375d5761375c613282565b5b828203905092915050565b600061377382612c64565b915061377e83612c64565b92508261378e5761378d6136d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212200260cc0c941e07bbc04be41660651b7dcf90d217b15d671c83aafca84525d13464736f6c634300080d0033
Deployed Bytecode Sourcemap
46622:1565:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25709:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29094:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30597:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30160:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46880:531;;;:::i;:::-;;24958:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31454:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47974:91;;;:::i;:::-;;48073:111;;;:::i;:::-;;31695:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43596:423;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46719:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47760:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28903:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26078:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45737:103;;;:::i;:::-;;45086:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29263:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30873:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31951:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29438:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31223:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46795:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47419:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45995:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25709:305;25811:4;25863:25;25848:40;;;:11;:40;;;;:105;;;;25920:33;25905:48;;;:11;:48;;;;25848:105;:158;;;;25970:36;25994:11;25970:23;:36::i;:::-;25848:158;25828:178;;25709:305;;;:::o;29094:100::-;29148:13;29181:5;29174:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29094:100;:::o;30597:204::-;30665:7;30690:16;30698:7;30690;:16::i;:::-;30685:64;;30715:34;;;;;;;;;;;;;;30685:64;30769:15;:24;30785:7;30769:24;;;;;;;;;;;;;;;;;;;;;30762:31;;30597:204;;;:::o;30160:371::-;30233:13;30249:24;30265:7;30249:15;:24::i;:::-;30233:40;;30294:5;30288:11;;:2;:11;;;30284:48;;30308:24;;;;;;;;;;;;;;30284:48;30365:5;30349:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;30375:37;30392:5;30399:12;:10;:12::i;:::-;30375:16;:37::i;:::-;30374:38;30349:63;30345:138;;;30436:35;;;;;;;;;;;;;;30345:138;30495:28;30504:2;30508:7;30517:5;30495:8;:28::i;:::-;30222:309;30160:371;;:::o;46880:531::-;46938:12;;;;;;;;;;;46916:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;47054:1;47029:21;47037:12;:10;:12::i;:::-;47029:7;:21::i;:::-;:26;;;47007:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;47161:14;;47156:1;47139:14;:12;:14::i;:::-;:18;;;;:::i;:::-;:36;;47117:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;47267:12;:10;:12::i;:::-;47254:25;;:9;:25;;;47232:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;47342:24;47350:12;:10;:12::i;:::-;47364:1;47342:7;:24::i;:::-;47377:26;47387:12;:10;:12::i;:::-;47401:1;47377:9;:26::i;:::-;46880:531::o;24958:303::-;25002:7;25227:15;:13;:15::i;:::-;25212:12;;25196:13;;:28;:46;25189:53;;24958:303;:::o;31454:170::-;31588:28;31598:4;31604:2;31608:7;31588:9;:28::i;:::-;31454:170;;;:::o;47974:91::-;45317:12;:10;:12::i;:::-;45306:23;;:7;:5;:7::i;:::-;:23;;;45298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48045:12:::1;;;;;;;;;;;48044:13;48029:12;;:28;;;;;;;;;;;;;;;;;;47974:91::o:0;48073:111::-;45317:12;:10;:12::i;:::-;45306:23;;:7;:5;:7::i;:::-;:23;;;45298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48131:12:::1;:10;:12::i;:::-;48123:30;;:53;48154:21;48123:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48073:111::o:0;31695:185::-;31833:39;31850:4;31856:2;31860:7;31833:39;;;;;;;;;;;;:16;:39::i;:::-;31695:185;;;:::o;43596:423::-;43653:35;43691:20;43703:7;43691:11;:20::i;:::-;43653:58;;43724:22;43766:13;:18;;;43750:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;43801:50;43818:13;:18;;;43838:12;:10;:12::i;:::-;43801:16;:50::i;:::-;43750:101;:154;;;;43892:12;:10;:12::i;:::-;43868:36;;:20;43880:7;43868:11;:20::i;:::-;:36;;;43750:154;43724:181;;43923:17;43918:66;;43949:35;;;;;;;;;;;;;;43918:66;43997:14;44003:7;43997:5;:14::i;:::-;43642:377;;43596:423;:::o;46719:35::-;;;;:::o;47760:105::-;45317:12;:10;:12::i;:::-;45306:23;;:7;:5;:7::i;:::-;:23;;;45298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47850:7:::1;;47835:12;:22;;;;;;;:::i;:::-;;47760:105:::0;;:::o;28903:124::-;28967:7;28994:20;29006:7;28994:11;:20::i;:::-;:25;;;28987:32;;28903:124;;;:::o;26078:206::-;26142:7;26183:1;26166:19;;:5;:19;;;26162:60;;26194:28;;;;;;;;;;;;;;26162:60;26248:12;:19;26261:5;26248:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26240:36;;26233:43;;26078:206;;;:::o;45737:103::-;45317:12;:10;:12::i;:::-;45306:23;;:7;:5;:7::i;:::-;:23;;;45298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45802:30:::1;45829:1;45802:18;:30::i;:::-;45737:103::o:0;45086:87::-;45132:7;45159:6;;;;;;;;;;;45152:13;;45086:87;:::o;29263:104::-;29319:13;29352:7;29345:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29263:104;:::o;30873:279::-;30976:12;:10;:12::i;:::-;30964:24;;:8;:24;;;30960:54;;30997:17;;;;;;;;;;;;;;30960:54;31072:8;31027:18;:32;31046:12;:10;:12::i;:::-;31027:32;;;;;;;;;;;;;;;:42;31060:8;31027:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31125:8;31096:48;;31111:12;:10;:12::i;:::-;31096:48;;;31135:8;31096:48;;;;;;:::i;:::-;;;;;;;;30873:279;;:::o;31951:369::-;32118:28;32128:4;32134:2;32138:7;32118:9;:28::i;:::-;32161:15;:2;:13;;;:15::i;:::-;:76;;;;;32181:56;32212:4;32218:2;32222:7;32231:5;32181:30;:56::i;:::-;32180:57;32161:76;32157:156;;;32261:40;;;;;;;;;;;;;;32157:156;31951:369;;;;:::o;29438:318::-;29511:13;29542:16;29550:7;29542;:16::i;:::-;29537:59;;29567:29;;;;;;;;;;;;;;29537:59;29609:21;29633:10;:8;:10::i;:::-;29609:34;;29686:1;29667:7;29661:21;:26;:87;;;;;;;;;;;;;;;;;29714:7;29723:18;:7;:16;:18::i;:::-;29697:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29661:87;29654:94;;;29438:318;;;:::o;31223:164::-;31320:4;31344:18;:25;31363:5;31344:25;;;;;;;;;;;;;;;:35;31370:8;31344:35;;;;;;;;;;;;;;;;;;;;;;;;;31337:42;;31223:164;;;;:::o;46795:24::-;;;;;;;;;;;;;:::o;47419:212::-;45317:12;:10;:12::i;:::-;45306:23;;:7;:5;:7::i;:::-;:23;;;45298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47525:1:::1;47507:14;:12;:14::i;:::-;:19;47485:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;47591:32;47601:12;:10;:12::i;:::-;47615:7;47591:9;:32::i;:::-;47419:212:::0;:::o;45995:201::-;45317:12;:10;:12::i;:::-;45306:23;;:7;:5;:7::i;:::-;:23;;;45298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46104:1:::1;46084:22;;:8;:22;;::::0;46076:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46160:28;46179:8;46160:18;:28::i;:::-;45995:201:::0;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;32575:187::-;32632:4;32675:7;32656:15;:13;:15::i;:::-;:26;;:53;;;;;32696:13;;32686:7;:23;32656:53;:98;;;;;32727:11;:20;32739:7;32727:20;;;;;;;;;;;:27;;;;;;;;;;;;32726:28;32656:98;32649:105;;32575:187;;;:::o;21038:98::-;21091:7;21118:10;21111:17;;21038:98;:::o;40186:196::-;40328:2;40301:15;:24;40317:7;40301:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40366:7;40362:2;40346:28;;40355:5;40346:28;;;;;;;;;;;;40186:196;;;:::o;26996:179::-;27051:6;27091:1;27074:19;;:5;:19;;;27070:56;;27102:24;;;;;;;;;;;;;;27070:56;27144:12;:19;27157:5;27144:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;27137:30;;26996:179;;;:::o;25354:283::-;25401:7;25603:15;:13;:15::i;:::-;25587:13;;:31;25580:38;;25354:283;:::o;27363:168::-;27448:1;27431:19;;:5;:19;;;27427:56;;27459:24;;;;;;;;;;;;;;27427:56;27520:3;27494:12;:19;27507:5;27494:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;27363:168;;:::o;32770:104::-;32839:27;32849:2;32853:8;32839:27;;;;;;;;;;;;:9;:27::i;:::-;32770:104;;:::o;47873:93::-;47930:7;47957:1;47950:8;;47873:93;:::o;35688:2112::-;35803:35;35841:20;35853:7;35841:11;:20::i;:::-;35803:58;;35874:22;35916:13;:18;;;35900:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;35951:50;35968:13;:18;;;35988:12;:10;:12::i;:::-;35951:16;:50::i;:::-;35900:101;:154;;;;36042:12;:10;:12::i;:::-;36018:36;;:20;36030:7;36018:11;:20::i;:::-;:36;;;35900:154;35874:181;;36073:17;36068:66;;36099:35;;;;;;;;;;;;;;36068:66;36171:4;36149:26;;:13;:18;;;:26;;;36145:67;;36184:28;;;;;;;;;;;;;;36145:67;36241:1;36227:16;;:2;:16;;;36223:52;;36252:23;;;;;;;;;;;;;;36223:52;36288:43;36310:4;36316:2;36320:7;36329:1;36288:21;:43::i;:::-;36396:49;36413:1;36417:7;36426:13;:18;;;36396:8;:49::i;:::-;36771:1;36741:12;:18;36754:4;36741:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36815:1;36787:12;:16;36800:2;36787:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36861:2;36833:11;:20;36845:7;36833:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;36923:15;36878:11;:20;36890:7;36878:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;37191:19;37223:1;37213:7;:11;37191:33;;37284:1;37243:43;;:11;:24;37255:11;37243:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;37239:445;;37468:13;;37454:11;:27;37450:219;;;37538:13;:18;;;37506:11;:24;37518:11;37506:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37621:13;:28;;;37579:11;:24;37591:11;37579:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;37450:219;37239:445;36716:979;37731:7;37727:2;37712:27;;37721:4;37712:27;;;;;;;;;;;;37750:42;37771:4;37777:2;37781:7;37790:1;37750:20;:42::i;:::-;35792:2008;;35688:2112;;;:::o;27733:1108::-;27794:21;;:::i;:::-;27828:12;27843:7;27828:22;;27911:4;27892:15;:13;:15::i;:::-;:23;;:47;;;;;27926:13;;27919:4;:20;27892:47;27888:886;;;27960:31;27994:11;:17;28006:4;27994:17;;;;;;;;;;;27960:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28035:9;:16;;;28030:729;;28106:1;28080:28;;:9;:14;;;:28;;;28076:101;;28144:9;28137:16;;;;;;28076:101;28479:261;28486:4;28479:261;;;28519:6;;;;;;;;28564:11;:17;28576:4;28564:17;;;;;;;;;;;28552:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28638:1;28612:28;;:9;:14;;;:28;;;28608:109;;28680:9;28673:16;;;;;;28608:109;28479:261;;;28030:729;27941:833;27888:886;28802:31;;;;;;;;;;;;;;27733:1108;;;;:::o;38029:2039::-;38089:35;38127:20;38139:7;38127:11;:20::i;:::-;38089:58;;38160:65;38182:13;:18;;;38210:1;38214:7;38223:1;38160:21;:65::i;:::-;38290:49;38307:1;38311:7;38320:13;:18;;;38290:8;:49::i;:::-;38679:1;38635:12;:32;38648:13;:18;;;38635:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38744:1;38695:12;:32;38708:13;:18;;;38695:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38872:13;:18;;;38844:11;:20;38856:7;38844:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;38950:15;38905:11;:20;38917:7;38905:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39011:4;38981:11;:20;38993:7;38981:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;39263:19;39295:1;39285:7;:11;39263:33;;39356:1;39315:43;;:11;:24;39327:11;39315:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39311:445;;39540:13;;39526:11;:27;39522:219;;;39610:13;:18;;;39578:11;:24;39590:11;39578:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;39693:13;:28;;;39651:11;:24;39663:11;39651:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;39522:219;39311:445;38610:1157;39825:7;39821:1;39784:49;;39793:13;:18;;;39784:49;;;;;;;;;;;;39844:64;39865:13;:18;;;39893:1;39897:7;39906:1;39844:20;:64::i;:::-;40035:12;;:14;;;;;;;;;;;;;38078:1990;38029:2039;:::o;46356:191::-;46430:16;46449:6;;;;;;;;;;;46430:25;;46475:8;46466:6;;:17;;;;;;;;;;;;;;;;;;46530:8;46499:40;;46520:8;46499:40;;;;;;;;;;;;46419:128;46356:191;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;40874:667::-;41037:4;41074:2;41058:36;;;41095:12;:10;:12::i;:::-;41109:4;41115:7;41124:5;41058:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41054:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41309:1;41292:6;:13;:18;41288:235;;41338:40;;;;;;;;;;;;;;41288:235;41481:6;41475:13;41466:6;41462:2;41458:15;41451:38;41054:480;41187:45;;;41177:55;;;:6;:55;;;;41170:62;;;40874:667;;;;;;:::o;47639:113::-;47699:13;47732:12;47725:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47639:113;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;33237:163::-;33360:32;33366:2;33370:8;33380:5;33387:4;33360:5;:32::i;:::-;33237:163;;;:::o;42189:159::-;;;;;:::o;43007:158::-;;;;;:::o;33659:1775::-;33798:20;33821:13;;33798:36;;33863:1;33849:16;;:2;:16;;;33845:48;;33874:19;;;;;;;;;;;;;;33845:48;33920:1;33908:8;:13;33904:44;;33930:18;;;;;;;;;;;;;;33904:44;33961:61;33991:1;33995:2;33999:12;34013:8;33961:21;:61::i;:::-;34334:8;34299:12;:16;34312:2;34299:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34398:8;34358:12;:16;34371:2;34358:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34457:2;34424:11;:25;34436:12;34424:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34524:15;34474:11;:25;34486:12;34474:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34557:20;34580:12;34557:35;;34607:11;34636:8;34621:12;:23;34607:37;;34665:4;:23;;;;;34673:15;:2;:13;;;:15::i;:::-;34665:23;34661:641;;;34709:314;34765:12;34761:2;34740:38;;34757:1;34740:38;;;;;;;;;;;;34806:69;34845:1;34849:2;34853:14;;;;;;34869:5;34806:30;:69::i;:::-;34801:174;;34911:40;;;;;;;;;;;;;;34801:174;35018:3;35002:12;:19;34709:314;;35104:12;35087:13;;:29;35083:43;;35118:8;;;35083:43;34661:641;;;35167:120;35223:14;;;;;;35219:2;35198:40;;35215:1;35198:40;;;;;;;;;;;;35282:3;35266:12;:19;35167:120;;34661:641;35332:12;35316:13;:28;;;;34274:1082;;35366:60;35395:1;35399:2;35403:12;35417:8;35366:20;:60::i;:::-;33787:1647;33659:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:168::-;12520:20;12516:1;12508:6;12504:14;12497:44;12380:168;:::o;12554:366::-;12696:3;12717:67;12781:2;12776:3;12717:67;:::i;:::-;12710:74;;12793:93;12882:3;12793:93;:::i;:::-;12911:2;12906:3;12902:12;12895:19;;12554:366;;;:::o;12926:419::-;13092:4;13130:2;13119:9;13115:18;13107:26;;13179:9;13173:4;13169:20;13165:1;13154:9;13150:17;13143:47;13207:131;13333:4;13207:131;:::i;:::-;13199:139;;12926:419;;;:::o;13351:173::-;13491:25;13487:1;13479:6;13475:14;13468:49;13351:173;:::o;13530:366::-;13672:3;13693:67;13757:2;13752:3;13693:67;:::i;:::-;13686:74;;13769:93;13858:3;13769:93;:::i;:::-;13887:2;13882:3;13878:12;13871:19;;13530:366;;;:::o;13902:419::-;14068:4;14106:2;14095:9;14091:18;14083:26;;14155:9;14149:4;14145:20;14141:1;14130:9;14126:17;14119:47;14183:131;14309:4;14183:131;:::i;:::-;14175:139;;13902:419;;;:::o;14327:180::-;14375:77;14372:1;14365:88;14472:4;14469:1;14462:15;14496:4;14493:1;14486:15;14513:305;14553:3;14572:20;14590:1;14572:20;:::i;:::-;14567:25;;14606:20;14624:1;14606:20;:::i;:::-;14601:25;;14760:1;14692:66;14688:74;14685:1;14682:81;14679:107;;;14766:18;;:::i;:::-;14679:107;14810:1;14807;14803:9;14796:16;;14513:305;;;;:::o;14824:168::-;14964:20;14960:1;14952:6;14948:14;14941:44;14824:168;:::o;14998:366::-;15140:3;15161:67;15225:2;15220:3;15161:67;:::i;:::-;15154:74;;15237:93;15326:3;15237:93;:::i;:::-;15355:2;15350:3;15346:12;15339:19;;14998:366;;;:::o;15370:419::-;15536:4;15574:2;15563:9;15559:18;15551:26;;15623:9;15617:4;15613:20;15609:1;15598:9;15594:17;15587:47;15651:131;15777:4;15651:131;:::i;:::-;15643:139;;15370:419;;;:::o;15795:172::-;15935:24;15931:1;15923:6;15919:14;15912:48;15795:172;:::o;15973:366::-;16115:3;16136:67;16200:2;16195:3;16136:67;:::i;:::-;16129:74;;16212:93;16301:3;16212:93;:::i;:::-;16330:2;16325:3;16321:12;16314:19;;15973:366;;;:::o;16345:419::-;16511:4;16549:2;16538:9;16534:18;16526:26;;16598:9;16592:4;16588:20;16584:1;16573:9;16569:17;16562:47;16626:131;16752:4;16626:131;:::i;:::-;16618:139;;16345:419;;;:::o;16770:182::-;16910:34;16906:1;16898:6;16894:14;16887:58;16770:182;:::o;16958:366::-;17100:3;17121:67;17185:2;17180:3;17121:67;:::i;:::-;17114:74;;17197:93;17286:3;17197:93;:::i;:::-;17315:2;17310:3;17306:12;17299:19;;16958:366;;;:::o;17330:419::-;17496:4;17534:2;17523:9;17519:18;17511:26;;17583:9;17577:4;17573:20;17569:1;17558:9;17554:17;17547:47;17611:131;17737:4;17611:131;:::i;:::-;17603:139;;17330:419;;;:::o;17755:148::-;17857:11;17894:3;17879:18;;17755:148;;;;:::o;17909:377::-;18015:3;18043:39;18076:5;18043:39;:::i;:::-;18098:89;18180:6;18175:3;18098:89;:::i;:::-;18091:96;;18196:52;18241:6;18236:3;18229:4;18222:5;18218:16;18196:52;:::i;:::-;18273:6;18268:3;18264:16;18257:23;;18019:267;17909:377;;;;:::o;18292:435::-;18472:3;18494:95;18585:3;18576:6;18494:95;:::i;:::-;18487:102;;18606:95;18697:3;18688:6;18606:95;:::i;:::-;18599:102;;18718:3;18711:10;;18292:435;;;;;:::o;18733:174::-;18873:26;18869:1;18861:6;18857:14;18850:50;18733:174;:::o;18913:366::-;19055:3;19076:67;19140:2;19135:3;19076:67;:::i;:::-;19069:74;;19152:93;19241:3;19152:93;:::i;:::-;19270:2;19265:3;19261:12;19254:19;;18913:366;;;:::o;19285:419::-;19451:4;19489:2;19478:9;19474:18;19466:26;;19538:9;19532:4;19528:20;19524:1;19513:9;19509:17;19502:47;19566:131;19692:4;19566:131;:::i;:::-;19558:139;;19285:419;;;:::o;19710:225::-;19850:34;19846:1;19838:6;19834:14;19827:58;19919:8;19914:2;19906:6;19902:15;19895:33;19710:225;:::o;19941:366::-;20083:3;20104:67;20168:2;20163:3;20104:67;:::i;:::-;20097:74;;20180:93;20269:3;20180:93;:::i;:::-;20298:2;20293:3;20289:12;20282:19;;19941:366;;;:::o;20313:419::-;20479:4;20517:2;20506:9;20502:18;20494:26;;20566:9;20560:4;20556:20;20552:1;20541:9;20537:17;20530:47;20594:131;20720:4;20594:131;:::i;:::-;20586:139;;20313:419;;;:::o;20738:98::-;20789:6;20823:5;20817:12;20807:22;;20738:98;;;:::o;20842:168::-;20925:11;20959:6;20954:3;20947:19;20999:4;20994:3;20990:14;20975:29;;20842:168;;;;:::o;21016:360::-;21102:3;21130:38;21162:5;21130:38;:::i;:::-;21184:70;21247:6;21242:3;21184:70;:::i;:::-;21177:77;;21263:52;21308:6;21303:3;21296:4;21289:5;21285:16;21263:52;:::i;:::-;21340:29;21362:6;21340:29;:::i;:::-;21335:3;21331:39;21324:46;;21106:270;21016:360;;;;:::o;21382:640::-;21577:4;21615:3;21604:9;21600:19;21592:27;;21629:71;21697:1;21686:9;21682:17;21673:6;21629:71;:::i;:::-;21710:72;21778:2;21767:9;21763:18;21754:6;21710:72;:::i;:::-;21792;21860:2;21849:9;21845:18;21836:6;21792:72;:::i;:::-;21911:9;21905:4;21901:20;21896:2;21885:9;21881:18;21874:48;21939:76;22010:4;22001:6;21939:76;:::i;:::-;21931:84;;21382:640;;;;;;;:::o;22028:141::-;22084:5;22115:6;22109:13;22100:22;;22131:32;22157:5;22131:32;:::i;:::-;22028:141;;;;:::o;22175:349::-;22244:6;22293:2;22281:9;22272:7;22268:23;22264:32;22261:119;;;22299:79;;:::i;:::-;22261:119;22419:1;22444:63;22499:7;22490:6;22479:9;22475:22;22444:63;:::i;:::-;22434:73;;22390:127;22175:349;;;;:::o;22530:233::-;22569:3;22592:24;22610:5;22592:24;:::i;:::-;22583:33;;22638:66;22631:5;22628:77;22625:103;;22708:18;;:::i;:::-;22625:103;22755:1;22748:5;22744:13;22737:20;;22530:233;;;:::o;22769:180::-;22817:77;22814:1;22807:88;22914:4;22911:1;22904:15;22938:4;22935:1;22928:15;22955:185;22995:1;23012:20;23030:1;23012:20;:::i;:::-;23007:25;;23046:20;23064:1;23046:20;:::i;:::-;23041:25;;23085:1;23075:35;;23090:18;;:::i;:::-;23075:35;23132:1;23129;23125:9;23120:14;;22955:185;;;;:::o;23146:191::-;23186:4;23206:20;23224:1;23206:20;:::i;:::-;23201:25;;23240:20;23258:1;23240:20;:::i;:::-;23235:25;;23279:1;23276;23273:8;23270:34;;;23284:18;;:::i;:::-;23270:34;23329:1;23326;23322:9;23314:17;;23146:191;;;;:::o;23343:176::-;23375:1;23392:20;23410:1;23392:20;:::i;:::-;23387:25;;23426:20;23444:1;23426:20;:::i;:::-;23421:25;;23465:1;23455:35;;23470:18;;:::i;:::-;23455:35;23511:1;23508;23504:9;23499:14;;23343:176;;;;:::o;23525:180::-;23573:77;23570:1;23563:88;23670:4;23667:1;23660:15;23694:4;23691:1;23684:15
Swarm Source
ipfs://0260cc0c941e07bbc04be41660651b7dcf90d217b15d671c83aafca84525d134
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.