ERC-721
Overview
Max Total Supply
550 CRG
Holders
19
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
12 CRGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ChronixGrowKits
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-07 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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/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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // 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/ChronixGrowKits.sol pragma solidity ^0.8.7; interface IBUDS { function spendBuds(address user, uint256 amount) external; } interface ISTAKING { function registerDeposit(address ownerOfToken, address contractAddress, uint256 currentId, uint256 tokensToMint) external; function genesisCheck(address staker) external view returns(bool); } contract ChronixGrowKits is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI; uint256 public MAX_SUPPLY = 1000; uint256 public BASE_RATE_TOKENS = 3; uint256 public _basePrice= 10000 ether; uint256 public mintPrice= 0.0111 ether; uint256 public _incrementRate= 1000 ether; bool public saleIsActive; uint256 public time; IBUDS public BUDS; ISTAKING public STAKING; mapping(address => uint256) public _addressMintedBalance; constructor(address _buds, address _staking, string memory __baseURI) ERC721A("Chronix Grow Kits", "CRG"){ BUDS = IBUDS(_buds); STAKING = ISTAKING(_staking); baseURI = __baseURI; time=block.timestamp + 7 days; } function mint(uint256 tokensToMint, bool autoStake, bool ethPayment) public payable nonReentrant { require(saleIsActive, "The mint has not started yet"); require(tokensToMint > 0, "Min mint is 1 token"); require(totalSupply() + tokensToMint <= MAX_SUPPLY, "Mint more tokens than allowed"); if (ethPayment && block.timestamp > time) { require(msg.value >= tokensToMint * mintPrice,"Not enough eth sent"); } else { uint256 batchPrice = getTokenPrice(_msgSender(), tokensToMint); BUDS.spendBuds(_msgSender(), batchPrice); } _addressMintedBalance[_msgSender()] += tokensToMint; address to = autoStake ? address(STAKING) : _msgSender(); _safeMint(to,tokensToMint); uint256 currentId = totalSupply() - 1; if (autoStake) { require(STAKING.genesisCheck(_msgSender()), "You dont have a genesis"); STAKING.registerDeposit(_msgSender(), address(this), currentId, tokensToMint); } } function getTokenPrice(address user, uint256 amount) public view returns (uint256) { uint256 totalPrice; uint256 mintNum= _addressMintedBalance[user]; for (uint256 i; i < amount; i++) { mintNum++; if(mintNum > BASE_RATE_TOKENS ) { totalPrice = totalPrice + (mintNum - BASE_RATE_TOKENS) * _incrementRate + _basePrice; } else { totalPrice= totalPrice + _basePrice; } } return totalPrice; } //TOKENURI function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token"); return bytes(baseURI).length > 0 ? string(abi.encodePacked(_baseURI(), tokenId.toString(), '.json')) : ""; } //OWNER function flipSaleStatus() public onlyOwner { saleIsActive = !saleIsActive; } function updateSupply(uint256 _newSupply) public onlyOwner { require(!saleIsActive, "Pause sale before price update"); MAX_SUPPLY = _newSupply; } function setBaseURI(string calldata _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function setStakingContract(address _source) public onlyOwner { STAKING = ISTAKING(_source); } function setBudsContract(address _source) public onlyOwner { BUDS = IBUDS(_source); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(owner()).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_buds","type":"address"},{"internalType":"address","name":"_staking","type":"address"},{"internalType":"string","name":"__baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_RATE_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BUDS","outputs":[{"internalType":"contract IBUDS","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKING","outputs":[{"internalType":"contract ISTAKING","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_incrementRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleStatus","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":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensToMint","type":"uint256"},{"internalType":"bool","name":"autoStake","type":"bool"},{"internalType":"bool","name":"ethPayment","type":"bool"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_source","type":"address"}],"name":"setBudsContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_source","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"time","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526103e8600b556003600c5569021e19e0c9bab2400000600d5566276f642501c000600e55683635c9adc5dea00000600f553480156200004257600080fd5b50604051620046c4380380620046c4833981810160405281019062000068919062000419565b6040518060400160405280601181526020017f4368726f6e69782047726f77204b6974730000000000000000000000000000008152506040518060400160405280600381526020017f43524700000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ec929190620002d4565b50806003908051906020019062000105929190620002d4565b50620001166200020160201b60201c565b60008190555050506200013e620001326200020660201b60201c565b6200020e60201b60201c565b600160098190555082601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a9080519060200190620001e0929190620002d4565b5062093a8042620001f29190620004f3565b601181905550505050620006fc565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e290620005c4565b90600052602060002090601f01602090048101928262000306576000855562000352565b82601f106200032157805160ff191683800117855562000352565b8280016001018555821562000352579182015b828111156200035157825182559160200191906001019062000334565b5b50905062000361919062000365565b5090565b5b808211156200038057600081600090555060010162000366565b5090565b60006200039b6200039584620004bd565b62000494565b905082815260208101848484011115620003ba57620003b9620006c2565b5b620003c78482856200058e565b509392505050565b600081519050620003e081620006e2565b92915050565b600082601f830112620003fe57620003fd620006bd565b5b81516200041084826020860162000384565b91505092915050565b600080600060608486031215620004355762000434620006cc565b5b60006200044586828701620003cf565b93505060206200045886828701620003cf565b925050604084015167ffffffffffffffff8111156200047c576200047b620006c7565b5b6200048a86828701620003e6565b9150509250925092565b6000620004a0620004b3565b9050620004ae8282620005fa565b919050565b6000604051905090565b600067ffffffffffffffff821115620004db57620004da6200068e565b5b620004e682620006d1565b9050602081019050919050565b6000620005008262000584565b91506200050d8362000584565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000545576200054462000630565b5b828201905092915050565b60006200055d8262000564565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620005ae57808201518184015260208101905062000591565b83811115620005be576000848401525b50505050565b60006002820490506001821680620005dd57607f821691505b60208210811415620005f457620005f36200065f565b5b50919050565b6200060582620006d1565b810181811067ffffffffffffffff821117156200062757620006266200068e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620006ed8162000550565b8114620006f957600080fd5b50565b613fb8806200070c6000396000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063a22cb465116100a0578063cdf7b4e81161006f578063cdf7b4e81461078d578063ce03ec93146107a9578063e985e9c5146107c0578063eb8d2444146107fd578063f2fde38b146108285761020f565b8063a22cb465146106c1578063b88d4fde146106ea578063c87b56dd14610713578063c9f7153c146107505761020f565b8063785f403d116100e7578063785f403d146105ec5780638da5cb5b1461061757806395d89b411461064257806397610f301461066d5780639dd373b9146106985761020f565b80636c0360eb146105445780636d1b9f631461056f57806370a0823114610598578063715018a6146105d55761020f565b806332cb6b0c1161019b57806344cf661f1161016a57806344cf661f1461045f57806355f804b31461048a5780636352211e146104b35780636817c76c146104f05780636bd080491461051b5761020f565b806332cb6b0c146103c95780633ccfd60b146103f45780633ef248391461040b57806342842e0e146104365761020f565b80630fef8c19116101e25780630fef8c19146102e25780631439e94a1461031f57806316ada5471461034a57806318160ddd1461037557806323b872dd146103a05761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061320c565b610851565b60405161024891906136a6565b60405180910390f35b34801561025d57600080fd5b50610266610933565b60405161027391906136f7565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906132b3565b6109c5565b6040516102b091906135d1565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061319f565b610a41565b005b3480156102ee57600080fd5b506103096004803603810190610304919061301c565b610b4c565b6040516103169190613859565b60405180910390f35b34801561032b57600080fd5b50610334610b64565b60405161034191906136c1565b60405180910390f35b34801561035657600080fd5b5061035f610b8a565b60405161036c9190613859565b60405180910390f35b34801561038157600080fd5b5061038a610b90565b6040516103979190613859565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190613089565b610ba7565b005b3480156103d557600080fd5b506103de610bb7565b6040516103eb9190613859565b60405180910390f35b34801561040057600080fd5b50610409610bbd565b005b34801561041757600080fd5b50610420610c8f565b60405161042d9190613859565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613089565b610c95565b005b34801561046b57600080fd5b50610474610cb5565b6040516104819190613859565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613266565b610cbb565b005b3480156104bf57600080fd5b506104da60048036038101906104d591906132b3565b610d4d565b6040516104e791906135d1565b60405180910390f35b3480156104fc57600080fd5b50610505610d63565b6040516105129190613859565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d91906132b3565b610d69565b005b34801561055057600080fd5b50610559610e3f565b60405161056691906136f7565b60405180910390f35b34801561057b57600080fd5b506105966004803603810190610591919061301c565b610ecd565b005b3480156105a457600080fd5b506105bf60048036038101906105ba919061301c565b610f8d565b6040516105cc9190613859565b60405180910390f35b3480156105e157600080fd5b506105ea61105d565b005b3480156105f857600080fd5b506106016110e5565b60405161060e9190613859565b60405180910390f35b34801561062357600080fd5b5061062c6110eb565b60405161063991906135d1565b60405180910390f35b34801561064e57600080fd5b50610657611115565b60405161066491906136f7565b60405180910390f35b34801561067957600080fd5b506106826111a7565b60405161068f91906136dc565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061301c565b6111cd565b005b3480156106cd57600080fd5b506106e860048036038101906106e3919061315f565b61128d565b005b3480156106f657600080fd5b50610711600480360381019061070c91906130dc565b611405565b005b34801561071f57600080fd5b5061073a600480360381019061073591906132b3565b611481565b60405161074791906136f7565b60405180910390f35b34801561075c57600080fd5b506107776004803603810190610772919061319f565b61152f565b6040516107849190613859565b60405180910390f35b6107a760048036038101906107a291906132e0565b611603565b005b3480156107b557600080fd5b506107be611aa9565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190613049565b611b51565b6040516107f491906136a6565b60405180910390f35b34801561080957600080fd5b50610812611be5565b60405161081f91906136a6565b60405180910390f35b34801561083457600080fd5b5061084f600480360381019061084a919061301c565b611bf8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092c575061092b82611cf0565b5b9050919050565b60606002805461094290613b20565b80601f016020809104026020016040519081016040528092919081815260200182805461096e90613b20565b80156109bb5780601f10610990576101008083540402835291602001916109bb565b820191906000526020600020905b81548152906001019060200180831161099e57829003601f168201915b5050505050905090565b60006109d082611d5a565b610a06576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4c82610d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad3611da8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b055750610b0381610afe611da8565b611b51565b155b15610b3c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b47838383611db0565b505050565b60146020528060005260406000206000915090505481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000610b9a611e62565b6001546000540303905090565b610bb2838383611e67565b505050565b600b5481565b610bc5611da8565b73ffffffffffffffffffffffffffffffffffffffff16610be36110eb565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613759565b60405180910390fd5b6000479050610c466110eb565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c8b573d6000803e3d6000fd5b5050565b600f5481565b610cb083838360405180602001604052806000815250611405565b505050565b600d5481565b610cc3611da8565b73ffffffffffffffffffffffffffffffffffffffff16610ce16110eb565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90613759565b60405180910390fd5b8181600a9190610d48929190612df2565b505050565b6000610d588261231d565b600001519050919050565b600e5481565b610d71611da8565b73ffffffffffffffffffffffffffffffffffffffff16610d8f6110eb565b73ffffffffffffffffffffffffffffffffffffffff1614610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90613759565b60405180910390fd5b601060009054906101000a900460ff1615610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c906137f9565b60405180910390fd5b80600b8190555050565b600a8054610e4c90613b20565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7890613b20565b8015610ec55780601f10610e9a57610100808354040283529160200191610ec5565b820191906000526020600020905b815481529060010190602001808311610ea857829003601f168201915b505050505081565b610ed5611da8565b73ffffffffffffffffffffffffffffffffffffffff16610ef36110eb565b73ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090613759565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611065611da8565b73ffffffffffffffffffffffffffffffffffffffff166110836110eb565b73ffffffffffffffffffffffffffffffffffffffff16146110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090613759565b60405180910390fd5b6110e360006125ac565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461112490613b20565b80601f016020809104026020016040519081016040528092919081815260200182805461115090613b20565b801561119d5780601f106111725761010080835404028352916020019161119d565b820191906000526020600020905b81548152906001019060200180831161118057829003601f168201915b5050505050905090565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111d5611da8565b73ffffffffffffffffffffffffffffffffffffffff166111f36110eb565b73ffffffffffffffffffffffffffffffffffffffff1614611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090613759565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611295611da8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611307611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b4611da8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113f991906136a6565b60405180910390a35050565b611410848484611e67565b61142f8373ffffffffffffffffffffffffffffffffffffffff16612672565b8015611444575061144284848484612695565b155b1561147b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061148c82611d5a565b6114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613799565b60405180910390fd5b6000600a80546114da90613b20565b9050116114f65760405180602001604052806000815250611528565b6114fe6127f5565b61150783612887565b6040516020016115189291906135a2565b6040516020818303038152906040525b9050919050565b6000806000601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060005b848110156115f757818061158c90613b83565b925050600c548211156115d357600d54600f54600c54846115ad91906139ee565b6115b79190613994565b846115c2919061390d565b6115cc919061390d565b92506115e4565b600d54836115e1919061390d565b92505b80806115ef90613b83565b915050611579565b50819250505092915050565b60026009541415611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613819565b60405180910390fd5b6002600981905550601060009054906101000a900460ff166116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613839565b60405180910390fd5b600083116116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90613739565b60405180910390fd5b600b54836116ef610b90565b6116f9919061390d565b111561173a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611731906137b9565b60405180910390fd5b808015611748575060115442115b156117a257600e548361175b9190613994565b34101561179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490613779565b60405180910390fd5b61184f565b60006117b56117af611da8565b8561152f565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166354e4627a6117fd611da8565b836040518363ffffffff1660e01b815260040161181b92919061367d565b600060405180830381600087803b15801561183557600080fd5b505af1158015611849573d6000803e3d6000fd5b50505050505b826014600061185c611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a5919061390d565b925050819055506000826118c0576118bb611da8565b6118e4565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b90506118f081856129e8565b600060016118fc610b90565b61190691906139ee565b90508315611a9a57601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fd7c1359611954611da8565b6040518263ffffffff1660e01b815260040161197091906135d1565b60206040518083038186803b15801561198857600080fd5b505afa15801561199c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c091906131df565b6119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906137d9565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166364bcb10c611a45611da8565b3084896040518563ffffffff1660e01b8152600401611a679493929190613638565b600060405180830381600087803b158015611a8157600080fd5b505af1158015611a95573d6000803e3d6000fd5b505050505b50506001600981905550505050565b611ab1611da8565b73ffffffffffffffffffffffffffffffffffffffff16611acf6110eb565b73ffffffffffffffffffffffffffffffffffffffff1614611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c90613759565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611c00611da8565b73ffffffffffffffffffffffffffffffffffffffff16611c1e6110eb565b73ffffffffffffffffffffffffffffffffffffffff1614611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90613759565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613719565b60405180910390fd5b611ced816125ac565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611d65611e62565b11158015611d74575060005482105b8015611da1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611e728261231d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611edd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611efe611da8565b73ffffffffffffffffffffffffffffffffffffffff161480611f2d5750611f2c85611f27611da8565b611b51565b5b80611f725750611f3b611da8565b73ffffffffffffffffffffffffffffffffffffffff16611f5a846109c5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612012576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61201f8585856001612a06565b61202b60008487611db0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122ab5760005482146122aa57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123168585856001612a0c565b5050505050565b612325612e78565b600082905080612333611e62565b11158015612342575060005481105b15612575576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161257357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124575780925050506125a7565b5b60011561257257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461256d5780925050506125a7565b612458565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126bb611da8565b8786866040518563ffffffff1660e01b81526004016126dd94939291906135ec565b602060405180830381600087803b1580156126f757600080fd5b505af192505050801561272857506040513d601f19601f820116820180604052508101906127259190613239565b60015b6127a2573d8060008114612758576040519150601f19603f3d011682016040523d82523d6000602084013e61275d565b606091505b5060008151141561279a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461280490613b20565b80601f016020809104026020016040519081016040528092919081815260200182805461283090613b20565b801561287d5780601f106128525761010080835404028352916020019161287d565b820191906000526020600020905b81548152906001019060200180831161286057829003601f168201915b5050505050905090565b606060008214156128cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129e3565b600082905060005b600082146129015780806128ea90613b83565b915050600a826128fa9190613963565b91506128d7565b60008167ffffffffffffffff81111561291d5761291c613cb9565b5b6040519080825280601f01601f19166020018201604052801561294f5781602001600182028036833780820191505090505b5090505b600085146129dc5760018261296891906139ee565b9150600a856129779190613bcc565b6030612983919061390d565b60f81b81838151811061299957612998613c8a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129d59190613963565b9450612953565b8093505050505b919050565b612a02828260405180602001604052806000815250612a12565b5050565b50505050565b50505050565b612a1f8383836001612a24565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a91576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612acc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ad96000868387612a06565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ca35750612ca28773ffffffffffffffffffffffffffffffffffffffff16612672565b5b15612d69575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d186000888480600101955088612695565b612d4e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ca9578260005414612d6457600080fd5b612dd5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612d6a575b816000819055505050612deb6000868387612a0c565b5050505050565b828054612dfe90613b20565b90600052602060002090601f016020900481019282612e205760008555612e67565b82601f10612e3957803560ff1916838001178555612e67565b82800160010185558215612e67579182015b82811115612e66578235825591602001919060010190612e4b565b5b509050612e749190612ebb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ed4576000816000905550600101612ebc565b5090565b6000612eeb612ee684613899565b613874565b905082815260208101848484011115612f0757612f06613cf7565b5b612f12848285613ade565b509392505050565b600081359050612f2981613f26565b92915050565b600081359050612f3e81613f3d565b92915050565b600081519050612f5381613f3d565b92915050565b600081359050612f6881613f54565b92915050565b600081519050612f7d81613f54565b92915050565b600082601f830112612f9857612f97613ced565b5b8135612fa8848260208601612ed8565b91505092915050565b60008083601f840112612fc757612fc6613ced565b5b8235905067ffffffffffffffff811115612fe457612fe3613ce8565b5b60208301915083600182028301111561300057612fff613cf2565b5b9250929050565b60008135905061301681613f6b565b92915050565b60006020828403121561303257613031613d01565b5b600061304084828501612f1a565b91505092915050565b600080604083850312156130605761305f613d01565b5b600061306e85828601612f1a565b925050602061307f85828601612f1a565b9150509250929050565b6000806000606084860312156130a2576130a1613d01565b5b60006130b086828701612f1a565b93505060206130c186828701612f1a565b92505060406130d286828701613007565b9150509250925092565b600080600080608085870312156130f6576130f5613d01565b5b600061310487828801612f1a565b945050602061311587828801612f1a565b935050604061312687828801613007565b925050606085013567ffffffffffffffff81111561314757613146613cfc565b5b61315387828801612f83565b91505092959194509250565b6000806040838503121561317657613175613d01565b5b600061318485828601612f1a565b925050602061319585828601612f2f565b9150509250929050565b600080604083850312156131b6576131b5613d01565b5b60006131c485828601612f1a565b92505060206131d585828601613007565b9150509250929050565b6000602082840312156131f5576131f4613d01565b5b600061320384828501612f44565b91505092915050565b60006020828403121561322257613221613d01565b5b600061323084828501612f59565b91505092915050565b60006020828403121561324f5761324e613d01565b5b600061325d84828501612f6e565b91505092915050565b6000806020838503121561327d5761327c613d01565b5b600083013567ffffffffffffffff81111561329b5761329a613cfc565b5b6132a785828601612fb1565b92509250509250929050565b6000602082840312156132c9576132c8613d01565b5b60006132d784828501613007565b91505092915050565b6000806000606084860312156132f9576132f8613d01565b5b600061330786828701613007565b935050602061331886828701612f2f565b925050604061332986828701612f2f565b9150509250925092565b61333c81613a22565b82525050565b61334b81613a34565b82525050565b600061335c826138ca565b61336681856138e0565b9350613376818560208601613aed565b61337f81613d06565b840191505092915050565b61339381613a96565b82525050565b6133a281613aa8565b82525050565b60006133b3826138d5565b6133bd81856138f1565b93506133cd818560208601613aed565b6133d681613d06565b840191505092915050565b60006133ec826138d5565b6133f68185613902565b9350613406818560208601613aed565b80840191505092915050565b600061341f6026836138f1565b915061342a82613d17565b604082019050919050565b60006134426013836138f1565b915061344d82613d66565b602082019050919050565b6000613465600583613902565b915061347082613d8f565b600582019050919050565b60006134886020836138f1565b915061349382613db8565b602082019050919050565b60006134ab6013836138f1565b91506134b682613de1565b602082019050919050565b60006134ce602f836138f1565b91506134d982613e0a565b604082019050919050565b60006134f1601d836138f1565b91506134fc82613e59565b602082019050919050565b60006135146017836138f1565b915061351f82613e82565b602082019050919050565b6000613537601e836138f1565b915061354282613eab565b602082019050919050565b600061355a601f836138f1565b915061356582613ed4565b602082019050919050565b600061357d601c836138f1565b915061358882613efd565b602082019050919050565b61359c81613a8c565b82525050565b60006135ae82856133e1565b91506135ba82846133e1565b91506135c582613458565b91508190509392505050565b60006020820190506135e66000830184613333565b92915050565b60006080820190506136016000830187613333565b61360e6020830186613333565b61361b6040830185613593565b818103606083015261362d8184613351565b905095945050505050565b600060808201905061364d6000830187613333565b61365a6020830186613333565b6136676040830185613593565b6136746060830184613593565b95945050505050565b60006040820190506136926000830185613333565b61369f6020830184613593565b9392505050565b60006020820190506136bb6000830184613342565b92915050565b60006020820190506136d6600083018461338a565b92915050565b60006020820190506136f16000830184613399565b92915050565b6000602082019050818103600083015261371181846133a8565b905092915050565b6000602082019050818103600083015261373281613412565b9050919050565b6000602082019050818103600083015261375281613435565b9050919050565b600060208201905081810360008301526137728161347b565b9050919050565b600060208201905081810360008301526137928161349e565b9050919050565b600060208201905081810360008301526137b2816134c1565b9050919050565b600060208201905081810360008301526137d2816134e4565b9050919050565b600060208201905081810360008301526137f281613507565b9050919050565b600060208201905081810360008301526138128161352a565b9050919050565b600060208201905081810360008301526138328161354d565b9050919050565b6000602082019050818103600083015261385281613570565b9050919050565b600060208201905061386e6000830184613593565b92915050565b600061387e61388f565b905061388a8282613b52565b919050565b6000604051905090565b600067ffffffffffffffff8211156138b4576138b3613cb9565b5b6138bd82613d06565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061391882613a8c565b915061392383613a8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395857613957613bfd565b5b828201905092915050565b600061396e82613a8c565b915061397983613a8c565b92508261398957613988613c2c565b5b828204905092915050565b600061399f82613a8c565b91506139aa83613a8c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139e3576139e2613bfd565b5b828202905092915050565b60006139f982613a8c565b9150613a0483613a8c565b925082821015613a1757613a16613bfd565b5b828203905092915050565b6000613a2d82613a6c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613aa182613aba565b9050919050565b6000613ab382613aba565b9050919050565b6000613ac582613acc565b9050919050565b6000613ad782613a6c565b9050919050565b82818337600083830152505050565b60005b83811015613b0b578082015181840152602081019050613af0565b83811115613b1a576000848401525b50505050565b60006002820490506001821680613b3857607f821691505b60208210811415613b4c57613b4b613c5b565b5b50919050565b613b5b82613d06565b810181811067ffffffffffffffff82111715613b7a57613b79613cb9565b5b80604052505050565b6000613b8e82613a8c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bc157613bc0613bfd565b5b600182019050919050565b6000613bd782613a8c565b9150613be283613a8c565b925082613bf257613bf1613c2c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e206d696e74206973203120746f6b656e00000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768206574682073656e7400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d696e74206d6f726520746f6b656e73207468616e20616c6c6f776564000000600082015250565b7f596f7520646f6e74206861766520612067656e65736973000000000000000000600082015250565b7f50617573652073616c65206265666f7265207072696365207570646174650000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546865206d696e7420686173206e6f7420737461727465642079657400000000600082015250565b613f2f81613a22565b8114613f3a57600080fd5b50565b613f4681613a34565b8114613f5157600080fd5b50565b613f5d81613a40565b8114613f6857600080fd5b50565b613f7481613a8c565b8114613f7f57600080fd5b5056fea26469706673582212209d55084c77c71ddd2dd9bc06112f3262b484704e9f097420d37d475ecee6c23d64736f6c6343000807003300000000000000000000000045f730931d93b08559885c4fb274db740388cd80000000000000000000000000d8e577c6f71edb1819368ff4b8c9b38b2bd8e54d00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d656641357952534e7a79535878547432785233677266625071585175397859316d6e346965646b32597345682f00000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063a22cb465116100a0578063cdf7b4e81161006f578063cdf7b4e81461078d578063ce03ec93146107a9578063e985e9c5146107c0578063eb8d2444146107fd578063f2fde38b146108285761020f565b8063a22cb465146106c1578063b88d4fde146106ea578063c87b56dd14610713578063c9f7153c146107505761020f565b8063785f403d116100e7578063785f403d146105ec5780638da5cb5b1461061757806395d89b411461064257806397610f301461066d5780639dd373b9146106985761020f565b80636c0360eb146105445780636d1b9f631461056f57806370a0823114610598578063715018a6146105d55761020f565b806332cb6b0c1161019b57806344cf661f1161016a57806344cf661f1461045f57806355f804b31461048a5780636352211e146104b35780636817c76c146104f05780636bd080491461051b5761020f565b806332cb6b0c146103c95780633ccfd60b146103f45780633ef248391461040b57806342842e0e146104365761020f565b80630fef8c19116101e25780630fef8c19146102e25780631439e94a1461031f57806316ada5471461034a57806318160ddd1461037557806323b872dd146103a05761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061320c565b610851565b60405161024891906136a6565b60405180910390f35b34801561025d57600080fd5b50610266610933565b60405161027391906136f7565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906132b3565b6109c5565b6040516102b091906135d1565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061319f565b610a41565b005b3480156102ee57600080fd5b506103096004803603810190610304919061301c565b610b4c565b6040516103169190613859565b60405180910390f35b34801561032b57600080fd5b50610334610b64565b60405161034191906136c1565b60405180910390f35b34801561035657600080fd5b5061035f610b8a565b60405161036c9190613859565b60405180910390f35b34801561038157600080fd5b5061038a610b90565b6040516103979190613859565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190613089565b610ba7565b005b3480156103d557600080fd5b506103de610bb7565b6040516103eb9190613859565b60405180910390f35b34801561040057600080fd5b50610409610bbd565b005b34801561041757600080fd5b50610420610c8f565b60405161042d9190613859565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613089565b610c95565b005b34801561046b57600080fd5b50610474610cb5565b6040516104819190613859565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613266565b610cbb565b005b3480156104bf57600080fd5b506104da60048036038101906104d591906132b3565b610d4d565b6040516104e791906135d1565b60405180910390f35b3480156104fc57600080fd5b50610505610d63565b6040516105129190613859565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d91906132b3565b610d69565b005b34801561055057600080fd5b50610559610e3f565b60405161056691906136f7565b60405180910390f35b34801561057b57600080fd5b506105966004803603810190610591919061301c565b610ecd565b005b3480156105a457600080fd5b506105bf60048036038101906105ba919061301c565b610f8d565b6040516105cc9190613859565b60405180910390f35b3480156105e157600080fd5b506105ea61105d565b005b3480156105f857600080fd5b506106016110e5565b60405161060e9190613859565b60405180910390f35b34801561062357600080fd5b5061062c6110eb565b60405161063991906135d1565b60405180910390f35b34801561064e57600080fd5b50610657611115565b60405161066491906136f7565b60405180910390f35b34801561067957600080fd5b506106826111a7565b60405161068f91906136dc565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061301c565b6111cd565b005b3480156106cd57600080fd5b506106e860048036038101906106e3919061315f565b61128d565b005b3480156106f657600080fd5b50610711600480360381019061070c91906130dc565b611405565b005b34801561071f57600080fd5b5061073a600480360381019061073591906132b3565b611481565b60405161074791906136f7565b60405180910390f35b34801561075c57600080fd5b506107776004803603810190610772919061319f565b61152f565b6040516107849190613859565b60405180910390f35b6107a760048036038101906107a291906132e0565b611603565b005b3480156107b557600080fd5b506107be611aa9565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190613049565b611b51565b6040516107f491906136a6565b60405180910390f35b34801561080957600080fd5b50610812611be5565b60405161081f91906136a6565b60405180910390f35b34801561083457600080fd5b5061084f600480360381019061084a919061301c565b611bf8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092c575061092b82611cf0565b5b9050919050565b60606002805461094290613b20565b80601f016020809104026020016040519081016040528092919081815260200182805461096e90613b20565b80156109bb5780601f10610990576101008083540402835291602001916109bb565b820191906000526020600020905b81548152906001019060200180831161099e57829003601f168201915b5050505050905090565b60006109d082611d5a565b610a06576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4c82610d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad3611da8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b055750610b0381610afe611da8565b611b51565b155b15610b3c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b47838383611db0565b505050565b60146020528060005260406000206000915090505481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000610b9a611e62565b6001546000540303905090565b610bb2838383611e67565b505050565b600b5481565b610bc5611da8565b73ffffffffffffffffffffffffffffffffffffffff16610be36110eb565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613759565b60405180910390fd5b6000479050610c466110eb565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c8b573d6000803e3d6000fd5b5050565b600f5481565b610cb083838360405180602001604052806000815250611405565b505050565b600d5481565b610cc3611da8565b73ffffffffffffffffffffffffffffffffffffffff16610ce16110eb565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90613759565b60405180910390fd5b8181600a9190610d48929190612df2565b505050565b6000610d588261231d565b600001519050919050565b600e5481565b610d71611da8565b73ffffffffffffffffffffffffffffffffffffffff16610d8f6110eb565b73ffffffffffffffffffffffffffffffffffffffff1614610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90613759565b60405180910390fd5b601060009054906101000a900460ff1615610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c906137f9565b60405180910390fd5b80600b8190555050565b600a8054610e4c90613b20565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7890613b20565b8015610ec55780601f10610e9a57610100808354040283529160200191610ec5565b820191906000526020600020905b815481529060010190602001808311610ea857829003601f168201915b505050505081565b610ed5611da8565b73ffffffffffffffffffffffffffffffffffffffff16610ef36110eb565b73ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090613759565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611065611da8565b73ffffffffffffffffffffffffffffffffffffffff166110836110eb565b73ffffffffffffffffffffffffffffffffffffffff16146110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090613759565b60405180910390fd5b6110e360006125ac565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461112490613b20565b80601f016020809104026020016040519081016040528092919081815260200182805461115090613b20565b801561119d5780601f106111725761010080835404028352916020019161119d565b820191906000526020600020905b81548152906001019060200180831161118057829003601f168201915b5050505050905090565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111d5611da8565b73ffffffffffffffffffffffffffffffffffffffff166111f36110eb565b73ffffffffffffffffffffffffffffffffffffffff1614611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090613759565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611295611da8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611307611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b4611da8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113f991906136a6565b60405180910390a35050565b611410848484611e67565b61142f8373ffffffffffffffffffffffffffffffffffffffff16612672565b8015611444575061144284848484612695565b155b1561147b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061148c82611d5a565b6114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613799565b60405180910390fd5b6000600a80546114da90613b20565b9050116114f65760405180602001604052806000815250611528565b6114fe6127f5565b61150783612887565b6040516020016115189291906135a2565b6040516020818303038152906040525b9050919050565b6000806000601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060005b848110156115f757818061158c90613b83565b925050600c548211156115d357600d54600f54600c54846115ad91906139ee565b6115b79190613994565b846115c2919061390d565b6115cc919061390d565b92506115e4565b600d54836115e1919061390d565b92505b80806115ef90613b83565b915050611579565b50819250505092915050565b60026009541415611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613819565b60405180910390fd5b6002600981905550601060009054906101000a900460ff166116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613839565b60405180910390fd5b600083116116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90613739565b60405180910390fd5b600b54836116ef610b90565b6116f9919061390d565b111561173a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611731906137b9565b60405180910390fd5b808015611748575060115442115b156117a257600e548361175b9190613994565b34101561179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490613779565b60405180910390fd5b61184f565b60006117b56117af611da8565b8561152f565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166354e4627a6117fd611da8565b836040518363ffffffff1660e01b815260040161181b92919061367d565b600060405180830381600087803b15801561183557600080fd5b505af1158015611849573d6000803e3d6000fd5b50505050505b826014600061185c611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a5919061390d565b925050819055506000826118c0576118bb611da8565b6118e4565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b90506118f081856129e8565b600060016118fc610b90565b61190691906139ee565b90508315611a9a57601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fd7c1359611954611da8565b6040518263ffffffff1660e01b815260040161197091906135d1565b60206040518083038186803b15801561198857600080fd5b505afa15801561199c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c091906131df565b6119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906137d9565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166364bcb10c611a45611da8565b3084896040518563ffffffff1660e01b8152600401611a679493929190613638565b600060405180830381600087803b158015611a8157600080fd5b505af1158015611a95573d6000803e3d6000fd5b505050505b50506001600981905550505050565b611ab1611da8565b73ffffffffffffffffffffffffffffffffffffffff16611acf6110eb565b73ffffffffffffffffffffffffffffffffffffffff1614611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c90613759565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611c00611da8565b73ffffffffffffffffffffffffffffffffffffffff16611c1e6110eb565b73ffffffffffffffffffffffffffffffffffffffff1614611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90613759565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613719565b60405180910390fd5b611ced816125ac565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611d65611e62565b11158015611d74575060005482105b8015611da1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611e728261231d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611edd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611efe611da8565b73ffffffffffffffffffffffffffffffffffffffff161480611f2d5750611f2c85611f27611da8565b611b51565b5b80611f725750611f3b611da8565b73ffffffffffffffffffffffffffffffffffffffff16611f5a846109c5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612012576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61201f8585856001612a06565b61202b60008487611db0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122ab5760005482146122aa57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123168585856001612a0c565b5050505050565b612325612e78565b600082905080612333611e62565b11158015612342575060005481105b15612575576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161257357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124575780925050506125a7565b5b60011561257257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461256d5780925050506125a7565b612458565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126bb611da8565b8786866040518563ffffffff1660e01b81526004016126dd94939291906135ec565b602060405180830381600087803b1580156126f757600080fd5b505af192505050801561272857506040513d601f19601f820116820180604052508101906127259190613239565b60015b6127a2573d8060008114612758576040519150601f19603f3d011682016040523d82523d6000602084013e61275d565b606091505b5060008151141561279a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461280490613b20565b80601f016020809104026020016040519081016040528092919081815260200182805461283090613b20565b801561287d5780601f106128525761010080835404028352916020019161287d565b820191906000526020600020905b81548152906001019060200180831161286057829003601f168201915b5050505050905090565b606060008214156128cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129e3565b600082905060005b600082146129015780806128ea90613b83565b915050600a826128fa9190613963565b91506128d7565b60008167ffffffffffffffff81111561291d5761291c613cb9565b5b6040519080825280601f01601f19166020018201604052801561294f5781602001600182028036833780820191505090505b5090505b600085146129dc5760018261296891906139ee565b9150600a856129779190613bcc565b6030612983919061390d565b60f81b81838151811061299957612998613c8a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129d59190613963565b9450612953565b8093505050505b919050565b612a02828260405180602001604052806000815250612a12565b5050565b50505050565b50505050565b612a1f8383836001612a24565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a91576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612acc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ad96000868387612a06565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ca35750612ca28773ffffffffffffffffffffffffffffffffffffffff16612672565b5b15612d69575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d186000888480600101955088612695565b612d4e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ca9578260005414612d6457600080fd5b612dd5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612d6a575b816000819055505050612deb6000868387612a0c565b5050505050565b828054612dfe90613b20565b90600052602060002090601f016020900481019282612e205760008555612e67565b82601f10612e3957803560ff1916838001178555612e67565b82800160010185558215612e67579182015b82811115612e66578235825591602001919060010190612e4b565b5b509050612e749190612ebb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ed4576000816000905550600101612ebc565b5090565b6000612eeb612ee684613899565b613874565b905082815260208101848484011115612f0757612f06613cf7565b5b612f12848285613ade565b509392505050565b600081359050612f2981613f26565b92915050565b600081359050612f3e81613f3d565b92915050565b600081519050612f5381613f3d565b92915050565b600081359050612f6881613f54565b92915050565b600081519050612f7d81613f54565b92915050565b600082601f830112612f9857612f97613ced565b5b8135612fa8848260208601612ed8565b91505092915050565b60008083601f840112612fc757612fc6613ced565b5b8235905067ffffffffffffffff811115612fe457612fe3613ce8565b5b60208301915083600182028301111561300057612fff613cf2565b5b9250929050565b60008135905061301681613f6b565b92915050565b60006020828403121561303257613031613d01565b5b600061304084828501612f1a565b91505092915050565b600080604083850312156130605761305f613d01565b5b600061306e85828601612f1a565b925050602061307f85828601612f1a565b9150509250929050565b6000806000606084860312156130a2576130a1613d01565b5b60006130b086828701612f1a565b93505060206130c186828701612f1a565b92505060406130d286828701613007565b9150509250925092565b600080600080608085870312156130f6576130f5613d01565b5b600061310487828801612f1a565b945050602061311587828801612f1a565b935050604061312687828801613007565b925050606085013567ffffffffffffffff81111561314757613146613cfc565b5b61315387828801612f83565b91505092959194509250565b6000806040838503121561317657613175613d01565b5b600061318485828601612f1a565b925050602061319585828601612f2f565b9150509250929050565b600080604083850312156131b6576131b5613d01565b5b60006131c485828601612f1a565b92505060206131d585828601613007565b9150509250929050565b6000602082840312156131f5576131f4613d01565b5b600061320384828501612f44565b91505092915050565b60006020828403121561322257613221613d01565b5b600061323084828501612f59565b91505092915050565b60006020828403121561324f5761324e613d01565b5b600061325d84828501612f6e565b91505092915050565b6000806020838503121561327d5761327c613d01565b5b600083013567ffffffffffffffff81111561329b5761329a613cfc565b5b6132a785828601612fb1565b92509250509250929050565b6000602082840312156132c9576132c8613d01565b5b60006132d784828501613007565b91505092915050565b6000806000606084860312156132f9576132f8613d01565b5b600061330786828701613007565b935050602061331886828701612f2f565b925050604061332986828701612f2f565b9150509250925092565b61333c81613a22565b82525050565b61334b81613a34565b82525050565b600061335c826138ca565b61336681856138e0565b9350613376818560208601613aed565b61337f81613d06565b840191505092915050565b61339381613a96565b82525050565b6133a281613aa8565b82525050565b60006133b3826138d5565b6133bd81856138f1565b93506133cd818560208601613aed565b6133d681613d06565b840191505092915050565b60006133ec826138d5565b6133f68185613902565b9350613406818560208601613aed565b80840191505092915050565b600061341f6026836138f1565b915061342a82613d17565b604082019050919050565b60006134426013836138f1565b915061344d82613d66565b602082019050919050565b6000613465600583613902565b915061347082613d8f565b600582019050919050565b60006134886020836138f1565b915061349382613db8565b602082019050919050565b60006134ab6013836138f1565b91506134b682613de1565b602082019050919050565b60006134ce602f836138f1565b91506134d982613e0a565b604082019050919050565b60006134f1601d836138f1565b91506134fc82613e59565b602082019050919050565b60006135146017836138f1565b915061351f82613e82565b602082019050919050565b6000613537601e836138f1565b915061354282613eab565b602082019050919050565b600061355a601f836138f1565b915061356582613ed4565b602082019050919050565b600061357d601c836138f1565b915061358882613efd565b602082019050919050565b61359c81613a8c565b82525050565b60006135ae82856133e1565b91506135ba82846133e1565b91506135c582613458565b91508190509392505050565b60006020820190506135e66000830184613333565b92915050565b60006080820190506136016000830187613333565b61360e6020830186613333565b61361b6040830185613593565b818103606083015261362d8184613351565b905095945050505050565b600060808201905061364d6000830187613333565b61365a6020830186613333565b6136676040830185613593565b6136746060830184613593565b95945050505050565b60006040820190506136926000830185613333565b61369f6020830184613593565b9392505050565b60006020820190506136bb6000830184613342565b92915050565b60006020820190506136d6600083018461338a565b92915050565b60006020820190506136f16000830184613399565b92915050565b6000602082019050818103600083015261371181846133a8565b905092915050565b6000602082019050818103600083015261373281613412565b9050919050565b6000602082019050818103600083015261375281613435565b9050919050565b600060208201905081810360008301526137728161347b565b9050919050565b600060208201905081810360008301526137928161349e565b9050919050565b600060208201905081810360008301526137b2816134c1565b9050919050565b600060208201905081810360008301526137d2816134e4565b9050919050565b600060208201905081810360008301526137f281613507565b9050919050565b600060208201905081810360008301526138128161352a565b9050919050565b600060208201905081810360008301526138328161354d565b9050919050565b6000602082019050818103600083015261385281613570565b9050919050565b600060208201905061386e6000830184613593565b92915050565b600061387e61388f565b905061388a8282613b52565b919050565b6000604051905090565b600067ffffffffffffffff8211156138b4576138b3613cb9565b5b6138bd82613d06565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061391882613a8c565b915061392383613a8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395857613957613bfd565b5b828201905092915050565b600061396e82613a8c565b915061397983613a8c565b92508261398957613988613c2c565b5b828204905092915050565b600061399f82613a8c565b91506139aa83613a8c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139e3576139e2613bfd565b5b828202905092915050565b60006139f982613a8c565b9150613a0483613a8c565b925082821015613a1757613a16613bfd565b5b828203905092915050565b6000613a2d82613a6c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613aa182613aba565b9050919050565b6000613ab382613aba565b9050919050565b6000613ac582613acc565b9050919050565b6000613ad782613a6c565b9050919050565b82818337600083830152505050565b60005b83811015613b0b578082015181840152602081019050613af0565b83811115613b1a576000848401525b50505050565b60006002820490506001821680613b3857607f821691505b60208210811415613b4c57613b4b613c5b565b5b50919050565b613b5b82613d06565b810181811067ffffffffffffffff82111715613b7a57613b79613cb9565b5b80604052505050565b6000613b8e82613a8c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bc157613bc0613bfd565b5b600182019050919050565b6000613bd782613a8c565b9150613be283613a8c565b925082613bf257613bf1613c2c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e206d696e74206973203120746f6b656e00000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768206574682073656e7400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d696e74206d6f726520746f6b656e73207468616e20616c6c6f776564000000600082015250565b7f596f7520646f6e74206861766520612067656e65736973000000000000000000600082015250565b7f50617573652073616c65206265666f7265207072696365207570646174650000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546865206d696e7420686173206e6f7420737461727465642079657400000000600082015250565b613f2f81613a22565b8114613f3a57600080fd5b50565b613f4681613a34565b8114613f5157600080fd5b50565b613f5d81613a40565b8114613f6857600080fd5b50565b613f7481613a8c565b8114613f7f57600080fd5b5056fea26469706673582212209d55084c77c71ddd2dd9bc06112f3262b484704e9f097420d37d475ecee6c23d64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000045f730931d93b08559885c4fb274db740388cd80000000000000000000000000d8e577c6f71edb1819368ff4b8c9b38b2bd8e54d00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d656641357952534e7a79535878547432785233677266625071585175397859316d6e346965646b32597345682f00000000000000000000
-----Decoded View---------------
Arg [0] : _buds (address): 0x45f730931D93B08559885c4fB274Db740388cd80
Arg [1] : _staking (address): 0xd8e577c6f71EDB1819368ff4b8C9B38B2BD8e54D
Arg [2] : __baseURI (string): ipfs://QmefA5yRSNzySXxTt2xR3grfbPqXQu9xY1mn4iedk2YsEh/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000045f730931d93b08559885c4fb274db740388cd80
Arg [1] : 000000000000000000000000d8e577c6f71edb1819368ff4b8c9b38b2bd8e54d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d656641357952534e7a7953587854743278523367726662
Arg [5] : 5071585175397859316d6e346965646b32597345682f00000000000000000000
Deployed Bytecode Sourcemap
47868:3596:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27209:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30322:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31825:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31388:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48334:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48274:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48248:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26458:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32690:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47998:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51321:138;;;;;;;;;;;;;:::i;:::-;;48169:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32931:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48079:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50974:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30130:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48124:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50798:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47970:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51210:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27578:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46667:103;;;;;;;;;;;;;:::i;:::-;;48037:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46016:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30491:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48298:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51090:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32101:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33187:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50364:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49713:515;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48662:1037;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50699:91;;;;;;;;;;;;;:::i;:::-;;32459:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48217:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46925:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27209:305;27311:4;27363:25;27348:40;;;:11;:40;;;;:105;;;;27420:33;27405:48;;;:11;:48;;;;27348:105;:158;;;;27470:36;27494:11;27470:23;:36::i;:::-;27348:158;27328:178;;27209:305;;;:::o;30322:100::-;30376:13;30409:5;30402:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30322:100;:::o;31825:204::-;31893:7;31918:16;31926:7;31918;:16::i;:::-;31913:64;;31943:34;;;;;;;;;;;;;;31913:64;31997:15;:24;32013:7;31997:24;;;;;;;;;;;;;;;;;;;;;31990:31;;31825:204;;;:::o;31388:371::-;31461:13;31477:24;31493:7;31477:15;:24::i;:::-;31461:40;;31522:5;31516:11;;:2;:11;;;31512:48;;;31536:24;;;;;;;;;;;;;;31512:48;31593:5;31577:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31603:37;31620:5;31627:12;:10;:12::i;:::-;31603:16;:37::i;:::-;31602:38;31577:63;31573:138;;;31664:35;;;;;;;;;;;;;;31573:138;31723:28;31732:2;31736:7;31745:5;31723:8;:28::i;:::-;31450:309;31388:371;;:::o;48334:56::-;;;;;;;;;;;;;;;;;:::o;48274:17::-;;;;;;;;;;;;;:::o;48248:19::-;;;;:::o;26458:303::-;26502:7;26727:15;:13;:15::i;:::-;26712:12;;26696:13;;:28;:46;26689:53;;26458:303;:::o;32690:170::-;32824:28;32834:4;32840:2;32844:7;32824:9;:28::i;:::-;32690:170;;;:::o;47998:32::-;;;;:::o;51321:138::-;46247:12;:10;:12::i;:::-;46236:23;;:7;:5;:7::i;:::-;:23;;;46228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51369:15:::1;51387:21;51369:39;;51425:7;:5;:7::i;:::-;51417:25;;:34;51443:7;51417:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;51360:99;51321:138::o:0;48169:41::-;;;;:::o;32931:185::-;33069:39;33086:4;33092:2;33096:7;33069:39;;;;;;;;;;;;:16;:39::i;:::-;32931:185;;;:::o;48079:38::-;;;;:::o;50974:108::-;46247:12;:10;:12::i;:::-;46236:23;;:7;:5;:7::i;:::-;:23;;;46228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51063:11:::1;;51053:7;:21;;;;;;;:::i;:::-;;50974:108:::0;;:::o;30130:125::-;30194:7;30221:21;30234:7;30221:12;:21::i;:::-;:26;;;30214:33;;30130:125;;;:::o;48124:38::-;;;;:::o;50798:164::-;46247:12;:10;:12::i;:::-;46236:23;;:7;:5;:7::i;:::-;:23;;;46228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50875:12:::1;;;;;;;;;;;50874:13;50866:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;50944:10;50931;:23;;;;50798:164:::0;:::o;47970:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51210:105::-;46247:12;:10;:12::i;:::-;46236:23;;:7;:5;:7::i;:::-;:23;;;46228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51291:7:::1;51278:4;;:21;;;;;;;;;;;;;;;;;;51210:105:::0;:::o;27578:206::-;27642:7;27683:1;27666:19;;:5;:19;;;27662:60;;;27694:28;;;;;;;;;;;;;;27662:60;27748:12;:19;27761:5;27748:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27740:36;;27733:43;;27578:206;;;:::o;46667:103::-;46247:12;:10;:12::i;:::-;46236:23;;:7;:5;:7::i;:::-;:23;;;46228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46732:30:::1;46759:1;46732:18;:30::i;:::-;46667:103::o:0;48037:35::-;;;;:::o;46016:87::-;46062:7;46089:6;;;;;;;;;;;46082:13;;46016:87;:::o;30491:104::-;30547:13;30580:7;30573:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30491:104;:::o;48298:23::-;;;;;;;;;;;;;:::o;51090:114::-;46247:12;:10;:12::i;:::-;46236:23;;:7;:5;:7::i;:::-;:23;;;46228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51180:7:::1;51161;;:27;;;;;;;;;;;;;;;;;;51090:114:::0;:::o;32101:287::-;32212:12;:10;:12::i;:::-;32200:24;;:8;:24;;;32196:54;;;32233:17;;;;;;;;;;;;;;32196:54;32308:8;32263:18;:32;32282:12;:10;:12::i;:::-;32263:32;;;;;;;;;;;;;;;:42;32296:8;32263:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32361:8;32332:48;;32347:12;:10;:12::i;:::-;32332:48;;;32371:8;32332:48;;;;;;:::i;:::-;;;;;;;;32101:287;;:::o;33187:369::-;33354:28;33364:4;33370:2;33374:7;33354:9;:28::i;:::-;33397:15;:2;:13;;;:15::i;:::-;:76;;;;;33417:56;33448:4;33454:2;33458:7;33467:5;33417:30;:56::i;:::-;33416:57;33397:76;33393:156;;;33497:40;;;;;;;;;;;;;;33393:156;33187:369;;;;:::o;50364:315::-;50437:13;50467:16;50475:7;50467;:16::i;:::-;50459:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;50579:1;50561:7;50555:21;;;;;:::i;:::-;;;:25;:116;;;;;;;;;;;;;;;;;50616:10;:8;:10::i;:::-;50628:18;:7;:16;:18::i;:::-;50599:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50555:116;50541:130;;50364:315;;;:::o;49713:515::-;49787:7;49812:18;49840:15;49857:21;:27;49879:4;49857:27;;;;;;;;;;;;;;;;49840:44;;49901:9;49896:297;49916:6;49912:1;:10;49896:297;;;49941:9;;;;;:::i;:::-;;;;49975:16;;49965:7;:26;49962:221;;;50082:10;;50065:14;;50045:16;;50035:7;:26;;;;:::i;:::-;50034:45;;;;:::i;:::-;50021:10;:58;;;;:::i;:::-;:71;;;;:::i;:::-;50008:84;;49962:221;;;50160:10;;50147;:23;;;;:::i;:::-;50135:35;;49962:221;49924:3;;;;;:::i;:::-;;;;49896:297;;;;50209:10;50202:17;;;;49713:515;;;;:::o;48662:1037::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;48776:12:::1;;;;;;;;;;;48768:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48853:1;48838:12;:16;48830:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48927:10;;48911:12;48895:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:42;;48887:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;48993:10;:36;;;;;49025:4;;49007:15;:22;48993:36;48989:284;;;49079:9;;49064:12;:24;;;;:::i;:::-;49051:9;:37;;49043:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48989:284;;;49148:18;49169:41;49183:12;:10;:12::i;:::-;49197;49169:13;:41::i;:::-;49148:62;;49222:4;;;;;;;;;;;:14;;;49237:12;:10;:12::i;:::-;49251:10;49222:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49136:137;48989:284;49322:12;49283:21;:35;49305:12;:10;:12::i;:::-;49283:35;;;;;;;;;;;;;;;;:51;;;;;;;:::i;:::-;;;;;;;;49343:10;49356:9;:43;;49387:12;:10;:12::i;:::-;49356:43;;;49376:7;;;;;;;;;;;49356:43;49343:56;;49408:26;49418:2;49421:12;49408:9;:26::i;:::-;49443:17;49479:1;49463:13;:11;:13::i;:::-;:17;;;;:::i;:::-;49443:37;;49501:9;49497:195;;;49532:7;;;;;;;;;;;:20;;;49553:12;:10;:12::i;:::-;49532:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49524:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49605:7;;;;;;;;;;;:23;;;49629:12;:10;:12::i;:::-;49651:4;49658:9;49669:12;49605:77;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49497:195;48759:940;;1768:1:::0;2722:7;:22;;;;48662:1037;;;:::o;50699:91::-;46247:12;:10;:12::i;:::-;46236:23;;:7;:5;:7::i;:::-;:23;;;46228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50770:12:::1;;;;;;;;;;;50769:13;50754:12;;:28;;;;;;;;;;;;;;;;;;50699:91::o:0;32459:164::-;32556:4;32580:18;:25;32599:5;32580:25;;;;;;;;;;;;;;;:35;32606:8;32580:35;;;;;;;;;;;;;;;;;;;;;;;;;32573:42;;32459:164;;;;:::o;48217:24::-;;;;;;;;;;;;;:::o;46925:201::-;46247:12;:10;:12::i;:::-;46236:23;;:7;:5;:7::i;:::-;:23;;;46228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47034:1:::1;47014:22;;:8;:22;;;;47006:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47090:28;47109:8;47090:18;:28::i;:::-;46925:201:::0;:::o;16199:157::-;16284:4;16323:25;16308:40;;;:11;:40;;;;16301:47;;16199:157;;;:::o;33811:174::-;33868:4;33911:7;33892:15;:13;:15::i;:::-;:26;;:53;;;;;33932:13;;33922:7;:23;33892:53;:85;;;;;33950:11;:20;33962:7;33950:20;;;;;;;;;;;:27;;;;;;;;;;;;33949:28;33892:85;33885:92;;33811:174;;;:::o;22725:98::-;22778:7;22805:10;22798:17;;22725:98;:::o;41968:196::-;42110:2;42083:15;:24;42099:7;42083:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42148:7;42144:2;42128:28;;42137:5;42128:28;;;;;;;;;;;;41968:196;;;:::o;26232:92::-;26288:7;26232:92;:::o;36911:2130::-;37026:35;37064:21;37077:7;37064:12;:21::i;:::-;37026:59;;37124:4;37102:26;;:13;:18;;;:26;;;37098:67;;37137:28;;;;;;;;;;;;;;37098:67;37178:22;37220:4;37204:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37241:36;37258:4;37264:12;:10;:12::i;:::-;37241:16;:36::i;:::-;37204:73;:126;;;;37318:12;:10;:12::i;:::-;37294:36;;:20;37306:7;37294:11;:20::i;:::-;:36;;;37204:126;37178:153;;37349:17;37344:66;;37375:35;;;;;;;;;;;;;;37344:66;37439:1;37425:16;;:2;:16;;;37421:52;;;37450:23;;;;;;;;;;;;;;37421:52;37486:43;37508:4;37514:2;37518:7;37527:1;37486:21;:43::i;:::-;37594:35;37611:1;37615:7;37624:4;37594:8;:35::i;:::-;37955:1;37925:12;:18;37938:4;37925:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37999:1;37971:12;:16;37984:2;37971:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38017:31;38051:11;:20;38063:7;38051:20;;;;;;;;;;;38017:54;;38102:2;38086:8;:13;;;:18;;;;;;;;;;;;;;;;;;38152:15;38119:8;:23;;;:49;;;;;;;;;;;;;;;;;;38420:19;38452:1;38442:7;:11;38420:33;;38468:31;38502:11;:24;38514:11;38502:24;;;;;;;;;;;38468:58;;38570:1;38545:27;;:8;:13;;;;;;;;;;;;:27;;;38541:384;;;38755:13;;38740:11;:28;38736:174;;38809:4;38793:8;:13;;;:20;;;;;;;;;;;;;;;;;;38862:13;:28;;;38836:8;:23;;;:54;;;;;;;;;;;;;;;;;;38736:174;38541:384;37900:1036;;;38972:7;38968:2;38953:27;;38962:4;38953:27;;;;;;;;;;;;38991:42;39012:4;39018:2;39022:7;39031:1;38991:20;:42::i;:::-;37015:2026;;36911:2130;;;:::o;28959:1109::-;29021:21;;:::i;:::-;29055:12;29070:7;29055:22;;29138:4;29119:15;:13;:15::i;:::-;:23;;:47;;;;;29153:13;;29146:4;:20;29119:47;29115:886;;;29187:31;29221:11;:17;29233:4;29221:17;;;;;;;;;;;29187:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29262:9;:16;;;29257:729;;29333:1;29307:28;;:9;:14;;;:28;;;29303:101;;29371:9;29364:16;;;;;;29303:101;29706:261;29713:4;29706:261;;;29746:6;;;;;;;;29791:11;:17;29803:4;29791:17;;;;;;;;;;;29779:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29865:1;29839:28;;:9;:14;;;:28;;;29835:109;;29907:9;29900:16;;;;;;29835:109;29706:261;;;29257:729;29168:833;29115:886;30029:31;;;;;;;;;;;;;;28959:1109;;;;:::o;47286:191::-;47360:16;47379:6;;;;;;;;;;;47360:25;;47405:8;47396:6;;:17;;;;;;;;;;;;;;;;;;47460:8;47429:40;;47450:8;47429:40;;;;;;;;;;;;47349:128;47286:191;:::o;6116:326::-;6176:4;6433:1;6411:7;:19;;;:23;6404:30;;6116:326;;;:::o;42656:667::-;42819:4;42856:2;42840:36;;;42877:12;:10;:12::i;:::-;42891:4;42897:7;42906:5;42840:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42836:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43091:1;43074:6;:13;:18;43070:235;;;43120:40;;;;;;;;;;;;;;43070:235;43263:6;43257:13;43248:6;43244:2;43240:15;43233:38;42836:480;42969:45;;;42959:55;;;:6;:55;;;;42952:62;;;42656:667;;;;;;:::o;50256:100::-;50308:13;50341:7;50334:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50256:100;:::o;3124:723::-;3180:13;3410:1;3401:5;:10;3397:53;;;3428:10;;;;;;;;;;;;;;;;;;;;;3397:53;3460:12;3475:5;3460:20;;3491:14;3516:78;3531:1;3523:4;:9;3516:78;;3549:8;;;;;:::i;:::-;;;;3580:2;3572:10;;;;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604:39;;3654:154;3670:1;3661:5;:10;3654:154;;3698:1;3688:11;;;;;:::i;:::-;;;3765:2;3757:5;:10;;;;:::i;:::-;3744:2;:24;;;;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3794:2;3785:11;;;;;:::i;:::-;;;3654:154;;;3832:6;3818:21;;;;;3124:723;;;;:::o;33993:104::-;34062:27;34072:2;34076:8;34062:27;;;;;;;;;;;;:9;:27::i;:::-;33993:104;;:::o;43971:159::-;;;;;:::o;44789:158::-;;;;;:::o;34460:163::-;34583:32;34589:2;34593:8;34603:5;34610:4;34583:5;:32::i;:::-;34460:163;;;:::o;34882:1775::-;35021:20;35044:13;;35021:36;;35086:1;35072:16;;:2;:16;;;35068:48;;;35097:19;;;;;;;;;;;;;;35068:48;35143:1;35131:8;:13;35127:44;;;35153:18;;;;;;;;;;;;;;35127:44;35184:61;35214:1;35218:2;35222:12;35236:8;35184:21;:61::i;:::-;35557:8;35522:12;:16;35535:2;35522:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35621:8;35581:12;:16;35594:2;35581:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35680:2;35647:11;:25;35659:12;35647:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35747:15;35697:11;:25;35709:12;35697:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35780:20;35803:12;35780:35;;35830:11;35859:8;35844:12;:23;35830:37;;35888:4;:23;;;;;35896:15;:2;:13;;;:15::i;:::-;35888:23;35884:641;;;35932:314;35988:12;35984:2;35963:38;;35980:1;35963:38;;;;;;;;;;;;36029:69;36068:1;36072:2;36076:14;;;;;;36092:5;36029:30;:69::i;:::-;36024:174;;36134:40;;;;;;;;;;;;;;36024:174;36241:3;36225:12;:19;;35932:314;;36327:12;36310:13;;:29;36306:43;;36341:8;;;36306:43;35884:641;;;36390:120;36446:14;;;;;;36442:2;36421:40;;36438:1;36421:40;;;;;;;;;;;;36505:3;36489:12;:19;;36390:120;;35884:641;36555:12;36539:13;:28;;;;35497:1082;;36589:60;36618:1;36622:2;36626:12;36640:8;36589:20;:60::i;:::-;35010:1647;34882:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;761:5;792:6;786:13;777:22;;808:30;832:5;808:30;:::i;:::-;707:137;;;;:::o;850:::-;895:5;933:6;920:20;911:29;;949:32;975:5;949:32;:::i;:::-;850:137;;;;:::o;993:141::-;1049:5;1080:6;1074:13;1065:22;;1096:32;1122:5;1096:32;:::i;:::-;993:141;;;;:::o;1153:338::-;1208:5;1257:3;1250:4;1242:6;1238:17;1234:27;1224:122;;1265:79;;:::i;:::-;1224:122;1382:6;1369:20;1407:78;1481:3;1473:6;1466:4;1458:6;1454:17;1407:78;:::i;:::-;1398:87;;1214:277;1153:338;;;;:::o;1511:553::-;1569:8;1579:6;1629:3;1622:4;1614:6;1610:17;1606:27;1596:122;;1637:79;;:::i;:::-;1596:122;1750:6;1737:20;1727:30;;1780:18;1772:6;1769:30;1766:117;;;1802:79;;:::i;:::-;1766:117;1916:4;1908:6;1904:17;1892:29;;1970:3;1962:4;1954:6;1950:17;1940:8;1936:32;1933:41;1930:128;;;1977:79;;:::i;:::-;1930:128;1511:553;;;;;:::o;2070:139::-;2116:5;2154:6;2141:20;2132:29;;2170:33;2197:5;2170:33;:::i;:::-;2070:139;;;;:::o;2215:329::-;2274:6;2323:2;2311:9;2302:7;2298:23;2294:32;2291:119;;;2329:79;;:::i;:::-;2291:119;2449:1;2474:53;2519:7;2510:6;2499:9;2495:22;2474:53;:::i;:::-;2464:63;;2420:117;2215:329;;;;:::o;2550:474::-;2618:6;2626;2675:2;2663:9;2654:7;2650:23;2646:32;2643:119;;;2681:79;;:::i;:::-;2643:119;2801:1;2826:53;2871:7;2862:6;2851:9;2847:22;2826:53;:::i;:::-;2816:63;;2772:117;2928:2;2954:53;2999:7;2990:6;2979:9;2975:22;2954:53;:::i;:::-;2944:63;;2899:118;2550:474;;;;;:::o;3030:619::-;3107:6;3115;3123;3172:2;3160:9;3151:7;3147:23;3143:32;3140:119;;;3178:79;;:::i;:::-;3140:119;3298:1;3323:53;3368:7;3359:6;3348:9;3344:22;3323:53;:::i;:::-;3313:63;;3269:117;3425:2;3451:53;3496:7;3487:6;3476:9;3472:22;3451:53;:::i;:::-;3441:63;;3396:118;3553:2;3579:53;3624:7;3615:6;3604:9;3600:22;3579:53;:::i;:::-;3569:63;;3524:118;3030:619;;;;;:::o;3655:943::-;3750:6;3758;3766;3774;3823:3;3811:9;3802:7;3798:23;3794:33;3791:120;;;3830:79;;:::i;:::-;3791:120;3950:1;3975:53;4020:7;4011:6;4000:9;3996:22;3975:53;:::i;:::-;3965:63;;3921:117;4077:2;4103:53;4148:7;4139:6;4128:9;4124:22;4103:53;:::i;:::-;4093:63;;4048:118;4205:2;4231:53;4276:7;4267:6;4256:9;4252:22;4231:53;:::i;:::-;4221:63;;4176:118;4361:2;4350:9;4346:18;4333:32;4392:18;4384:6;4381:30;4378:117;;;4414:79;;:::i;:::-;4378:117;4519:62;4573:7;4564:6;4553:9;4549:22;4519:62;:::i;:::-;4509:72;;4304:287;3655:943;;;;;;;:::o;4604:468::-;4669:6;4677;4726:2;4714:9;4705:7;4701:23;4697:32;4694:119;;;4732:79;;:::i;:::-;4694:119;4852:1;4877:53;4922:7;4913:6;4902:9;4898:22;4877:53;:::i;:::-;4867:63;;4823:117;4979:2;5005:50;5047:7;5038:6;5027:9;5023:22;5005:50;:::i;:::-;4995:60;;4950:115;4604:468;;;;;:::o;5078:474::-;5146:6;5154;5203:2;5191:9;5182:7;5178:23;5174:32;5171:119;;;5209:79;;:::i;:::-;5171:119;5329:1;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5300:117;5456:2;5482:53;5527:7;5518:6;5507:9;5503:22;5482:53;:::i;:::-;5472:63;;5427:118;5078:474;;;;;:::o;5558:345::-;5625:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:119;;;5680:79;;:::i;:::-;5642:119;5800:1;5825:61;5878:7;5869:6;5858:9;5854:22;5825:61;:::i;:::-;5815:71;;5771:125;5558:345;;;;:::o;5909:327::-;5967:6;6016:2;6004:9;5995:7;5991:23;5987:32;5984:119;;;6022:79;;:::i;:::-;5984:119;6142:1;6167:52;6211:7;6202:6;6191:9;6187:22;6167:52;:::i;:::-;6157:62;;6113:116;5909:327;;;;:::o;6242:349::-;6311:6;6360:2;6348:9;6339:7;6335:23;6331:32;6328:119;;;6366:79;;:::i;:::-;6328:119;6486:1;6511:63;6566:7;6557:6;6546:9;6542:22;6511:63;:::i;:::-;6501:73;;6457:127;6242:349;;;;:::o;6597:529::-;6668:6;6676;6725:2;6713:9;6704:7;6700:23;6696:32;6693:119;;;6731:79;;:::i;:::-;6693:119;6879:1;6868:9;6864:17;6851:31;6909:18;6901:6;6898:30;6895:117;;;6931:79;;:::i;:::-;6895:117;7044:65;7101:7;7092:6;7081:9;7077:22;7044:65;:::i;:::-;7026:83;;;;6822:297;6597:529;;;;;:::o;7132:329::-;7191:6;7240:2;7228:9;7219:7;7215:23;7211:32;7208:119;;;7246:79;;:::i;:::-;7208:119;7366:1;7391:53;7436:7;7427:6;7416:9;7412:22;7391:53;:::i;:::-;7381:63;;7337:117;7132:329;;;;:::o;7467:607::-;7538:6;7546;7554;7603:2;7591:9;7582:7;7578:23;7574:32;7571:119;;;7609:79;;:::i;:::-;7571:119;7729:1;7754:53;7799:7;7790:6;7779:9;7775:22;7754:53;:::i;:::-;7744:63;;7700:117;7856:2;7882:50;7924:7;7915:6;7904:9;7900:22;7882:50;:::i;:::-;7872:60;;7827:115;7981:2;8007:50;8049:7;8040:6;8029:9;8025:22;8007:50;:::i;:::-;7997:60;;7952:115;7467:607;;;;;:::o;8080:118::-;8167:24;8185:5;8167:24;:::i;:::-;8162:3;8155:37;8080:118;;:::o;8204:109::-;8285:21;8300:5;8285:21;:::i;:::-;8280:3;8273:34;8204:109;;:::o;8319:360::-;8405:3;8433:38;8465:5;8433:38;:::i;:::-;8487:70;8550:6;8545:3;8487:70;:::i;:::-;8480:77;;8566:52;8611:6;8606:3;8599:4;8592:5;8588:16;8566:52;:::i;:::-;8643:29;8665:6;8643:29;:::i;:::-;8638:3;8634:39;8627:46;;8409:270;8319:360;;;;:::o;8685:159::-;8786:51;8831:5;8786:51;:::i;:::-;8781:3;8774:64;8685:159;;:::o;8850:165::-;8954:54;9002:5;8954:54;:::i;:::-;8949:3;8942:67;8850:165;;:::o;9021:364::-;9109:3;9137:39;9170:5;9137:39;:::i;:::-;9192:71;9256:6;9251:3;9192:71;:::i;:::-;9185:78;;9272:52;9317:6;9312:3;9305:4;9298:5;9294:16;9272:52;:::i;:::-;9349:29;9371:6;9349:29;:::i;:::-;9344:3;9340:39;9333:46;;9113:272;9021:364;;;;:::o;9391:377::-;9497:3;9525:39;9558:5;9525:39;:::i;:::-;9580:89;9662:6;9657:3;9580:89;:::i;:::-;9573:96;;9678:52;9723:6;9718:3;9711:4;9704:5;9700:16;9678:52;:::i;:::-;9755:6;9750:3;9746:16;9739:23;;9501:267;9391:377;;;;:::o;9774:366::-;9916:3;9937:67;10001:2;9996:3;9937:67;:::i;:::-;9930:74;;10013:93;10102:3;10013:93;:::i;:::-;10131:2;10126:3;10122:12;10115:19;;9774:366;;;:::o;10146:::-;10288:3;10309:67;10373:2;10368:3;10309:67;:::i;:::-;10302:74;;10385:93;10474:3;10385:93;:::i;:::-;10503:2;10498:3;10494:12;10487:19;;10146:366;;;:::o;10518:400::-;10678:3;10699:84;10781:1;10776:3;10699:84;:::i;:::-;10692:91;;10792:93;10881:3;10792:93;:::i;:::-;10910:1;10905:3;10901:11;10894:18;;10518:400;;;:::o;10924:366::-;11066:3;11087:67;11151:2;11146:3;11087:67;:::i;:::-;11080:74;;11163:93;11252:3;11163:93;:::i;:::-;11281:2;11276:3;11272:12;11265:19;;10924:366;;;:::o;11296:::-;11438:3;11459:67;11523:2;11518:3;11459:67;:::i;:::-;11452:74;;11535:93;11624:3;11535:93;:::i;:::-;11653:2;11648:3;11644:12;11637:19;;11296:366;;;:::o;11668:::-;11810:3;11831:67;11895:2;11890:3;11831:67;:::i;:::-;11824:74;;11907:93;11996:3;11907:93;:::i;:::-;12025:2;12020:3;12016:12;12009:19;;11668:366;;;:::o;12040:::-;12182:3;12203:67;12267:2;12262:3;12203:67;:::i;:::-;12196:74;;12279:93;12368:3;12279:93;:::i;:::-;12397:2;12392:3;12388:12;12381:19;;12040:366;;;:::o;12412:::-;12554:3;12575:67;12639:2;12634:3;12575:67;:::i;:::-;12568:74;;12651:93;12740:3;12651:93;:::i;:::-;12769:2;12764:3;12760:12;12753:19;;12412:366;;;:::o;12784:::-;12926:3;12947:67;13011:2;13006:3;12947:67;:::i;:::-;12940:74;;13023:93;13112:3;13023:93;:::i;:::-;13141:2;13136:3;13132:12;13125:19;;12784:366;;;:::o;13156:::-;13298:3;13319:67;13383:2;13378:3;13319:67;:::i;:::-;13312:74;;13395:93;13484:3;13395:93;:::i;:::-;13513:2;13508:3;13504:12;13497:19;;13156:366;;;:::o;13528:::-;13670:3;13691:67;13755:2;13750:3;13691:67;:::i;:::-;13684:74;;13767:93;13856:3;13767:93;:::i;:::-;13885:2;13880:3;13876:12;13869:19;;13528:366;;;:::o;13900:118::-;13987:24;14005:5;13987:24;:::i;:::-;13982:3;13975:37;13900:118;;:::o;14024:701::-;14305:3;14327:95;14418:3;14409:6;14327:95;:::i;:::-;14320:102;;14439:95;14530:3;14521:6;14439:95;:::i;:::-;14432:102;;14551:148;14695:3;14551:148;:::i;:::-;14544:155;;14716:3;14709:10;;14024:701;;;;;:::o;14731:222::-;14824:4;14862:2;14851:9;14847:18;14839:26;;14875:71;14943:1;14932:9;14928:17;14919:6;14875:71;:::i;:::-;14731:222;;;;:::o;14959:640::-;15154:4;15192:3;15181:9;15177:19;15169:27;;15206:71;15274:1;15263:9;15259:17;15250:6;15206:71;:::i;:::-;15287:72;15355:2;15344:9;15340:18;15331:6;15287:72;:::i;:::-;15369;15437:2;15426:9;15422:18;15413:6;15369:72;:::i;:::-;15488:9;15482:4;15478:20;15473:2;15462:9;15458:18;15451:48;15516:76;15587:4;15578:6;15516:76;:::i;:::-;15508:84;;14959:640;;;;;;;:::o;15605:553::-;15782:4;15820:3;15809:9;15805:19;15797:27;;15834:71;15902:1;15891:9;15887:17;15878:6;15834:71;:::i;:::-;15915:72;15983:2;15972:9;15968:18;15959:6;15915:72;:::i;:::-;15997;16065:2;16054:9;16050:18;16041:6;15997:72;:::i;:::-;16079;16147:2;16136:9;16132:18;16123:6;16079:72;:::i;:::-;15605:553;;;;;;;:::o;16164:332::-;16285:4;16323:2;16312:9;16308:18;16300:26;;16336:71;16404:1;16393:9;16389:17;16380:6;16336:71;:::i;:::-;16417:72;16485:2;16474:9;16470:18;16461:6;16417:72;:::i;:::-;16164:332;;;;;:::o;16502:210::-;16589:4;16627:2;16616:9;16612:18;16604:26;;16640:65;16702:1;16691:9;16687:17;16678:6;16640:65;:::i;:::-;16502:210;;;;:::o;16718:250::-;16825:4;16863:2;16852:9;16848:18;16840:26;;16876:85;16958:1;16947:9;16943:17;16934:6;16876:85;:::i;:::-;16718:250;;;;:::o;16974:256::-;17084:4;17122:2;17111:9;17107:18;17099:26;;17135:88;17220:1;17209:9;17205:17;17196:6;17135:88;:::i;:::-;16974:256;;;;:::o;17236:313::-;17349:4;17387:2;17376:9;17372:18;17364:26;;17436:9;17430:4;17426:20;17422:1;17411:9;17407:17;17400:47;17464:78;17537:4;17528:6;17464:78;:::i;:::-;17456:86;;17236:313;;;;:::o;17555:419::-;17721:4;17759:2;17748:9;17744:18;17736:26;;17808:9;17802:4;17798:20;17794:1;17783:9;17779:17;17772:47;17836:131;17962:4;17836:131;:::i;:::-;17828:139;;17555:419;;;:::o;17980:::-;18146:4;18184:2;18173:9;18169:18;18161:26;;18233:9;18227:4;18223:20;18219:1;18208:9;18204:17;18197:47;18261:131;18387:4;18261:131;:::i;:::-;18253:139;;17980:419;;;:::o;18405:::-;18571:4;18609:2;18598:9;18594:18;18586:26;;18658:9;18652:4;18648:20;18644:1;18633:9;18629:17;18622:47;18686:131;18812:4;18686:131;:::i;:::-;18678:139;;18405:419;;;:::o;18830:::-;18996:4;19034:2;19023:9;19019:18;19011:26;;19083:9;19077:4;19073:20;19069:1;19058:9;19054:17;19047:47;19111:131;19237:4;19111:131;:::i;:::-;19103:139;;18830:419;;;:::o;19255:::-;19421:4;19459:2;19448:9;19444:18;19436:26;;19508:9;19502:4;19498:20;19494:1;19483:9;19479:17;19472:47;19536:131;19662:4;19536:131;:::i;:::-;19528:139;;19255:419;;;:::o;19680:::-;19846:4;19884:2;19873:9;19869:18;19861:26;;19933:9;19927:4;19923:20;19919:1;19908:9;19904:17;19897:47;19961:131;20087:4;19961:131;:::i;:::-;19953:139;;19680:419;;;:::o;20105:::-;20271:4;20309:2;20298:9;20294:18;20286:26;;20358:9;20352:4;20348:20;20344:1;20333:9;20329:17;20322:47;20386:131;20512:4;20386:131;:::i;:::-;20378:139;;20105:419;;;:::o;20530:::-;20696:4;20734:2;20723:9;20719:18;20711:26;;20783:9;20777:4;20773:20;20769:1;20758:9;20754:17;20747:47;20811:131;20937:4;20811:131;:::i;:::-;20803:139;;20530:419;;;:::o;20955:::-;21121:4;21159:2;21148:9;21144:18;21136:26;;21208:9;21202:4;21198:20;21194:1;21183:9;21179:17;21172:47;21236:131;21362:4;21236:131;:::i;:::-;21228:139;;20955:419;;;:::o;21380:::-;21546:4;21584:2;21573:9;21569:18;21561:26;;21633:9;21627:4;21623:20;21619:1;21608:9;21604:17;21597:47;21661:131;21787:4;21661:131;:::i;:::-;21653:139;;21380:419;;;:::o;21805:222::-;21898:4;21936:2;21925:9;21921:18;21913:26;;21949:71;22017:1;22006:9;22002:17;21993:6;21949:71;:::i;:::-;21805:222;;;;:::o;22033:129::-;22067:6;22094:20;;:::i;:::-;22084:30;;22123:33;22151:4;22143:6;22123:33;:::i;:::-;22033:129;;;:::o;22168:75::-;22201:6;22234:2;22228:9;22218:19;;22168:75;:::o;22249:307::-;22310:4;22400:18;22392:6;22389:30;22386:56;;;22422:18;;:::i;:::-;22386:56;22460:29;22482:6;22460:29;:::i;:::-;22452:37;;22544:4;22538;22534:15;22526:23;;22249:307;;;:::o;22562:98::-;22613:6;22647:5;22641:12;22631:22;;22562:98;;;:::o;22666:99::-;22718:6;22752:5;22746:12;22736:22;;22666:99;;;:::o;22771:168::-;22854:11;22888:6;22883:3;22876:19;22928:4;22923:3;22919:14;22904:29;;22771:168;;;;:::o;22945:169::-;23029:11;23063:6;23058:3;23051:19;23103:4;23098:3;23094:14;23079:29;;22945:169;;;;:::o;23120:148::-;23222:11;23259:3;23244:18;;23120:148;;;;:::o;23274:305::-;23314:3;23333:20;23351:1;23333:20;:::i;:::-;23328:25;;23367:20;23385:1;23367:20;:::i;:::-;23362:25;;23521:1;23453:66;23449:74;23446:1;23443:81;23440:107;;;23527:18;;:::i;:::-;23440:107;23571:1;23568;23564:9;23557:16;;23274:305;;;;:::o;23585:185::-;23625:1;23642:20;23660:1;23642:20;:::i;:::-;23637:25;;23676:20;23694:1;23676:20;:::i;:::-;23671:25;;23715:1;23705:35;;23720:18;;:::i;:::-;23705:35;23762:1;23759;23755:9;23750:14;;23585:185;;;;:::o;23776:348::-;23816:7;23839:20;23857:1;23839:20;:::i;:::-;23834:25;;23873:20;23891:1;23873:20;:::i;:::-;23868:25;;24061:1;23993:66;23989:74;23986:1;23983:81;23978:1;23971:9;23964:17;23960:105;23957:131;;;24068:18;;:::i;:::-;23957:131;24116:1;24113;24109:9;24098:20;;23776:348;;;;:::o;24130:191::-;24170:4;24190:20;24208:1;24190:20;:::i;:::-;24185:25;;24224:20;24242:1;24224:20;:::i;:::-;24219:25;;24263:1;24260;24257:8;24254:34;;;24268:18;;:::i;:::-;24254:34;24313:1;24310;24306:9;24298:17;;24130:191;;;;:::o;24327:96::-;24364:7;24393:24;24411:5;24393:24;:::i;:::-;24382:35;;24327:96;;;:::o;24429:90::-;24463:7;24506:5;24499:13;24492:21;24481:32;;24429:90;;;:::o;24525:149::-;24561:7;24601:66;24594:5;24590:78;24579:89;;24525:149;;;:::o;24680:126::-;24717:7;24757:42;24750:5;24746:54;24735:65;;24680:126;;;:::o;24812:77::-;24849:7;24878:5;24867:16;;24812:77;;;:::o;24895:140::-;24959:9;24992:37;25023:5;24992:37;:::i;:::-;24979:50;;24895:140;;;:::o;25041:143::-;25108:9;25141:37;25172:5;25141:37;:::i;:::-;25128:50;;25041:143;;;:::o;25190:126::-;25240:9;25273:37;25304:5;25273:37;:::i;:::-;25260:50;;25190:126;;;:::o;25322:113::-;25372:9;25405:24;25423:5;25405:24;:::i;:::-;25392:37;;25322:113;;;:::o;25441:154::-;25525:6;25520:3;25515;25502:30;25587:1;25578:6;25573:3;25569:16;25562:27;25441:154;;;:::o;25601:307::-;25669:1;25679:113;25693:6;25690:1;25687:13;25679:113;;;25778:1;25773:3;25769:11;25763:18;25759:1;25754:3;25750:11;25743:39;25715:2;25712:1;25708:10;25703:15;;25679:113;;;25810:6;25807:1;25804:13;25801:101;;;25890:1;25881:6;25876:3;25872:16;25865:27;25801:101;25650:258;25601:307;;;:::o;25914:320::-;25958:6;25995:1;25989:4;25985:12;25975:22;;26042:1;26036:4;26032:12;26063:18;26053:81;;26119:4;26111:6;26107:17;26097:27;;26053:81;26181:2;26173:6;26170:14;26150:18;26147:38;26144:84;;;26200:18;;:::i;:::-;26144:84;25965:269;25914:320;;;:::o;26240:281::-;26323:27;26345:4;26323:27;:::i;:::-;26315:6;26311:40;26453:6;26441:10;26438:22;26417:18;26405:10;26402:34;26399:62;26396:88;;;26464:18;;:::i;:::-;26396:88;26504:10;26500:2;26493:22;26283:238;26240:281;;:::o;26527:233::-;26566:3;26589:24;26607:5;26589:24;:::i;:::-;26580:33;;26635:66;26628:5;26625:77;26622:103;;;26705:18;;:::i;:::-;26622:103;26752:1;26745:5;26741:13;26734:20;;26527:233;;;:::o;26766:176::-;26798:1;26815:20;26833:1;26815:20;:::i;:::-;26810:25;;26849:20;26867:1;26849:20;:::i;:::-;26844:25;;26888:1;26878:35;;26893:18;;:::i;:::-;26878:35;26934:1;26931;26927:9;26922:14;;26766:176;;;;:::o;26948:180::-;26996:77;26993:1;26986:88;27093:4;27090:1;27083:15;27117:4;27114:1;27107:15;27134:180;27182:77;27179:1;27172:88;27279:4;27276:1;27269:15;27303:4;27300:1;27293:15;27320:180;27368:77;27365:1;27358:88;27465:4;27462:1;27455:15;27489:4;27486:1;27479:15;27506:180;27554:77;27551:1;27544:88;27651:4;27648:1;27641:15;27675:4;27672:1;27665:15;27692:180;27740:77;27737:1;27730:88;27837:4;27834:1;27827:15;27861:4;27858:1;27851:15;27878:117;27987:1;27984;27977:12;28001:117;28110:1;28107;28100:12;28124:117;28233:1;28230;28223:12;28247:117;28356:1;28353;28346:12;28370:117;28479:1;28476;28469:12;28493:117;28602:1;28599;28592:12;28616:102;28657:6;28708:2;28704:7;28699:2;28692:5;28688:14;28684:28;28674:38;;28616:102;;;:::o;28724:225::-;28864:34;28860:1;28852:6;28848:14;28841:58;28933:8;28928:2;28920:6;28916:15;28909:33;28724:225;:::o;28955:169::-;29095:21;29091:1;29083:6;29079:14;29072:45;28955:169;:::o;29130:155::-;29270:7;29266:1;29258:6;29254:14;29247:31;29130:155;:::o;29291:182::-;29431:34;29427:1;29419:6;29415:14;29408:58;29291:182;:::o;29479:169::-;29619:21;29615:1;29607:6;29603:14;29596:45;29479:169;:::o;29654:234::-;29794:34;29790:1;29782:6;29778:14;29771:58;29863:17;29858:2;29850:6;29846:15;29839:42;29654:234;:::o;29894:179::-;30034:31;30030:1;30022:6;30018:14;30011:55;29894:179;:::o;30079:173::-;30219:25;30215:1;30207:6;30203:14;30196:49;30079:173;:::o;30258:180::-;30398:32;30394:1;30386:6;30382:14;30375:56;30258:180;:::o;30444:181::-;30584:33;30580:1;30572:6;30568:14;30561:57;30444:181;:::o;30631:178::-;30771:30;30767:1;30759:6;30755:14;30748:54;30631:178;:::o;30815:122::-;30888:24;30906:5;30888:24;:::i;:::-;30881:5;30878:35;30868:63;;30927:1;30924;30917:12;30868:63;30815:122;:::o;30943:116::-;31013:21;31028:5;31013:21;:::i;:::-;31006:5;31003:32;30993:60;;31049:1;31046;31039:12;30993:60;30943:116;:::o;31065:120::-;31137:23;31154:5;31137:23;:::i;:::-;31130:5;31127:34;31117:62;;31175:1;31172;31165:12;31117:62;31065:120;:::o;31191:122::-;31264:24;31282:5;31264:24;:::i;:::-;31257:5;31254:35;31244:63;;31303:1;31300;31293:12;31244:63;31191:122;:::o
Swarm Source
ipfs://9d55084c77c71ddd2dd9bc06112f3262b484704e9f097420d37d475ecee6c23d
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.