ERC-721
Overview
Max Total Supply
2,026 CKEVIN
Holders
127
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 CKEVINLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CurrencyKevins
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-03 */ // SPDX-License-Identifier: MIT // 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/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: @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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/CurrencyKevins.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (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 (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 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; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract CurrencyKevins is ERC721A, Ownable { uint256 public constant MAX_LIMIT = 2258; uint256 public constant MAX_MINTED = 20; uint256 public MINT_PRICE = 0.02 ether; bool public isMintOver = false; string public baseURI = "ipfs://Qma2nURx9hKdXubrq1HQmxANvfY5wKhmqTEGXs8B5E31JK/"; constructor() ERC721A("Currency Kevins", "CKEVIN") {} function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mint(uint256 _count) public payable { uint256 currentTotal = totalSupply(); require(currentTotal + _count <= MAX_LIMIT); require(MINT_PRICE * _count <= msg.value || totalSupply() < 758); require(balanceOf(_msgSender()) + _count <= MAX_MINTED); _safeMint(msg.sender, _count); } function reveal(string memory _revealURI) public onlyOwner { baseURI = _revealURI; isMintOver = true; } function setPrice(uint256 _price) public onlyOwner { MINT_PRICE = _price; } function withdraw() public payable onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _withdraw(msg.sender, balance); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "_withdraw failed"); } function setApprovalForAll(address operator, bool approved) public virtual override { require(totalSupply() >= MAX_LIMIT || isMintOver); super.setApprovalForAll(operator, approved); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"string","name":"_revealURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405266470de4df8200006009556000600a60006101000a81548160ff0219169083151502179055506040518060600160405280603681526020016200345260369139600b90805190602001906200005b929190620001fe565b503480156200006957600080fd5b506040518060400160405280600f81526020017f43757272656e6379204b6576696e7300000000000000000000000000000000008152506040518060400160405280600681526020017f434b4556494e00000000000000000000000000000000000000000000000000008152508160029080519060200190620000ee929190620001fe565b50806003908051906020019062000107929190620001fe565b5050506200012a6200011e6200013060201b60201c565b6200013860201b60201c565b62000313565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020c90620002ae565b90600052602060002090601f0160209004810192826200023057600085556200027c565b82601f106200024b57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027b5782518255916020019190600101906200025e565b5b5090506200028b91906200028f565b5090565b5b80821115620002aa57600081600090555060010162000290565b5090565b60006002820490506001821680620002c757607f821691505b60208210811415620002de57620002dd620002e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61312f80620003236000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063c002d23d11610064578063c002d23d1461052e578063c87b56dd14610559578063e985e9c514610596578063f2fde38b146105d357610181565b8063a22cb465146104b1578063a560ed7b146104da578063b88d4fde1461050557610181565b806370a08231146103c2578063715018a6146103ff5780638da5cb5b1461041657806391b7f5ed1461044157806395d89b411461046a578063a0712d681461049557610181565b806318160ddd1161013e57806342842e0e1161011857806342842e0e146103085780634c261247146103315780636352211e1461035a5780636c0360eb1461039757610181565b806318160ddd146102aa57806323b872dd146102d55780633ccfd60b146102fe57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780630b59c43e14610254578063114cccd21461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906127e8565b6105fc565b6040516101ba9190612ab4565b60405180910390f35b3480156101cf57600080fd5b506101d86106de565b6040516101e59190612acf565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061288b565b610770565b6040516102229190612a4d565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906127a8565b6107ec565b005b34801561026057600080fd5b506102696108f7565b6040516102769190612ab4565b60405180910390f35b34801561028b57600080fd5b5061029461090a565b6040516102a19190612b51565b60405180910390f35b3480156102b657600080fd5b506102bf610910565b6040516102cc9190612b51565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190612692565b61091e565b005b61030661092e565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612692565b6109c9565b005b34801561033d57600080fd5b5061035860048036038101906103539190612842565b6109e9565b005b34801561036657600080fd5b50610381600480360381019061037c919061288b565b610a9a565b60405161038e9190612a4d565b60405180910390f35b3480156103a357600080fd5b506103ac610ab0565b6040516103b99190612acf565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190612625565b610b3e565b6040516103f69190612b51565b60405180910390f35b34801561040b57600080fd5b50610414610c0e565b005b34801561042257600080fd5b5061042b610c96565b6040516104389190612a4d565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061288b565b610cc0565b005b34801561047657600080fd5b5061047f610d46565b60405161048c9190612acf565b60405180910390f35b6104af60048036038101906104aa919061288b565b610dd8565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190612768565b610e61565b005b3480156104e657600080fd5b506104ef610e9c565b6040516104fc9190612b51565b60405180910390f35b34801561051157600080fd5b5061052c600480360381019061052791906126e5565b610ea1565b005b34801561053a57600080fd5b50610543610ef4565b6040516105509190612b51565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b919061288b565b610efa565b60405161058d9190612acf565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612652565b610f99565b6040516105ca9190612ab4565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190612625565b61102d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106c757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d757506106d682611125565b5b9050919050565b6060600280546106ed90612e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461071990612e0c565b80156107665780601f1061073b57610100808354040283529160200191610766565b820191906000526020600020905b81548152906001019060200180831161074957829003601f168201915b5050505050905090565b600061077b8261118f565b6107b1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f782610a9a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087e6111c9565b73ffffffffffffffffffffffffffffffffffffffff16141580156108b057506108ae816108a96111c9565b610f99565b155b156108e7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108f28383836111d1565b505050565b600a60009054906101000a900460ff1681565b6108d281565b600060015460005403905090565b610929838383611283565b505050565b6109366111c9565b73ffffffffffffffffffffffffffffffffffffffff16610954610c96565b73ffffffffffffffffffffffffffffffffffffffff16146109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a190612b31565b60405180910390fd5b6000479050600081116109bc57600080fd5b6109c63382611774565b50565b6109e483838360405180602001604052806000815250610ea1565b505050565b6109f16111c9565b73ffffffffffffffffffffffffffffffffffffffff16610a0f610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90612b31565b60405180910390fd5b80600b9080519060200190610a7b9291906123f6565b506001600a60006101000a81548160ff02191690831515021790555050565b6000610aa582611825565b600001519050919050565b600b8054610abd90612e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae990612e0c565b8015610b365780601f10610b0b57610100808354040283529160200191610b36565b820191906000526020600020905b815481529060010190602001808311610b1957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c166111c9565b73ffffffffffffffffffffffffffffffffffffffff16610c34610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190612b31565b60405180910390fd5b610c946000611aa1565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cc86111c9565b73ffffffffffffffffffffffffffffffffffffffff16610ce6610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390612b31565b60405180910390fd5b8060098190555050565b606060038054610d5590612e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190612e0c565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b5050505050905090565b6000610de2610910565b90506108d28282610df39190612c41565b1115610dfe57600080fd5b3482600954610e0d9190612cc8565b111580610e2257506102f6610e20610910565b105b610e2b57600080fd5b601482610e3e610e396111c9565b610b3e565b610e489190612c41565b1115610e5357600080fd5b610e5d3383611b67565b5050565b6108d2610e6c610910565b101580610e855750600a60009054906101000a900460ff165b610e8e57600080fd5b610e988282611b85565b5050565b601481565b610eac848484611283565b610eb884848484611cfd565b610eee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b6060610f058261118f565b610f3b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f45611e8b565b9050600081511415610f665760405180602001604052806000815250610f91565b80610f7084611f1d565b604051602001610f81929190612a14565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110356111c9565b73ffffffffffffffffffffffffffffffffffffffff16611053610c96565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090612b31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090612b11565b60405180910390fd5b61112281611aa1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156111c2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061128e82611825565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166112b56111c9565b73ffffffffffffffffffffffffffffffffffffffff1614806112e857506112e782600001516112e26111c9565b610f99565b5b8061132d57506112f66111c9565b73ffffffffffffffffffffffffffffffffffffffff1661131584610770565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611366576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146113cf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611436576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611443858585600161207e565b61145360008484600001516111d1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611704576000548110156117035782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461176d8585856001612084565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161179a90612a38565b60006040518083038185875af1925050503d80600081146117d7576040519150601f19603f3d011682016040523d82523d6000602084013e6117dc565b606091505b5050905080611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790612af1565b60405180910390fd5b505050565b61182d61247c565b6000829050600054811015611a6a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a6857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461194c578092505050611a9c565b5b600115611a6757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a62578092505050611a9c565b61194d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b8182826040518060200160405280600081525061208a565b5050565b611b8d6111c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bff6111c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cac6111c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf19190612ab4565b60405180910390a35050565b6000611d1e8473ffffffffffffffffffffffffffffffffffffffff1661209c565b15611e7e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d476111c9565b8786866040518563ffffffff1660e01b8152600401611d699493929190612a68565b602060405180830381600087803b158015611d8357600080fd5b505af1925050508015611db457506040513d601f19601f82011682018060405250810190611db19190612815565b60015b611e2e573d8060008114611de4576040519150601f19603f3d011682016040523d82523d6000602084013e611de9565b606091505b50600081511415611e26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e83565b600190505b949350505050565b6060600b8054611e9a90612e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec690612e0c565b8015611f135780601f10611ee857610100808354040283529160200191611f13565b820191906000526020600020905b815481529060010190602001808311611ef657829003601f168201915b5050505050905090565b60606000821415611f65576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612079565b600082905060005b60008214611f97578080611f8090612e6f565b915050600a82611f909190612c97565b9150611f6d565b60008167ffffffffffffffff811115611fb357611fb2612fa5565b5b6040519080825280601f01601f191660200182016040528015611fe55781602001600182028036833780820191505090505b5090505b6000851461207257600182611ffe9190612d22565b9150600a8561200d9190612eb8565b60306120199190612c41565b60f81b81838151811061202f5761202e612f76565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561206b9190612c97565b9450611fe9565b8093505050505b919050565b50505050565b50505050565b61209783838360016120bf565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561212c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612167576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612174600086838761207e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156123d957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561238d575061238b6000888488611cfd565b155b156123c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612312565b5080600081905550506123ef6000868387612084565b5050505050565b82805461240290612e0c565b90600052602060002090601f016020900481019282612424576000855561246b565b82601f1061243d57805160ff191683800117855561246b565b8280016001018555821561246b579182015b8281111561246a57825182559160200191906001019061244f565b5b50905061247891906124bf565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156124d85760008160009055506001016124c0565b5090565b60006124ef6124ea84612b91565b612b6c565b90508281526020810184848401111561250b5761250a612fd9565b5b612516848285612dca565b509392505050565b600061253161252c84612bc2565b612b6c565b90508281526020810184848401111561254d5761254c612fd9565b5b612558848285612dca565b509392505050565b60008135905061256f8161309d565b92915050565b600081359050612584816130b4565b92915050565b600081359050612599816130cb565b92915050565b6000815190506125ae816130cb565b92915050565b600082601f8301126125c9576125c8612fd4565b5b81356125d98482602086016124dc565b91505092915050565b600082601f8301126125f7576125f6612fd4565b5b813561260784826020860161251e565b91505092915050565b60008135905061261f816130e2565b92915050565b60006020828403121561263b5761263a612fe3565b5b600061264984828501612560565b91505092915050565b6000806040838503121561266957612668612fe3565b5b600061267785828601612560565b925050602061268885828601612560565b9150509250929050565b6000806000606084860312156126ab576126aa612fe3565b5b60006126b986828701612560565b93505060206126ca86828701612560565b92505060406126db86828701612610565b9150509250925092565b600080600080608085870312156126ff576126fe612fe3565b5b600061270d87828801612560565b945050602061271e87828801612560565b935050604061272f87828801612610565b925050606085013567ffffffffffffffff8111156127505761274f612fde565b5b61275c878288016125b4565b91505092959194509250565b6000806040838503121561277f5761277e612fe3565b5b600061278d85828601612560565b925050602061279e85828601612575565b9150509250929050565b600080604083850312156127bf576127be612fe3565b5b60006127cd85828601612560565b92505060206127de85828601612610565b9150509250929050565b6000602082840312156127fe576127fd612fe3565b5b600061280c8482850161258a565b91505092915050565b60006020828403121561282b5761282a612fe3565b5b60006128398482850161259f565b91505092915050565b60006020828403121561285857612857612fe3565b5b600082013567ffffffffffffffff81111561287657612875612fde565b5b612882848285016125e2565b91505092915050565b6000602082840312156128a1576128a0612fe3565b5b60006128af84828501612610565b91505092915050565b6128c181612d56565b82525050565b6128d081612d68565b82525050565b60006128e182612bf3565b6128eb8185612c09565b93506128fb818560208601612dd9565b61290481612fe8565b840191505092915050565b600061291a82612bfe565b6129248185612c25565b9350612934818560208601612dd9565b61293d81612fe8565b840191505092915050565b600061295382612bfe565b61295d8185612c36565b935061296d818560208601612dd9565b80840191505092915050565b6000612986601083612c25565b915061299182612ff9565b602082019050919050565b60006129a9602683612c25565b91506129b482613022565b604082019050919050565b60006129cc602083612c25565b91506129d782613071565b602082019050919050565b60006129ef600083612c1a565b91506129fa8261309a565b600082019050919050565b612a0e81612dc0565b82525050565b6000612a208285612948565b9150612a2c8284612948565b91508190509392505050565b6000612a43826129e2565b9150819050919050565b6000602082019050612a6260008301846128b8565b92915050565b6000608082019050612a7d60008301876128b8565b612a8a60208301866128b8565b612a976040830185612a05565b8181036060830152612aa981846128d6565b905095945050505050565b6000602082019050612ac960008301846128c7565b92915050565b60006020820190508181036000830152612ae9818461290f565b905092915050565b60006020820190508181036000830152612b0a81612979565b9050919050565b60006020820190508181036000830152612b2a8161299c565b9050919050565b60006020820190508181036000830152612b4a816129bf565b9050919050565b6000602082019050612b666000830184612a05565b92915050565b6000612b76612b87565b9050612b828282612e3e565b919050565b6000604051905090565b600067ffffffffffffffff821115612bac57612bab612fa5565b5b612bb582612fe8565b9050602081019050919050565b600067ffffffffffffffff821115612bdd57612bdc612fa5565b5b612be682612fe8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c4c82612dc0565b9150612c5783612dc0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c8c57612c8b612ee9565b5b828201905092915050565b6000612ca282612dc0565b9150612cad83612dc0565b925082612cbd57612cbc612f18565b5b828204905092915050565b6000612cd382612dc0565b9150612cde83612dc0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d1757612d16612ee9565b5b828202905092915050565b6000612d2d82612dc0565b9150612d3883612dc0565b925082821015612d4b57612d4a612ee9565b5b828203905092915050565b6000612d6182612da0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612df7578082015181840152602081019050612ddc565b83811115612e06576000848401525b50505050565b60006002820490506001821680612e2457607f821691505b60208210811415612e3857612e37612f47565b5b50919050565b612e4782612fe8565b810181811067ffffffffffffffff82111715612e6657612e65612fa5565b5b80604052505050565b6000612e7a82612dc0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ead57612eac612ee9565b5b600182019050919050565b6000612ec382612dc0565b9150612ece83612dc0565b925082612ede57612edd612f18565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5f7769746864726177206661696c656400000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6130a681612d56565b81146130b157600080fd5b50565b6130bd81612d68565b81146130c857600080fd5b50565b6130d481612d74565b81146130df57600080fd5b50565b6130eb81612dc0565b81146130f657600080fd5b5056fea26469706673582212202c43f2782f74bd06bf625cc55193ea3e2bf88abf1178e197951dbc229c1f37df64736f6c63430008070033697066733a2f2f516d61326e55527839684b6458756272713148516d78414e76665935774b686d7154454758733842354533314a4b2f
Deployed Bytecode
0x6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063c002d23d11610064578063c002d23d1461052e578063c87b56dd14610559578063e985e9c514610596578063f2fde38b146105d357610181565b8063a22cb465146104b1578063a560ed7b146104da578063b88d4fde1461050557610181565b806370a08231146103c2578063715018a6146103ff5780638da5cb5b1461041657806391b7f5ed1461044157806395d89b411461046a578063a0712d681461049557610181565b806318160ddd1161013e57806342842e0e1161011857806342842e0e146103085780634c261247146103315780636352211e1461035a5780636c0360eb1461039757610181565b806318160ddd146102aa57806323b872dd146102d55780633ccfd60b146102fe57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780630b59c43e14610254578063114cccd21461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906127e8565b6105fc565b6040516101ba9190612ab4565b60405180910390f35b3480156101cf57600080fd5b506101d86106de565b6040516101e59190612acf565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061288b565b610770565b6040516102229190612a4d565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906127a8565b6107ec565b005b34801561026057600080fd5b506102696108f7565b6040516102769190612ab4565b60405180910390f35b34801561028b57600080fd5b5061029461090a565b6040516102a19190612b51565b60405180910390f35b3480156102b657600080fd5b506102bf610910565b6040516102cc9190612b51565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190612692565b61091e565b005b61030661092e565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612692565b6109c9565b005b34801561033d57600080fd5b5061035860048036038101906103539190612842565b6109e9565b005b34801561036657600080fd5b50610381600480360381019061037c919061288b565b610a9a565b60405161038e9190612a4d565b60405180910390f35b3480156103a357600080fd5b506103ac610ab0565b6040516103b99190612acf565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190612625565b610b3e565b6040516103f69190612b51565b60405180910390f35b34801561040b57600080fd5b50610414610c0e565b005b34801561042257600080fd5b5061042b610c96565b6040516104389190612a4d565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061288b565b610cc0565b005b34801561047657600080fd5b5061047f610d46565b60405161048c9190612acf565b60405180910390f35b6104af60048036038101906104aa919061288b565b610dd8565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190612768565b610e61565b005b3480156104e657600080fd5b506104ef610e9c565b6040516104fc9190612b51565b60405180910390f35b34801561051157600080fd5b5061052c600480360381019061052791906126e5565b610ea1565b005b34801561053a57600080fd5b50610543610ef4565b6040516105509190612b51565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b919061288b565b610efa565b60405161058d9190612acf565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612652565b610f99565b6040516105ca9190612ab4565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190612625565b61102d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106c757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d757506106d682611125565b5b9050919050565b6060600280546106ed90612e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461071990612e0c565b80156107665780601f1061073b57610100808354040283529160200191610766565b820191906000526020600020905b81548152906001019060200180831161074957829003601f168201915b5050505050905090565b600061077b8261118f565b6107b1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f782610a9a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087e6111c9565b73ffffffffffffffffffffffffffffffffffffffff16141580156108b057506108ae816108a96111c9565b610f99565b155b156108e7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108f28383836111d1565b505050565b600a60009054906101000a900460ff1681565b6108d281565b600060015460005403905090565b610929838383611283565b505050565b6109366111c9565b73ffffffffffffffffffffffffffffffffffffffff16610954610c96565b73ffffffffffffffffffffffffffffffffffffffff16146109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a190612b31565b60405180910390fd5b6000479050600081116109bc57600080fd5b6109c63382611774565b50565b6109e483838360405180602001604052806000815250610ea1565b505050565b6109f16111c9565b73ffffffffffffffffffffffffffffffffffffffff16610a0f610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90612b31565b60405180910390fd5b80600b9080519060200190610a7b9291906123f6565b506001600a60006101000a81548160ff02191690831515021790555050565b6000610aa582611825565b600001519050919050565b600b8054610abd90612e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae990612e0c565b8015610b365780601f10610b0b57610100808354040283529160200191610b36565b820191906000526020600020905b815481529060010190602001808311610b1957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c166111c9565b73ffffffffffffffffffffffffffffffffffffffff16610c34610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190612b31565b60405180910390fd5b610c946000611aa1565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cc86111c9565b73ffffffffffffffffffffffffffffffffffffffff16610ce6610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390612b31565b60405180910390fd5b8060098190555050565b606060038054610d5590612e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190612e0c565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b5050505050905090565b6000610de2610910565b90506108d28282610df39190612c41565b1115610dfe57600080fd5b3482600954610e0d9190612cc8565b111580610e2257506102f6610e20610910565b105b610e2b57600080fd5b601482610e3e610e396111c9565b610b3e565b610e489190612c41565b1115610e5357600080fd5b610e5d3383611b67565b5050565b6108d2610e6c610910565b101580610e855750600a60009054906101000a900460ff165b610e8e57600080fd5b610e988282611b85565b5050565b601481565b610eac848484611283565b610eb884848484611cfd565b610eee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b6060610f058261118f565b610f3b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f45611e8b565b9050600081511415610f665760405180602001604052806000815250610f91565b80610f7084611f1d565b604051602001610f81929190612a14565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110356111c9565b73ffffffffffffffffffffffffffffffffffffffff16611053610c96565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090612b31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090612b11565b60405180910390fd5b61112281611aa1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156111c2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061128e82611825565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166112b56111c9565b73ffffffffffffffffffffffffffffffffffffffff1614806112e857506112e782600001516112e26111c9565b610f99565b5b8061132d57506112f66111c9565b73ffffffffffffffffffffffffffffffffffffffff1661131584610770565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611366576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146113cf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611436576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611443858585600161207e565b61145360008484600001516111d1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611704576000548110156117035782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461176d8585856001612084565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161179a90612a38565b60006040518083038185875af1925050503d80600081146117d7576040519150601f19603f3d011682016040523d82523d6000602084013e6117dc565b606091505b5050905080611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790612af1565b60405180910390fd5b505050565b61182d61247c565b6000829050600054811015611a6a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a6857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461194c578092505050611a9c565b5b600115611a6757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a62578092505050611a9c565b61194d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b8182826040518060200160405280600081525061208a565b5050565b611b8d6111c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bff6111c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cac6111c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf19190612ab4565b60405180910390a35050565b6000611d1e8473ffffffffffffffffffffffffffffffffffffffff1661209c565b15611e7e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d476111c9565b8786866040518563ffffffff1660e01b8152600401611d699493929190612a68565b602060405180830381600087803b158015611d8357600080fd5b505af1925050508015611db457506040513d601f19601f82011682018060405250810190611db19190612815565b60015b611e2e573d8060008114611de4576040519150601f19603f3d011682016040523d82523d6000602084013e611de9565b606091505b50600081511415611e26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e83565b600190505b949350505050565b6060600b8054611e9a90612e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec690612e0c565b8015611f135780601f10611ee857610100808354040283529160200191611f13565b820191906000526020600020905b815481529060010190602001808311611ef657829003601f168201915b5050505050905090565b60606000821415611f65576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612079565b600082905060005b60008214611f97578080611f8090612e6f565b915050600a82611f909190612c97565b9150611f6d565b60008167ffffffffffffffff811115611fb357611fb2612fa5565b5b6040519080825280601f01601f191660200182016040528015611fe55781602001600182028036833780820191505090505b5090505b6000851461207257600182611ffe9190612d22565b9150600a8561200d9190612eb8565b60306120199190612c41565b60f81b81838151811061202f5761202e612f76565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561206b9190612c97565b9450611fe9565b8093505050505b919050565b50505050565b50505050565b61209783838360016120bf565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561212c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612167576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612174600086838761207e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156123d957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561238d575061238b6000888488611cfd565b155b156123c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612312565b5080600081905550506123ef6000868387612084565b5050505050565b82805461240290612e0c565b90600052602060002090601f016020900481019282612424576000855561246b565b82601f1061243d57805160ff191683800117855561246b565b8280016001018555821561246b579182015b8281111561246a57825182559160200191906001019061244f565b5b50905061247891906124bf565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156124d85760008160009055506001016124c0565b5090565b60006124ef6124ea84612b91565b612b6c565b90508281526020810184848401111561250b5761250a612fd9565b5b612516848285612dca565b509392505050565b600061253161252c84612bc2565b612b6c565b90508281526020810184848401111561254d5761254c612fd9565b5b612558848285612dca565b509392505050565b60008135905061256f8161309d565b92915050565b600081359050612584816130b4565b92915050565b600081359050612599816130cb565b92915050565b6000815190506125ae816130cb565b92915050565b600082601f8301126125c9576125c8612fd4565b5b81356125d98482602086016124dc565b91505092915050565b600082601f8301126125f7576125f6612fd4565b5b813561260784826020860161251e565b91505092915050565b60008135905061261f816130e2565b92915050565b60006020828403121561263b5761263a612fe3565b5b600061264984828501612560565b91505092915050565b6000806040838503121561266957612668612fe3565b5b600061267785828601612560565b925050602061268885828601612560565b9150509250929050565b6000806000606084860312156126ab576126aa612fe3565b5b60006126b986828701612560565b93505060206126ca86828701612560565b92505060406126db86828701612610565b9150509250925092565b600080600080608085870312156126ff576126fe612fe3565b5b600061270d87828801612560565b945050602061271e87828801612560565b935050604061272f87828801612610565b925050606085013567ffffffffffffffff8111156127505761274f612fde565b5b61275c878288016125b4565b91505092959194509250565b6000806040838503121561277f5761277e612fe3565b5b600061278d85828601612560565b925050602061279e85828601612575565b9150509250929050565b600080604083850312156127bf576127be612fe3565b5b60006127cd85828601612560565b92505060206127de85828601612610565b9150509250929050565b6000602082840312156127fe576127fd612fe3565b5b600061280c8482850161258a565b91505092915050565b60006020828403121561282b5761282a612fe3565b5b60006128398482850161259f565b91505092915050565b60006020828403121561285857612857612fe3565b5b600082013567ffffffffffffffff81111561287657612875612fde565b5b612882848285016125e2565b91505092915050565b6000602082840312156128a1576128a0612fe3565b5b60006128af84828501612610565b91505092915050565b6128c181612d56565b82525050565b6128d081612d68565b82525050565b60006128e182612bf3565b6128eb8185612c09565b93506128fb818560208601612dd9565b61290481612fe8565b840191505092915050565b600061291a82612bfe565b6129248185612c25565b9350612934818560208601612dd9565b61293d81612fe8565b840191505092915050565b600061295382612bfe565b61295d8185612c36565b935061296d818560208601612dd9565b80840191505092915050565b6000612986601083612c25565b915061299182612ff9565b602082019050919050565b60006129a9602683612c25565b91506129b482613022565b604082019050919050565b60006129cc602083612c25565b91506129d782613071565b602082019050919050565b60006129ef600083612c1a565b91506129fa8261309a565b600082019050919050565b612a0e81612dc0565b82525050565b6000612a208285612948565b9150612a2c8284612948565b91508190509392505050565b6000612a43826129e2565b9150819050919050565b6000602082019050612a6260008301846128b8565b92915050565b6000608082019050612a7d60008301876128b8565b612a8a60208301866128b8565b612a976040830185612a05565b8181036060830152612aa981846128d6565b905095945050505050565b6000602082019050612ac960008301846128c7565b92915050565b60006020820190508181036000830152612ae9818461290f565b905092915050565b60006020820190508181036000830152612b0a81612979565b9050919050565b60006020820190508181036000830152612b2a8161299c565b9050919050565b60006020820190508181036000830152612b4a816129bf565b9050919050565b6000602082019050612b666000830184612a05565b92915050565b6000612b76612b87565b9050612b828282612e3e565b919050565b6000604051905090565b600067ffffffffffffffff821115612bac57612bab612fa5565b5b612bb582612fe8565b9050602081019050919050565b600067ffffffffffffffff821115612bdd57612bdc612fa5565b5b612be682612fe8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c4c82612dc0565b9150612c5783612dc0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c8c57612c8b612ee9565b5b828201905092915050565b6000612ca282612dc0565b9150612cad83612dc0565b925082612cbd57612cbc612f18565b5b828204905092915050565b6000612cd382612dc0565b9150612cde83612dc0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d1757612d16612ee9565b5b828202905092915050565b6000612d2d82612dc0565b9150612d3883612dc0565b925082821015612d4b57612d4a612ee9565b5b828203905092915050565b6000612d6182612da0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612df7578082015181840152602081019050612ddc565b83811115612e06576000848401525b50505050565b60006002820490506001821680612e2457607f821691505b60208210811415612e3857612e37612f47565b5b50919050565b612e4782612fe8565b810181811067ffffffffffffffff82111715612e6657612e65612fa5565b5b80604052505050565b6000612e7a82612dc0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ead57612eac612ee9565b5b600182019050919050565b6000612ec382612dc0565b9150612ece83612dc0565b925082612ede57612edd612f18565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5f7769746864726177206661696c656400000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6130a681612d56565b81146130b157600080fd5b50565b6130bd81612d68565b81146130c857600080fd5b50565b6130d481612d74565b81146130df57600080fd5b50565b6130eb81612dc0565b81146130f657600080fd5b5056fea26469706673582212202c43f2782f74bd06bf625cc55193ea3e2bf88abf1178e197951dbc229c1f37df64736f6c63430008070033
Deployed Bytecode Sourcemap
44719:1650:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27509:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32372:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31935:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44908:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44770:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27166:271;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33237:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45786:175;;;:::i;:::-;;33478:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45555:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30678:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44945:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27878:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4765:103;;;;;;;;;;;;;:::i;:::-;;4114:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45689:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31038:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45212:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46157:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44817:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33734:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44863:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31213:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33006:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5023:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27509:305;27611:4;27663:25;27648:40;;;:11;:40;;;;:105;;;;27720:33;27705:48;;;:11;:48;;;;27648:105;:158;;;;27770:36;27794:11;27770:23;:36::i;:::-;27648:158;27628:178;;27509:305;;;:::o;30869:100::-;30923:13;30956:5;30949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30869:100;:::o;32372:204::-;32440:7;32465:16;32473:7;32465;:16::i;:::-;32460:64;;32490:34;;;;;;;;;;;;;;32460:64;32544:15;:24;32560:7;32544:24;;;;;;;;;;;;;;;;;;;;;32537:31;;32372:204;;;:::o;31935:371::-;32008:13;32024:24;32040:7;32024:15;:24::i;:::-;32008:40;;32069:5;32063:11;;:2;:11;;;32059:48;;;32083:24;;;;;;;;;;;;;;32059:48;32140:5;32124:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32150:37;32167:5;32174:12;:10;:12::i;:::-;32150:16;:37::i;:::-;32149:38;32124:63;32120:138;;;32211:35;;;;;;;;;;;;;;32120:138;32270:28;32279:2;32283:7;32292:5;32270:8;:28::i;:::-;31997:309;31935:371;;:::o;44908:30::-;;;;;;;;;;;;;:::o;44770:40::-;44806:4;44770:40;:::o;27166:271::-;27210:7;27402:12;;27386:13;;:28;27379:35;;27166:271;:::o;33237:170::-;33371:28;33381:4;33387:2;33391:7;33371:9;:28::i;:::-;33237:170;;;:::o;45786:175::-;4345:12;:10;:12::i;:::-;4334:23;;:7;:5;:7::i;:::-;:23;;;4326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45842:15:::1;45860:21;45842:39;;45910:1;45900:7;:11;45892:20;;;::::0;::::1;;45923:30;45933:10;45945:7;45923:9;:30::i;:::-;45831:130;45786:175::o:0;33478:185::-;33616:39;33633:4;33639:2;33643:7;33616:39;;;;;;;;;;;;:16;:39::i;:::-;33478:185;;;:::o;45555:126::-;4345:12;:10;:12::i;:::-;4334:23;;:7;:5;:7::i;:::-;:23;;;4326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45635:10:::1;45625:7;:20;;;;;;;;;;;;:::i;:::-;;45669:4;45656:10;;:17;;;;;;;;;;;;;;;;;;45555:126:::0;:::o;30678:124::-;30742:7;30769:20;30781:7;30769:11;:20::i;:::-;:25;;;30762:32;;30678:124;;;:::o;44945:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27878:206::-;27942:7;27983:1;27966:19;;:5;:19;;;27962:60;;;27994:28;;;;;;;;;;;;;;27962:60;28048:12;:19;28061:5;28048:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28040:36;;28033:43;;27878:206;;;:::o;4765:103::-;4345:12;:10;:12::i;:::-;4334:23;;:7;:5;:7::i;:::-;:23;;;4326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4830:30:::1;4857:1;4830:18;:30::i;:::-;4765:103::o:0;4114:87::-;4160:7;4187:6;;;;;;;;;;;4180:13;;4114:87;:::o;45689:89::-;4345:12;:10;:12::i;:::-;4334:23;;:7;:5;:7::i;:::-;:23;;;4326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45764:6:::1;45751:10;:19;;;;45689:89:::0;:::o;31038:104::-;31094:13;31127:7;31120:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31038:104;:::o;45212:335::-;45268:20;45291:13;:11;:13::i;:::-;45268:36;;44806:4;45338:6;45323:12;:21;;;;:::i;:::-;:34;;45315:43;;;;;;45400:9;45390:6;45377:10;;:19;;;;:::i;:::-;:32;;:55;;;;45429:3;45413:13;:11;:13::i;:::-;:19;45377:55;45369:64;;;;;;44854:2;45478:6;45452:23;45462:12;:10;:12::i;:::-;45452:9;:23::i;:::-;:32;;;;:::i;:::-;:46;;45444:55;;;;;;45510:29;45520:10;45532:6;45510:9;:29::i;:::-;45257:290;45212:335;:::o;46157:206::-;44806:4;46260:13;:11;:13::i;:::-;:26;;:40;;;;46290:10;;;;;;;;;;;46260:40;46252:49;;;;;;46312:43;46336:8;46346;46312:23;:43::i;:::-;46157:206;;:::o;44817:39::-;44854:2;44817:39;:::o;33734:342::-;33901:28;33911:4;33917:2;33921:7;33901:9;:28::i;:::-;33945:48;33968:4;33974:2;33978:7;33987:5;33945:22;:48::i;:::-;33940:129;;34017:40;;;;;;;;;;;;;;33940:129;33734:342;;;;:::o;44863:38::-;;;;:::o;31213:318::-;31286:13;31317:16;31325:7;31317;:16::i;:::-;31312:59;;31342:29;;;;;;;;;;;;;;31312:59;31384:21;31408:10;:8;:10::i;:::-;31384:34;;31461:1;31442:7;31436:21;:26;;:87;;;;;;;;;;;;;;;;;31489:7;31498:18;:7;:16;:18::i;:::-;31472:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31436:87;31429:94;;;31213:318;;;:::o;33006:164::-;33103:4;33127:18;:25;33146:5;33127:25;;;;;;;;;;;;;;;:35;33153:8;33127:35;;;;;;;;;;;;;;;;;;;;;;;;;33120:42;;33006:164;;;;:::o;5023:201::-;4345:12;:10;:12::i;:::-;4334:23;;:7;:5;:7::i;:::-;:23;;;4326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5132:1:::1;5112:22;;:8;:22;;;;5104:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5188:28;5207:8;5188:18;:28::i;:::-;5023:201:::0;:::o;16898:157::-;16983:4;17022:25;17007:40;;;:11;:40;;;;17000:47;;16898:157;;;:::o;34331:144::-;34388:4;34422:13;;34412:7;:23;:55;;;;;34440:11;:20;34452:7;34440:20;;;;;;;;;;;:27;;;;;;;;;;;;34439:28;34412:55;34405:62;;34331:144;;;:::o;2838:98::-;2891:7;2918:10;2911:17;;2838:98;:::o;41537:196::-;41679:2;41652:15;:24;41668:7;41652:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41717:7;41713:2;41697:28;;41706:5;41697:28;;;;;;;;;;;;41537:196;;;:::o;37038:2112::-;37153:35;37191:20;37203:7;37191:11;:20::i;:::-;37153:58;;37224:22;37266:13;:18;;;37250:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;37301:50;37318:13;:18;;;37338:12;:10;:12::i;:::-;37301:16;:50::i;:::-;37250:101;:154;;;;37392:12;:10;:12::i;:::-;37368:36;;:20;37380:7;37368:11;:20::i;:::-;:36;;;37250:154;37224:181;;37423:17;37418:66;;37449:35;;;;;;;;;;;;;;37418:66;37521:4;37499:26;;:13;:18;;;:26;;;37495:67;;37534:28;;;;;;;;;;;;;;37495:67;37591:1;37577:16;;:2;:16;;;37573:52;;;37602:23;;;;;;;;;;;;;;37573:52;37638:43;37660:4;37666:2;37670:7;37679:1;37638:21;:43::i;:::-;37746:49;37763:1;37767:7;37776:13;:18;;;37746:8;:49::i;:::-;38121:1;38091:12;:18;38104:4;38091:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38165:1;38137:12;:16;38150:2;38137:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38211:2;38183:11;:20;38195:7;38183:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;38273:15;38228:11;:20;38240:7;38228:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;38541:19;38573:1;38563:7;:11;38541:33;;38634:1;38593:43;;:11;:24;38605:11;38593:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;38589:445;;;38818:13;;38804:11;:27;38800:219;;;38888:13;:18;;;38856:11;:24;38868:11;38856:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;38971:13;:28;;;38929:11;:24;38941:11;38929:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;38800:219;38589:445;38066:979;39081:7;39077:2;39062:27;;39071:4;39062:27;;;;;;;;;;;;39100:42;39121:4;39127:2;39131:7;39140:1;39100:20;:42::i;:::-;37142:2008;;37038:2112;;;:::o;45969:180::-;46043:12;46061:8;:13;;46082:7;46061:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46042:52;;;46113:7;46105:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;46031:118;45969:180;;:::o;29533:1083::-;29594:21;;:::i;:::-;29628:12;29643:7;29628:22;;29699:13;;29692:4;:20;29688:861;;;29733:31;29767:11;:17;29779:4;29767:17;;;;;;;;;;;29733:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29808:9;:16;;;29803:731;;29879:1;29853:28;;:9;:14;;;:28;;;29849:101;;29917:9;29910:16;;;;;;29849:101;30254:261;30261:4;30254:261;;;30294:6;;;;;;;;30339:11;:17;30351:4;30339:17;;;;;;;;;;;30327:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30413:1;30387:28;;:9;:14;;;:28;;;30383:109;;30455:9;30448:16;;;;;;30383:109;30254:261;;;29803:731;29714:835;29688:861;30577:31;;;;;;;;;;;;;;29533:1083;;;;:::o;5384:191::-;5458:16;5477:6;;;;;;;;;;;5458:25;;5503:8;5494:6;;:17;;;;;;;;;;;;;;;;;;5558:8;5527:40;;5548:8;5527:40;;;;;;;;;;;;5447:128;5384:191;:::o;34483:104::-;34552:27;34562:2;34566:8;34552:27;;;;;;;;;;;;:9;:27::i;:::-;34483:104;;:::o;32648:287::-;32759:12;:10;:12::i;:::-;32747:24;;:8;:24;;;32743:54;;;32780:17;;;;;;;;;;;;;;32743:54;32855:8;32810:18;:32;32829:12;:10;:12::i;:::-;32810:32;;;;;;;;;;;;;;;:42;32843:8;32810:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32908:8;32879:48;;32894:12;:10;:12::i;:::-;32879:48;;;32918:8;32879:48;;;;;;:::i;:::-;;;;;;;;32648:287;;:::o;42298:790::-;42453:4;42474:15;:2;:13;;;:15::i;:::-;42470:611;;;42526:2;42510:36;;;42547:12;:10;:12::i;:::-;42561:4;42567:7;42576:5;42510:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42506:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42773:1;42756:6;:13;:18;42752:259;;;42806:40;;;;;;;;;;;;;;42752:259;42961:6;42955:13;42946:6;42942:2;42938:15;42931:38;42506:520;42643:45;;;42633:55;;;:6;:55;;;;42626:62;;;;;42470:611;43065:4;43058:11;;42298:790;;;;;;;:::o;45096:108::-;45156:13;45189:7;45182:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45096:108;:::o;400:723::-;456:13;686:1;677:5;:10;673:53;;;704:10;;;;;;;;;;;;;;;;;;;;;673:53;736:12;751:5;736:20;;767:14;792:78;807:1;799:4;:9;792:78;;825:8;;;;;:::i;:::-;;;;856:2;848:10;;;;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880:39;;930:154;946:1;937:5;:10;930:154;;974:1;964:11;;;;;:::i;:::-;;;1041:2;1033:5;:10;;;;:::i;:::-;1020:2;:24;;;;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1070:2;1061:11;;;;;:::i;:::-;;;930:154;;;1108:6;1094:21;;;;;400:723;;;;:::o;43736:159::-;;;;;:::o;44554:158::-;;;;;:::o;34950:163::-;35073:32;35079:2;35083:8;35093:5;35100:4;35073:5;:32::i;:::-;34950:163;;;:::o;6815:326::-;6875:4;7132:1;7110:7;:19;;;:23;7103:30;;6815:326;;;:::o;35372:1412::-;35511:20;35534:13;;35511:36;;35576:1;35562:16;;:2;:16;;;35558:48;;;35587:19;;;;;;;;;;;;;;35558:48;35633:1;35621:8;:13;35617:44;;;35643:18;;;;;;;;;;;;;;35617:44;35674:61;35704:1;35708:2;35712:12;35726:8;35674:21;:61::i;:::-;36047:8;36012:12;:16;36025:2;36012:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36111:8;36071:12;:16;36084:2;36071:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36170:2;36137:11;:25;36149:12;36137:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36237:15;36187:11;:25;36199:12;36187:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36270:20;36293:12;36270:35;;36327:9;36322:328;36342:8;36338:1;:12;36322:328;;;36406:12;36402:2;36381:38;;36398:1;36381:38;;;;;;;;;;;;36442:4;:68;;;;;36451:59;36482:1;36486:2;36490:12;36504:5;36451:22;:59::i;:::-;36450:60;36442:68;36438:164;;;36542:40;;;;;;;;;;;;;;36438:164;36620:14;;;;;;;36352:3;;;;;;;36322:328;;;;36682:12;36666:13;:28;;;;35987:719;36716:60;36745:1;36749:2;36753:12;36767:8;36716:20;:60::i;:::-;35500:1284;35372:1412;;;;:::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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:398::-;9791:3;9812:83;9893:1;9888:3;9812:83;:::i;:::-;9805:90;;9904:93;9993:3;9904:93;:::i;:::-;10022:1;10017:3;10013:11;10006:18;;9632:398;;;:::o;10036:118::-;10123:24;10141:5;10123:24;:::i;:::-;10118:3;10111:37;10036:118;;:::o;10160:435::-;10340:3;10362:95;10453:3;10444:6;10362:95;:::i;:::-;10355:102;;10474:95;10565:3;10556:6;10474:95;:::i;:::-;10467:102;;10586:3;10579:10;;10160:435;;;;;:::o;10601:379::-;10785:3;10807:147;10950:3;10807:147;:::i;:::-;10800:154;;10971:3;10964:10;;10601:379;;;:::o;10986:222::-;11079:4;11117:2;11106:9;11102:18;11094:26;;11130:71;11198:1;11187:9;11183:17;11174:6;11130:71;:::i;:::-;10986:222;;;;:::o;11214:640::-;11409:4;11447:3;11436:9;11432:19;11424:27;;11461:71;11529:1;11518:9;11514:17;11505:6;11461:71;:::i;:::-;11542:72;11610:2;11599:9;11595:18;11586:6;11542:72;:::i;:::-;11624;11692:2;11681:9;11677:18;11668:6;11624:72;:::i;:::-;11743:9;11737:4;11733:20;11728:2;11717:9;11713:18;11706:48;11771:76;11842:4;11833:6;11771:76;:::i;:::-;11763:84;;11214:640;;;;;;;:::o;11860:210::-;11947:4;11985:2;11974:9;11970:18;11962:26;;11998:65;12060:1;12049:9;12045:17;12036:6;11998:65;:::i;:::-;11860:210;;;;:::o;12076:313::-;12189:4;12227:2;12216:9;12212:18;12204:26;;12276:9;12270:4;12266:20;12262:1;12251:9;12247:17;12240:47;12304:78;12377:4;12368:6;12304:78;:::i;:::-;12296:86;;12076:313;;;;:::o;12395:419::-;12561:4;12599:2;12588:9;12584:18;12576:26;;12648:9;12642:4;12638:20;12634:1;12623:9;12619:17;12612:47;12676:131;12802:4;12676:131;:::i;:::-;12668:139;;12395:419;;;:::o;12820:::-;12986:4;13024:2;13013:9;13009:18;13001:26;;13073:9;13067:4;13063:20;13059:1;13048:9;13044:17;13037:47;13101:131;13227:4;13101:131;:::i;:::-;13093:139;;12820:419;;;:::o;13245:::-;13411:4;13449:2;13438:9;13434:18;13426:26;;13498:9;13492:4;13488:20;13484:1;13473:9;13469:17;13462:47;13526:131;13652:4;13526:131;:::i;:::-;13518:139;;13245:419;;;:::o;13670:222::-;13763:4;13801:2;13790:9;13786:18;13778:26;;13814:71;13882:1;13871:9;13867:17;13858:6;13814:71;:::i;:::-;13670:222;;;;:::o;13898:129::-;13932:6;13959:20;;:::i;:::-;13949:30;;13988:33;14016:4;14008:6;13988:33;:::i;:::-;13898:129;;;:::o;14033:75::-;14066:6;14099:2;14093:9;14083:19;;14033:75;:::o;14114:307::-;14175:4;14265:18;14257:6;14254:30;14251:56;;;14287:18;;:::i;:::-;14251:56;14325:29;14347:6;14325:29;:::i;:::-;14317:37;;14409:4;14403;14399:15;14391:23;;14114:307;;;:::o;14427:308::-;14489:4;14579:18;14571:6;14568:30;14565:56;;;14601:18;;:::i;:::-;14565:56;14639:29;14661:6;14639:29;:::i;:::-;14631:37;;14723:4;14717;14713:15;14705:23;;14427:308;;;:::o;14741:98::-;14792:6;14826:5;14820:12;14810:22;;14741:98;;;:::o;14845:99::-;14897:6;14931:5;14925:12;14915:22;;14845:99;;;:::o;14950:168::-;15033:11;15067:6;15062:3;15055:19;15107:4;15102:3;15098:14;15083:29;;14950:168;;;;:::o;15124:147::-;15225:11;15262:3;15247:18;;15124:147;;;;:::o;15277:169::-;15361:11;15395:6;15390:3;15383:19;15435:4;15430:3;15426:14;15411:29;;15277:169;;;;:::o;15452:148::-;15554:11;15591:3;15576:18;;15452:148;;;;:::o;15606:305::-;15646:3;15665:20;15683:1;15665:20;:::i;:::-;15660:25;;15699:20;15717:1;15699:20;:::i;:::-;15694:25;;15853:1;15785:66;15781:74;15778:1;15775:81;15772:107;;;15859:18;;:::i;:::-;15772:107;15903:1;15900;15896:9;15889:16;;15606:305;;;;:::o;15917:185::-;15957:1;15974:20;15992:1;15974:20;:::i;:::-;15969:25;;16008:20;16026:1;16008:20;:::i;:::-;16003:25;;16047:1;16037:35;;16052:18;;:::i;:::-;16037:35;16094:1;16091;16087:9;16082:14;;15917:185;;;;:::o;16108:348::-;16148:7;16171:20;16189:1;16171:20;:::i;:::-;16166:25;;16205:20;16223:1;16205:20;:::i;:::-;16200:25;;16393:1;16325:66;16321:74;16318:1;16315:81;16310:1;16303:9;16296:17;16292:105;16289:131;;;16400:18;;:::i;:::-;16289:131;16448:1;16445;16441:9;16430:20;;16108:348;;;;:::o;16462:191::-;16502:4;16522:20;16540:1;16522:20;:::i;:::-;16517:25;;16556:20;16574:1;16556:20;:::i;:::-;16551:25;;16595:1;16592;16589:8;16586:34;;;16600:18;;:::i;:::-;16586:34;16645:1;16642;16638:9;16630:17;;16462:191;;;;:::o;16659:96::-;16696:7;16725:24;16743:5;16725:24;:::i;:::-;16714:35;;16659:96;;;:::o;16761:90::-;16795:7;16838:5;16831:13;16824:21;16813:32;;16761:90;;;:::o;16857:149::-;16893:7;16933:66;16926:5;16922:78;16911:89;;16857:149;;;:::o;17012:126::-;17049:7;17089:42;17082:5;17078:54;17067:65;;17012:126;;;:::o;17144:77::-;17181:7;17210:5;17199:16;;17144:77;;;:::o;17227:154::-;17311:6;17306:3;17301;17288:30;17373:1;17364:6;17359:3;17355:16;17348:27;17227:154;;;:::o;17387:307::-;17455:1;17465:113;17479:6;17476:1;17473:13;17465:113;;;17564:1;17559:3;17555:11;17549:18;17545:1;17540:3;17536:11;17529:39;17501:2;17498:1;17494:10;17489:15;;17465:113;;;17596:6;17593:1;17590:13;17587:101;;;17676:1;17667:6;17662:3;17658:16;17651:27;17587:101;17436:258;17387:307;;;:::o;17700:320::-;17744:6;17781:1;17775:4;17771:12;17761:22;;17828:1;17822:4;17818:12;17849:18;17839:81;;17905:4;17897:6;17893:17;17883:27;;17839:81;17967:2;17959:6;17956:14;17936:18;17933:38;17930:84;;;17986:18;;:::i;:::-;17930:84;17751:269;17700:320;;;:::o;18026:281::-;18109:27;18131:4;18109:27;:::i;:::-;18101:6;18097:40;18239:6;18227:10;18224:22;18203:18;18191:10;18188:34;18185:62;18182:88;;;18250:18;;:::i;:::-;18182:88;18290:10;18286:2;18279:22;18069:238;18026:281;;:::o;18313:233::-;18352:3;18375:24;18393:5;18375:24;:::i;:::-;18366:33;;18421:66;18414:5;18411:77;18408:103;;;18491:18;;:::i;:::-;18408:103;18538:1;18531:5;18527:13;18520:20;;18313:233;;;:::o;18552:176::-;18584:1;18601:20;18619:1;18601:20;:::i;:::-;18596:25;;18635:20;18653:1;18635:20;:::i;:::-;18630:25;;18674:1;18664:35;;18679:18;;:::i;:::-;18664:35;18720:1;18717;18713:9;18708:14;;18552:176;;;;:::o;18734:180::-;18782:77;18779:1;18772:88;18879:4;18876:1;18869:15;18903:4;18900:1;18893:15;18920:180;18968:77;18965:1;18958:88;19065:4;19062:1;19055:15;19089:4;19086:1;19079:15;19106:180;19154:77;19151:1;19144:88;19251:4;19248:1;19241:15;19275:4;19272:1;19265:15;19292:180;19340:77;19337:1;19330:88;19437:4;19434:1;19427:15;19461:4;19458:1;19451:15;19478:180;19526:77;19523:1;19516:88;19623:4;19620:1;19613:15;19647:4;19644:1;19637:15;19664:117;19773:1;19770;19763:12;19787:117;19896:1;19893;19886:12;19910:117;20019:1;20016;20009:12;20033:117;20142:1;20139;20132:12;20156:102;20197:6;20248:2;20244:7;20239:2;20232:5;20228:14;20224:28;20214:38;;20156:102;;;:::o;20264:166::-;20404:18;20400:1;20392:6;20388:14;20381:42;20264:166;:::o;20436:225::-;20576:34;20572:1;20564:6;20560:14;20553:58;20645:8;20640:2;20632:6;20628:15;20621:33;20436:225;:::o;20667:182::-;20807:34;20803:1;20795:6;20791:14;20784:58;20667:182;:::o;20855:114::-;;:::o;20975:122::-;21048:24;21066:5;21048:24;:::i;:::-;21041:5;21038:35;21028:63;;21087:1;21084;21077:12;21028:63;20975:122;:::o;21103:116::-;21173:21;21188:5;21173:21;:::i;:::-;21166:5;21163:32;21153:60;;21209:1;21206;21199:12;21153:60;21103:116;:::o;21225:120::-;21297:23;21314:5;21297:23;:::i;:::-;21290:5;21287:34;21277:62;;21335:1;21332;21325:12;21277:62;21225:120;:::o;21351:122::-;21424:24;21442:5;21424:24;:::i;:::-;21417:5;21414:35;21404:63;;21463:1;21460;21453:12;21404:63;21351:122;:::o
Swarm Source
ipfs://2c43f2782f74bd06bf625cc55193ea3e2bf88abf1178e197951dbc229c1f37df
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.