Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,821 TH
Holders
286
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 THLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheHabAIbiz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-01 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //Developer Info: //Written by Blockchainguy.net //Email: [email protected] //Instagram: @sheraz.manzoor /** * @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; } } 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); } } pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } } 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); } 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); } 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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; } } 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; } 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); } 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); } 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 = 1; // 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) - 1; } } /** * @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 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 TheHabAIbiz is Ownable, ERC721A { uint256 public maxPerTransaction = 10; uint256 public maxInAddress = 10; using Strings for uint256; mapping(uint256 => string) private _tokenURIs; bool public publicSaleState = true; string public baseURI = ""; string public _extension = ".json"; string public hiddenMetadataUri = "ipfs://QmXiJbpRRx27jgUgYugzhWEviU7Q1iZm7osWFFr2R9gLgW/"; bool public revealed = false; uint256 public price = 0.005 ether; uint256 public maxSupply = 4900; mapping(uint => uint256) public voucherIds; constructor() ERC721A("The HabAIbiz", "TH"){} function mintNFT(uint256 _quantity) public payable { require(_quantity > 0 && _quantity <= maxPerTransaction, "Wrong Quantity."); require(totalSupply() + _quantity <= maxSupply, "Reaching max supply"); require(getMintedCount(msg.sender) + _quantity <= maxInAddress, "Exceed max minting amount"); require(publicSaleState, "Public Sale Not Started Yet!"); if(totalSupply() > 900){ require(msg.value == price * _quantity, "Needs to send more eth"); } _safeMint(msg.sender, _quantity); } function sendGifts(address[] memory _wallets) external onlyOwner{ require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached."); for(uint i = 0; i < _wallets.length; i++) _safeMint(_wallets[i], 1); } function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{ require(totalSupply() + _num <= maxSupply, "Max Supply Reached."); _safeMint(_wallet, _num); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI set of nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension)); } function updateBaseURI(string memory _newBaseURI) onlyOwner public { baseURI = _newBaseURI; } function updateExtension(string memory _temp) onlyOwner public { _extension = _temp; } function getBaseURI() external view returns(string memory) { return baseURI; } function updatePrice(uint256 _price) public onlyOwner() { price = _price; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function updateMaxSupply(uint256 _supply) public onlyOwner() { maxSupply = _supply; } function toggleMainSaleState() public onlyOwner() { publicSaleState = !publicSaleState; } function getBalance() public view returns(uint) { return address(this).balance; } function getMintedCount(address owner) public view returns (uint256) { return _numberMinted(owner); } function updatemaxPerTransaction(uint256 _temp) public onlyOwner() { maxPerTransaction = _temp; } function setmaxInAddresss(uint256 _maxInAddress) public onlyOwner() { maxInAddress = _maxInAddress; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance); //Owner } function updateHiddenMetadata(string memory _newBaseURI) onlyOwner public { hiddenMetadataUri = _newBaseURI; } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxInAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","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":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxInAddress","type":"uint256"}],"name":"setmaxInAddresss","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMainSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateHiddenMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_temp","type":"uint256"}],"name":"updatemaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"voucherIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6001808055600a60098190558055600c805460ff1916909117905560a06040819052600060808190526200003691600d91620001a2565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006591600e91620001a2565b50604051806060016040528060368152602001620025376036913980516200009691600f91602090910190620001a2565b506010805460ff191690556611c37937e08000601155611324601255348015620000bf57600080fd5b506040518060400160405280600c81526020016b2a3432902430b120a4b134bd60a11b815250604051806040016040528060028152602001610a8960f31b8152506200011a620001146200014e60201b60201c565b62000152565b81516200012f906003906020850190620001a2565b50805162000145906004906020840190620001a2565b50505062000285565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001b09062000248565b90600052602060002090601f016020900481019282620001d457600085556200021f565b82601f10620001ef57805160ff19168380011785556200021f565b828001600101855582156200021f579182015b828111156200021f57825182559160200191906001019062000202565b506200022d92915062000231565b5090565b5b808211156200022d576000815560010162000232565b600181811c908216806200025d57607f821691505b602082108114156200027f57634e487b7160e01b600052602260045260246000fd5b50919050565b6122a280620002956000396000f3fe60806040526004361061026b5760003560e01c80638d6cc56d11610144578063b3152130116100b6578063d5abeb011161007a578063d5abeb0114610717578063e0a808531461072d578063e985e9c51461074d578063f103b43314610796578063f2fde38b146107b6578063f6d201e8146107d657600080fd5b8063b315213014610681578063b88d4fde14610697578063c48acf40146106b7578063c87b56dd146106d7578063d1f919ed146106f757600080fd5b806395d89b411161010857806395d89b41146105d457806397d6696b146105e9578063a035b1fe14610609578063a22cb4651461061f578063a45ba8e71461063f578063ab34ee4f1461065457600080fd5b80638d6cc56d1461050d5780638da5cb5b1461052d5780639231ab2a1461054b57806392642744146105a1578063931688cb146105b457600080fd5b806342842e0e116101dd57806370a08231116101a157806370a0823114610469578063714c539814610489578063715018a61461049e57806371adc02a146104b35780637c8255db146104cd5780637e6182d9146104ed57600080fd5b806342842e0e146103e45780634b980d6714610404578063518302271461041a5780636352211e146104345780636c0360eb1461045457600080fd5b806318160ddd1161022f57806318160ddd1461034557806323b872dd1461035a5780633148ad0d1461037a578063372be2c61461039a5780633ae1dd9d146103ba5780633ccfd60b146103cf57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806312065fe01461032857600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004611ebd565b6107eb565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161083d565b6040516102a3919061208e565b3480156102da57600080fd5b506102ee6102e9366004611f3f565b6108cf565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004611dc5565b610913565b005b34801561033457600080fd5b50475b6040519081526020016102a3565b34801561035157600080fd5b506103376109a1565b34801561036657600080fd5b50610326610375366004611ce4565b6109af565b34801561038657600080fd5b50610326610395366004611ef7565b6109ba565b3480156103a657600080fd5b506103266103b5366004611f3f565b610a04565b3480156103c657600080fd5b506102c1610a33565b3480156103db57600080fd5b50610326610ac1565b3480156103f057600080fd5b506103266103ff366004611ce4565b610b1a565b34801561041057600080fd5b5061033760095481565b34801561042657600080fd5b506010546102979060ff1681565b34801561044057600080fd5b506102ee61044f366004611f3f565b610b35565b34801561046057600080fd5b506102c1610b47565b34801561047557600080fd5b50610337610484366004611c8f565b610b54565b34801561049557600080fd5b506102c1610ba2565b3480156104aa57600080fd5b50610326610bb1565b3480156104bf57600080fd5b50600c546102979060ff1681565b3480156104d957600080fd5b506103266104e8366004611def565b610be7565b3480156104f957600080fd5b50610326610508366004611ef7565b610cae565b34801561051957600080fd5b50610326610528366004611f3f565b610ceb565b34801561053957600080fd5b506000546001600160a01b03166102ee565b34801561055757600080fd5b5061056b610566366004611f3f565b610d1a565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016102a3565b6103266105af366004611f3f565b610d40565b3480156105c057600080fd5b506103266105cf366004611ef7565b610f14565b3480156105e057600080fd5b506102c1610f51565b3480156105f557600080fd5b50610337610604366004611c8f565b610f60565b34801561061557600080fd5b5061033760115481565b34801561062b57600080fd5b5061032661063a366004611d9b565b610f6b565b34801561064b57600080fd5b506102c1611001565b34801561066057600080fd5b5061033761066f366004611f3f565b60136020526000908152604090205481565b34801561068d57600080fd5b50610337600a5481565b3480156106a357600080fd5b506103266106b2366004611d20565b61100e565b3480156106c357600080fd5b506103266106d2366004611f3f565b611048565b3480156106e357600080fd5b506102c16106f2366004611f3f565b611077565b34801561070357600080fd5b50610326610712366004611dc5565b6111b4565b34801561072357600080fd5b5061033760125481565b34801561073957600080fd5b50610326610748366004611ea2565b611242565b34801561075957600080fd5b50610297610768366004611cb1565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506103266107b1366004611f3f565b61127f565b3480156107c257600080fd5b506103266107d1366004611c8f565b6112ae565b3480156107e257600080fd5b50610326611346565b60006001600160e01b031982166380ac58cd60e01b148061081c57506001600160e01b03198216635b5e139f60e01b145b8061083757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461084c90612194565b80601f016020809104026020016040519081016040528092919081815260200182805461087890612194565b80156108c55780601f1061089a576101008083540402835291602001916108c5565b820191906000526020600020905b8154815290600101906020018083116108a857829003601f168201915b5050505050905090565b60006108da82611384565b6108f7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061091e82610b35565b9050806001600160a01b0316836001600160a01b031614156109535760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061097357506109718133610768565b155b15610991576040516367d9dca160e11b815260040160405180910390fd5b61099c8383836113b0565b505050565b600254600154036000190190565b61099c83838361140c565b6000546001600160a01b031633146109ed5760405162461bcd60e51b81526004016109e4906120a1565b60405180910390fd5b8051610a0090600f906020840190611b73565b5050565b6000546001600160a01b03163314610a2e5760405162461bcd60e51b81526004016109e4906120a1565b600955565b600e8054610a4090612194565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6c90612194565b8015610ab95780601f10610a8e57610100808354040283529160200191610ab9565b820191906000526020600020905b815481529060010190602001808311610a9c57829003601f168201915b505050505081565b6000546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016109e4906120a1565b6040514790339082156108fc029083906000818181858888f19350505050158015610a00573d6000803e3d6000fd5b61099c8383836040518060200160405280600081525061100e565b6000610b4082611620565b5192915050565b600d8054610a4090612194565b60006001600160a01b038216610b7d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6060600d805461084c90612194565b6000546001600160a01b03163314610bdb5760405162461bcd60e51b81526004016109e4906120a1565b610be5600061173b565b565b6000546001600160a01b03163314610c115760405162461bcd60e51b81526004016109e4906120a1565b6012548151610c1e6109a1565b610c289190612106565b1115610c6c5760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016109e4565b60005b8151811015610a0057610c9c828281518110610c8d57610c8d61222a565b6020026020010151600161178b565b80610ca6816121cf565b915050610c6f565b6000546001600160a01b03163314610cd85760405162461bcd60e51b81526004016109e4906120a1565b8051610a0090600e906020840190611b73565b6000546001600160a01b03163314610d155760405162461bcd60e51b81526004016109e4906120a1565b601155565b604080516060810182526000808252602082018190529181019190915261083782611620565b600081118015610d5257506009548111155b610d905760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b60448201526064016109e4565b60125481610d9c6109a1565b610da69190612106565b1115610dea5760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016109e4565b600a5481610df733610f60565b610e019190612106565b1115610e4f5760405162461bcd60e51b815260206004820152601960248201527f457863656564206d6178206d696e74696e6720616d6f756e740000000000000060448201526064016109e4565b600c5460ff16610ea15760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f74205374617274656420596574210000000060448201526064016109e4565b610384610eac6109a1565b1115610f075780601154610ec09190612132565b3414610f075760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b60448201526064016109e4565b610f11338261178b565b50565b6000546001600160a01b03163314610f3e5760405162461bcd60e51b81526004016109e4906120a1565b8051610a0090600d906020840190611b73565b60606004805461084c90612194565b6000610837826117a5565b6001600160a01b038216331415610f955760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f8054610a4090612194565b61101984848461140c565b611025848484846117fa565b611042576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146110725760405162461bcd60e51b81526004016109e4906120a1565b600a55565b606061108282611384565b6110e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109e4565b60105460ff1661117f57600f80546110fa90612194565b80601f016020809104026020016040519081016040528092919081815260200182805461112690612194565b80156111735780601f1061114857610100808354040283529160200191611173565b820191906000526020600020905b81548152906001019060200180831161115657829003601f168201915b50505050509050919050565b600d61118a83611909565b600e60405160200161119e9392919061201e565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146111de5760405162461bcd60e51b81526004016109e4906120a1565b601254816111ea6109a1565b6111f49190612106565b11156112385760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016109e4565b610a00828261178b565b6000546001600160a01b0316331461126c5760405162461bcd60e51b81526004016109e4906120a1565b6010805460ff1916911515919091179055565b6000546001600160a01b031633146112a95760405162461bcd60e51b81526004016109e4906120a1565b601255565b6000546001600160a01b031633146112d85760405162461bcd60e51b81526004016109e4906120a1565b6001600160a01b03811661133d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e4565b610f118161173b565b6000546001600160a01b031633146113705760405162461bcd60e51b81526004016109e4906120a1565b600c805460ff19811660ff90911615179055565b600060015482108015610837575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061141782611620565b80519091506000906001600160a01b0316336001600160a01b03161480611445575081516114459033610768565b80611460575033611455846108cf565b6001600160a01b0316145b90508061148057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114b55760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166114dc57604051633a954ecd60e21b815260040160405180910390fd5b6114ec60008484600001516113b0565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115d6576001548110156115d657825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152600154829081101561172257600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117205780516001600160a01b0316156116b7579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561171b579392505050565b6116b7565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a00828260405180602001604052806000815250611a06565b60006001600160a01b0382166117ce576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b156118fd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061183e903390899088908890600401612051565b602060405180830381600087803b15801561185857600080fd5b505af1925050508015611888575060408051601f3d908101601f1916820190925261188591810190611eda565b60015b6118e3573d8080156118b6576040519150601f19603f3d011682016040523d82523d6000602084013e6118bb565b606091505b5080516118db576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611901565b5060015b949350505050565b60608161192d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119575780611941816121cf565b91506119509050600a8361211e565b9150611931565b6000816001600160401b0381111561197157611971612240565b6040519080825280601f01601f19166020018201604052801561199b576020820181803683370190505b5090505b8415611901576119b0600183612151565b91506119bd600a866121ea565b6119c8906030612106565b60f81b8183815181106119dd576119dd61222a565b60200101906001600160f81b031916908160001a9053506119ff600a8661211e565b945061199f565b61099c838383600180546001600160a01b038516611a3657604051622e076360e81b815260040160405180910390fd5b83611a545760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611b6a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611b405750611b3e60008884886117fa565b155b15611b5e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611ae9565b50600155611619565b828054611b7f90612194565b90600052602060002090601f016020900481019282611ba15760008555611be7565b82601f10611bba57805160ff1916838001178555611be7565b82800160010185558215611be7579182015b82811115611be7578251825591602001919060010190611bcc565b50611bf3929150611bf7565b5090565b5b80821115611bf35760008155600101611bf8565b60006001600160401b03831115611c2557611c25612240565b611c38601f8401601f19166020016120d6565b9050828152838383011115611c4c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611c7a57600080fd5b919050565b80358015158114611c7a57600080fd5b600060208284031215611ca157600080fd5b611caa82611c63565b9392505050565b60008060408385031215611cc457600080fd5b611ccd83611c63565b9150611cdb60208401611c63565b90509250929050565b600080600060608486031215611cf957600080fd5b611d0284611c63565b9250611d1060208501611c63565b9150604084013590509250925092565b60008060008060808587031215611d3657600080fd5b611d3f85611c63565b9350611d4d60208601611c63565b92506040850135915060608501356001600160401b03811115611d6f57600080fd5b8501601f81018713611d8057600080fd5b611d8f87823560208401611c0c565b91505092959194509250565b60008060408385031215611dae57600080fd5b611db783611c63565b9150611cdb60208401611c7f565b60008060408385031215611dd857600080fd5b611de183611c63565b946020939093013593505050565b60006020808385031215611e0257600080fd5b82356001600160401b0380821115611e1957600080fd5b818501915085601f830112611e2d57600080fd5b813581811115611e3f57611e3f612240565b8060051b9150611e508483016120d6565b8181528481019084860184860187018a1015611e6b57600080fd5b600095505b83861015611e9557611e8181611c63565b835260019590950194918601918601611e70565b5098975050505050505050565b600060208284031215611eb457600080fd5b611caa82611c7f565b600060208284031215611ecf57600080fd5b8135611caa81612256565b600060208284031215611eec57600080fd5b8151611caa81612256565b600060208284031215611f0957600080fd5b81356001600160401b03811115611f1f57600080fd5b8201601f81018413611f3057600080fd5b61190184823560208401611c0c565b600060208284031215611f5157600080fd5b5035919050565b60008151808452611f70816020860160208601612168565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611f9e57607f831692505b6020808410821415611fc057634e487b7160e01b600052602260045260246000fd5b818015611fd45760018114611fe557612012565b60ff19861689528489019650612012565b60008881526020902060005b8681101561200a5781548b820152908501908301611ff1565b505084890196505b50505050505092915050565b600061202a8286611f84565b845161203a818360208901612168565b61204681830186611f84565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061208490830184611f58565b9695505050505050565b602081526000611caa6020830184611f58565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156120fe576120fe612240565b604052919050565b60008219821115612119576121196121fe565b500190565b60008261212d5761212d612214565b500490565b600081600019048311821515161561214c5761214c6121fe565b500290565b600082821015612163576121636121fe565b500390565b60005b8381101561218357818101518382015260200161216b565b838111156110425750506000910152565b600181811c908216806121a857607f821691505b602082108114156121c957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121e3576121e36121fe565b5060010190565b6000826121f9576121f9612214565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f1157600080fdfea2646970667358221220455e32b1c1c011a7001e24f35cec931652319a9495b0bea359cb1c0245b0316464736f6c63430008070033697066733a2f2f516d58694a627052527832376a6755675975677a685745766955375131695a6d376f7357464672325239674c67572f
Deployed Bytecode
0x60806040526004361061026b5760003560e01c80638d6cc56d11610144578063b3152130116100b6578063d5abeb011161007a578063d5abeb0114610717578063e0a808531461072d578063e985e9c51461074d578063f103b43314610796578063f2fde38b146107b6578063f6d201e8146107d657600080fd5b8063b315213014610681578063b88d4fde14610697578063c48acf40146106b7578063c87b56dd146106d7578063d1f919ed146106f757600080fd5b806395d89b411161010857806395d89b41146105d457806397d6696b146105e9578063a035b1fe14610609578063a22cb4651461061f578063a45ba8e71461063f578063ab34ee4f1461065457600080fd5b80638d6cc56d1461050d5780638da5cb5b1461052d5780639231ab2a1461054b57806392642744146105a1578063931688cb146105b457600080fd5b806342842e0e116101dd57806370a08231116101a157806370a0823114610469578063714c539814610489578063715018a61461049e57806371adc02a146104b35780637c8255db146104cd5780637e6182d9146104ed57600080fd5b806342842e0e146103e45780634b980d6714610404578063518302271461041a5780636352211e146104345780636c0360eb1461045457600080fd5b806318160ddd1161022f57806318160ddd1461034557806323b872dd1461035a5780633148ad0d1461037a578063372be2c61461039a5780633ae1dd9d146103ba5780633ccfd60b146103cf57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806312065fe01461032857600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004611ebd565b6107eb565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161083d565b6040516102a3919061208e565b3480156102da57600080fd5b506102ee6102e9366004611f3f565b6108cf565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004611dc5565b610913565b005b34801561033457600080fd5b50475b6040519081526020016102a3565b34801561035157600080fd5b506103376109a1565b34801561036657600080fd5b50610326610375366004611ce4565b6109af565b34801561038657600080fd5b50610326610395366004611ef7565b6109ba565b3480156103a657600080fd5b506103266103b5366004611f3f565b610a04565b3480156103c657600080fd5b506102c1610a33565b3480156103db57600080fd5b50610326610ac1565b3480156103f057600080fd5b506103266103ff366004611ce4565b610b1a565b34801561041057600080fd5b5061033760095481565b34801561042657600080fd5b506010546102979060ff1681565b34801561044057600080fd5b506102ee61044f366004611f3f565b610b35565b34801561046057600080fd5b506102c1610b47565b34801561047557600080fd5b50610337610484366004611c8f565b610b54565b34801561049557600080fd5b506102c1610ba2565b3480156104aa57600080fd5b50610326610bb1565b3480156104bf57600080fd5b50600c546102979060ff1681565b3480156104d957600080fd5b506103266104e8366004611def565b610be7565b3480156104f957600080fd5b50610326610508366004611ef7565b610cae565b34801561051957600080fd5b50610326610528366004611f3f565b610ceb565b34801561053957600080fd5b506000546001600160a01b03166102ee565b34801561055757600080fd5b5061056b610566366004611f3f565b610d1a565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016102a3565b6103266105af366004611f3f565b610d40565b3480156105c057600080fd5b506103266105cf366004611ef7565b610f14565b3480156105e057600080fd5b506102c1610f51565b3480156105f557600080fd5b50610337610604366004611c8f565b610f60565b34801561061557600080fd5b5061033760115481565b34801561062b57600080fd5b5061032661063a366004611d9b565b610f6b565b34801561064b57600080fd5b506102c1611001565b34801561066057600080fd5b5061033761066f366004611f3f565b60136020526000908152604090205481565b34801561068d57600080fd5b50610337600a5481565b3480156106a357600080fd5b506103266106b2366004611d20565b61100e565b3480156106c357600080fd5b506103266106d2366004611f3f565b611048565b3480156106e357600080fd5b506102c16106f2366004611f3f565b611077565b34801561070357600080fd5b50610326610712366004611dc5565b6111b4565b34801561072357600080fd5b5061033760125481565b34801561073957600080fd5b50610326610748366004611ea2565b611242565b34801561075957600080fd5b50610297610768366004611cb1565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506103266107b1366004611f3f565b61127f565b3480156107c257600080fd5b506103266107d1366004611c8f565b6112ae565b3480156107e257600080fd5b50610326611346565b60006001600160e01b031982166380ac58cd60e01b148061081c57506001600160e01b03198216635b5e139f60e01b145b8061083757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461084c90612194565b80601f016020809104026020016040519081016040528092919081815260200182805461087890612194565b80156108c55780601f1061089a576101008083540402835291602001916108c5565b820191906000526020600020905b8154815290600101906020018083116108a857829003601f168201915b5050505050905090565b60006108da82611384565b6108f7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061091e82610b35565b9050806001600160a01b0316836001600160a01b031614156109535760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061097357506109718133610768565b155b15610991576040516367d9dca160e11b815260040160405180910390fd5b61099c8383836113b0565b505050565b600254600154036000190190565b61099c83838361140c565b6000546001600160a01b031633146109ed5760405162461bcd60e51b81526004016109e4906120a1565b60405180910390fd5b8051610a0090600f906020840190611b73565b5050565b6000546001600160a01b03163314610a2e5760405162461bcd60e51b81526004016109e4906120a1565b600955565b600e8054610a4090612194565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6c90612194565b8015610ab95780601f10610a8e57610100808354040283529160200191610ab9565b820191906000526020600020905b815481529060010190602001808311610a9c57829003601f168201915b505050505081565b6000546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016109e4906120a1565b6040514790339082156108fc029083906000818181858888f19350505050158015610a00573d6000803e3d6000fd5b61099c8383836040518060200160405280600081525061100e565b6000610b4082611620565b5192915050565b600d8054610a4090612194565b60006001600160a01b038216610b7d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6060600d805461084c90612194565b6000546001600160a01b03163314610bdb5760405162461bcd60e51b81526004016109e4906120a1565b610be5600061173b565b565b6000546001600160a01b03163314610c115760405162461bcd60e51b81526004016109e4906120a1565b6012548151610c1e6109a1565b610c289190612106565b1115610c6c5760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016109e4565b60005b8151811015610a0057610c9c828281518110610c8d57610c8d61222a565b6020026020010151600161178b565b80610ca6816121cf565b915050610c6f565b6000546001600160a01b03163314610cd85760405162461bcd60e51b81526004016109e4906120a1565b8051610a0090600e906020840190611b73565b6000546001600160a01b03163314610d155760405162461bcd60e51b81526004016109e4906120a1565b601155565b604080516060810182526000808252602082018190529181019190915261083782611620565b600081118015610d5257506009548111155b610d905760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b60448201526064016109e4565b60125481610d9c6109a1565b610da69190612106565b1115610dea5760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016109e4565b600a5481610df733610f60565b610e019190612106565b1115610e4f5760405162461bcd60e51b815260206004820152601960248201527f457863656564206d6178206d696e74696e6720616d6f756e740000000000000060448201526064016109e4565b600c5460ff16610ea15760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f74205374617274656420596574210000000060448201526064016109e4565b610384610eac6109a1565b1115610f075780601154610ec09190612132565b3414610f075760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b60448201526064016109e4565b610f11338261178b565b50565b6000546001600160a01b03163314610f3e5760405162461bcd60e51b81526004016109e4906120a1565b8051610a0090600d906020840190611b73565b60606004805461084c90612194565b6000610837826117a5565b6001600160a01b038216331415610f955760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f8054610a4090612194565b61101984848461140c565b611025848484846117fa565b611042576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146110725760405162461bcd60e51b81526004016109e4906120a1565b600a55565b606061108282611384565b6110e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109e4565b60105460ff1661117f57600f80546110fa90612194565b80601f016020809104026020016040519081016040528092919081815260200182805461112690612194565b80156111735780601f1061114857610100808354040283529160200191611173565b820191906000526020600020905b81548152906001019060200180831161115657829003601f168201915b50505050509050919050565b600d61118a83611909565b600e60405160200161119e9392919061201e565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146111de5760405162461bcd60e51b81526004016109e4906120a1565b601254816111ea6109a1565b6111f49190612106565b11156112385760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016109e4565b610a00828261178b565b6000546001600160a01b0316331461126c5760405162461bcd60e51b81526004016109e4906120a1565b6010805460ff1916911515919091179055565b6000546001600160a01b031633146112a95760405162461bcd60e51b81526004016109e4906120a1565b601255565b6000546001600160a01b031633146112d85760405162461bcd60e51b81526004016109e4906120a1565b6001600160a01b03811661133d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e4565b610f118161173b565b6000546001600160a01b031633146113705760405162461bcd60e51b81526004016109e4906120a1565b600c805460ff19811660ff90911615179055565b600060015482108015610837575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061141782611620565b80519091506000906001600160a01b0316336001600160a01b03161480611445575081516114459033610768565b80611460575033611455846108cf565b6001600160a01b0316145b90508061148057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114b55760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166114dc57604051633a954ecd60e21b815260040160405180910390fd5b6114ec60008484600001516113b0565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115d6576001548110156115d657825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152600154829081101561172257600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117205780516001600160a01b0316156116b7579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561171b579392505050565b6116b7565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a00828260405180602001604052806000815250611a06565b60006001600160a01b0382166117ce576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b156118fd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061183e903390899088908890600401612051565b602060405180830381600087803b15801561185857600080fd5b505af1925050508015611888575060408051601f3d908101601f1916820190925261188591810190611eda565b60015b6118e3573d8080156118b6576040519150601f19603f3d011682016040523d82523d6000602084013e6118bb565b606091505b5080516118db576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611901565b5060015b949350505050565b60608161192d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119575780611941816121cf565b91506119509050600a8361211e565b9150611931565b6000816001600160401b0381111561197157611971612240565b6040519080825280601f01601f19166020018201604052801561199b576020820181803683370190505b5090505b8415611901576119b0600183612151565b91506119bd600a866121ea565b6119c8906030612106565b60f81b8183815181106119dd576119dd61222a565b60200101906001600160f81b031916908160001a9053506119ff600a8661211e565b945061199f565b61099c838383600180546001600160a01b038516611a3657604051622e076360e81b815260040160405180910390fd5b83611a545760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611b6a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611b405750611b3e60008884886117fa565b155b15611b5e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611ae9565b50600155611619565b828054611b7f90612194565b90600052602060002090601f016020900481019282611ba15760008555611be7565b82601f10611bba57805160ff1916838001178555611be7565b82800160010185558215611be7579182015b82811115611be7578251825591602001919060010190611bcc565b50611bf3929150611bf7565b5090565b5b80821115611bf35760008155600101611bf8565b60006001600160401b03831115611c2557611c25612240565b611c38601f8401601f19166020016120d6565b9050828152838383011115611c4c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611c7a57600080fd5b919050565b80358015158114611c7a57600080fd5b600060208284031215611ca157600080fd5b611caa82611c63565b9392505050565b60008060408385031215611cc457600080fd5b611ccd83611c63565b9150611cdb60208401611c63565b90509250929050565b600080600060608486031215611cf957600080fd5b611d0284611c63565b9250611d1060208501611c63565b9150604084013590509250925092565b60008060008060808587031215611d3657600080fd5b611d3f85611c63565b9350611d4d60208601611c63565b92506040850135915060608501356001600160401b03811115611d6f57600080fd5b8501601f81018713611d8057600080fd5b611d8f87823560208401611c0c565b91505092959194509250565b60008060408385031215611dae57600080fd5b611db783611c63565b9150611cdb60208401611c7f565b60008060408385031215611dd857600080fd5b611de183611c63565b946020939093013593505050565b60006020808385031215611e0257600080fd5b82356001600160401b0380821115611e1957600080fd5b818501915085601f830112611e2d57600080fd5b813581811115611e3f57611e3f612240565b8060051b9150611e508483016120d6565b8181528481019084860184860187018a1015611e6b57600080fd5b600095505b83861015611e9557611e8181611c63565b835260019590950194918601918601611e70565b5098975050505050505050565b600060208284031215611eb457600080fd5b611caa82611c7f565b600060208284031215611ecf57600080fd5b8135611caa81612256565b600060208284031215611eec57600080fd5b8151611caa81612256565b600060208284031215611f0957600080fd5b81356001600160401b03811115611f1f57600080fd5b8201601f81018413611f3057600080fd5b61190184823560208401611c0c565b600060208284031215611f5157600080fd5b5035919050565b60008151808452611f70816020860160208601612168565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611f9e57607f831692505b6020808410821415611fc057634e487b7160e01b600052602260045260246000fd5b818015611fd45760018114611fe557612012565b60ff19861689528489019650612012565b60008881526020902060005b8681101561200a5781548b820152908501908301611ff1565b505084890196505b50505050505092915050565b600061202a8286611f84565b845161203a818360208901612168565b61204681830186611f84565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061208490830184611f58565b9695505050505050565b602081526000611caa6020830184611f58565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156120fe576120fe612240565b604052919050565b60008219821115612119576121196121fe565b500190565b60008261212d5761212d612214565b500490565b600081600019048311821515161561214c5761214c6121fe565b500290565b600082821015612163576121636121fe565b500390565b60005b8381101561218357818101518382015260200161216b565b838111156110425750506000910152565b600181811c908216806121a857607f821691505b602082108114156121c957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121e3576121e36121fe565b5060010190565b6000826121f9576121f9612214565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f1157600080fdfea2646970667358221220455e32b1c1c011a7001e24f35cec931652319a9495b0bea359cb1c0245b0316464736f6c63430008070033
Deployed Bytecode Sourcemap
42665:3783:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25461:305;;;;;;;;;;-1:-1:-1;25461:305:0;;;;;:::i;:::-;;:::i;:::-;;;7610:14:1;;7603:22;7585:41;;7573:2;7558:18;25461:305:0;;;;;;;;28821:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30324:204::-;;;;;;;;;;-1:-1:-1;30324:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6908:32:1;;;6890:51;;6878:2;6863:18;30324:204:0;6744:203:1;29887:371:0;;;;;;;;;;-1:-1:-1;29887:371:0;;;;;:::i;:::-;;:::i;:::-;;45510:95;;;;;;;;;;-1:-1:-1;45576:21:0;45510:95;;;11734:25:1;;;11722:2;11707:18;45510:95:0;11588:177:1;25112:277:0;;;;;;;;;;;;;:::i;31181:170::-;;;;;;;;;;-1:-1:-1;31181:170:0;;;;;:::i;:::-;;:::i;46127:124::-;;;;;;;;;;-1:-1:-1;46127:124:0;;;;;:::i;:::-;;:::i;45727:111::-;;;;;;;;;;-1:-1:-1;45727:111:0;;;;;:::i;:::-;;:::i;42964:34::-;;;;;;;;;;;;;:::i;45967:152::-;;;;;;;;;;;;;:::i;31422:185::-;;;;;;;;;;-1:-1:-1;31422:185:0;;;;;:::i;:::-;;:::i;42715:37::-;;;;;;;;;;;;;;;;43102:28;;;;;;;;;;-1:-1:-1;43102:28:0;;;;;;;;28630:124;;;;;;;;;;-1:-1:-1;28630:124:0;;;;;:::i;:::-;;:::i;42931:26::-;;;;;;;;;;;;;:::i;25830:206::-;;;;;;;;;;-1:-1:-1;25830:206:0;;;;;:::i;:::-;;:::i;45000:92::-;;;;;;;;;;;;;:::i;14227:94::-;;;;;;;;;;;;;:::i;42888:34::-;;;;;;;;;;-1:-1:-1;42888:34:0;;;;;;;;43914:252;;;;;;;;;;-1:-1:-1;43914:252:0;;;;;:::i;:::-;;:::i;44892:100::-;;;;;;;;;;-1:-1:-1;44892:100:0;;;;;:::i;:::-;;:::i;45100:89::-;;;;;;;;;;-1:-1:-1;45100:89:0;;;;;:::i;:::-;;:::i;13576:87::-;;;;;;;;;;-1:-1:-1;13622:7:0;13649:6;-1:-1:-1;;;;;13649:6:0;13576:87;;46259:147;;;;;;;;;;-1:-1:-1;46259:147:0;;;;;:::i;:::-;;:::i;:::-;;;;11374:13:1;;-1:-1:-1;;;;;11370:39:1;11352:58;;11470:4;11458:17;;;11452:24;-1:-1:-1;;;;;11448:49:1;11426:20;;;11419:79;11556:17;;;11550:24;11543:32;11536:40;11514:20;;;11507:70;11340:2;11325:18;46259:147:0;11144:439:1;43334:570:0;;;;;;:::i;:::-;;:::i;44779:107::-;;;;;;;;;;-1:-1:-1;44779:107:0;;;;;:::i;:::-;;:::i;28990:104::-;;;;;;;;;;;;;:::i;45613:109::-;;;;;;;;;;-1:-1:-1;45613:109:0;;;;;:::i;:::-;;:::i;43138:35::-;;;;;;;;;;;;;;;;30600:279;;;;;;;;;;-1:-1:-1;30600:279:0;;;;;:::i;:::-;;:::i;43005:90::-;;;;;;;;;;;;;:::i;43228:42::-;;;;;;;;;;-1:-1:-1;43228:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;42759:32;;;;;;;;;;;;;;;;31678:342;;;;;;;;;;-1:-1:-1;31678:342:0;;;;;:::i;:::-;;:::i;45846:115::-;;;;;;;;;;-1:-1:-1;45846:115:0;;;;;:::i;:::-;;:::i;44382:389::-;;;;;;;;;;-1:-1:-1;44382:389:0;;;;;:::i;:::-;;:::i;44171:203::-;;;;;;;;;;-1:-1:-1;44171:203:0;;;;;:::i;:::-;;:::i;43182:31::-;;;;;;;;;;;;;;;;45197:87;;;;;;;;;;-1:-1:-1;45197:87:0;;;;;:::i;:::-;;:::i;30950:164::-;;;;;;;;;;-1:-1:-1;30950:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31071:25:0;;;31047:4;31071:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30950:164;45290:99;;;;;;;;;;-1:-1:-1;45290:99:0;;;;;:::i;:::-;;:::i;14476:192::-;;;;;;;;;;-1:-1:-1;14476:192:0;;;;;:::i;:::-;;:::i;45397:103::-;;;;;;;;;;;;;:::i;25461:305::-;25563:4;-1:-1:-1;;;;;;25600:40:0;;-1:-1:-1;;;25600:40:0;;:105;;-1:-1:-1;;;;;;;25657:48:0;;-1:-1:-1;;;25657:48:0;25600:105;:158;;;-1:-1:-1;;;;;;;;;;15690:40:0;;;25722:36;25580:178;25461:305;-1:-1:-1;;25461:305:0:o;28821:100::-;28875:13;28908:5;28901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28821:100;:::o;30324:204::-;30392:7;30417:16;30425:7;30417;:16::i;:::-;30412:64;;30442:34;;-1:-1:-1;;;30442:34:0;;;;;;;;;;;30412:64;-1:-1:-1;30496:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30496:24:0;;30324:204::o;29887:371::-;29960:13;29976:24;29992:7;29976:15;:24::i;:::-;29960:40;;30021:5;-1:-1:-1;;;;;30015:11:0;:2;-1:-1:-1;;;;;30015:11:0;;30011:48;;;30035:24;;-1:-1:-1;;;30035:24:0;;;;;;;;;;;30011:48;796:10;-1:-1:-1;;;;;30076:21:0;;;;;;:63;;-1:-1:-1;30102:37:0;30119:5;796:10;30950:164;:::i;30102:37::-;30101:38;30076:63;30072:138;;;30163:35;;-1:-1:-1;;;30163:35:0;;;;;;;;;;;30072:138;30222:28;30231:2;30235:7;30244:5;30222:8;:28::i;:::-;29949:309;29887:371;;:::o;25112:277::-;25349:12;;25365:1;25333:13;:28;-1:-1:-1;;25332:34:0;;25112:277::o;31181:170::-;31315:28;31325:4;31331:2;31335:7;31315:9;:28::i;46127:124::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;;;;;;;;;46212:31;;::::1;::::0;:17:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46127:124:::0;:::o;45727:111::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;45805:17:::1;:25:::0;45727:111::o;42964:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45967:152::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;46065:38:::1;::::0;46033:21:::1;::::0;46073:10:::1;::::0;46065:38;::::1;;;::::0;46033:21;;46017:13:::1;46065:38:::0;46017:13;46065:38;46033:21;46073:10;46065:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;31422:185:::0;31560:39;31577:4;31583:2;31587:7;31560:39;;;;;;;;;;;;:16;:39::i;28630:124::-;28694:7;28721:20;28733:7;28721:11;:20::i;:::-;:25;;28630:124;-1:-1:-1;;28630:124:0:o;42931:26::-;;;;;;;:::i;25830:206::-;25894:7;-1:-1:-1;;;;;25918:19:0;;25914:60;;25946:28;;-1:-1:-1;;;25946:28:0;;;;;;;;;;;25914:60;-1:-1:-1;;;;;;26000:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26000:27:0;;25830:206::o;45000:92::-;45044:13;45077:7;45070:14;;;;;:::i;14227:94::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;14292:21:::1;14310:1;14292:9;:21::i;:::-;14227:94::o:0;43914:252::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;44032:9:::1;;44013:8;:15;43997:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;43989:76;;;::::0;-1:-1:-1;;;43989:76:0;;10650:2:1;43989:76:0::1;::::0;::::1;10632:21:1::0;10689:2;10669:18;;;10662:30;-1:-1:-1;;;10708:18:1;;;10701:49;10767:18;;43989:76:0::1;10448:343:1::0;43989:76:0::1;44080:6;44076:80;44096:8;:15;44092:1;:19;44076:80;;;44131:25;44141:8;44150:1;44141:11;;;;;;;;:::i;:::-;;;;;;;44154:1;44131:9;:25::i;:::-;44113:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44076:80;;44892:100:::0;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;44966:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;45100:89::-:0;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;45167:5:::1;:14:::0;45100:89::o;46259:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;46380:20:0;46392:7;46380:11;:20::i;43334:570::-;43416:1;43404:9;:13;:47;;;;;43434:17;;43421:9;:30;;43404:47;43396:75;;;;-1:-1:-1;;;43396:75:0;;8470:2:1;43396:75:0;;;8452:21:1;8509:2;8489:18;;;8482:30;-1:-1:-1;;;8528:18:1;;;8521:45;8583:18;;43396:75:0;8268:339:1;43396:75:0;43519:9;;43506;43490:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;43482:70;;;;-1:-1:-1;;;43482:70:0;;10998:2:1;43482:70:0;;;10980:21:1;11037:2;11017:18;;;11010:30;-1:-1:-1;;;11056:18:1;;;11049:49;11115:18;;43482:70:0;10796:343:1;43482:70:0;43613:12;;43600:9;43571:26;43586:10;43571:14;:26::i;:::-;:38;;;;:::i;:::-;:54;;43563:92;;;;-1:-1:-1;;;43563:92:0;;8814:2:1;43563:92:0;;;8796:21:1;8853:2;8833:18;;;8826:30;8892:27;8872:18;;;8865:55;8937:18;;43563:92:0;8612:349:1;43563:92:0;43674:15;;;;43666:56;;;;-1:-1:-1;;;43666:56:0;;10293:2:1;43666:56:0;;;10275:21:1;10332:2;10312:18;;;10305:30;10371;10351:18;;;10344:58;10419:18;;43666:56:0;10091:352:1;43666:56:0;43754:3;43738:13;:11;:13::i;:::-;:19;43735:115;;;43802:9;43794:5;;:17;;;;:::i;:::-;43781:9;:30;43773:65;;;;-1:-1:-1;;;43773:65:0;;9942:2:1;43773:65:0;;;9924:21:1;9981:2;9961:18;;;9954:30;-1:-1:-1;;;10000:18:1;;;9993:52;10062:18;;43773:65:0;9740:346:1;43773:65:0;43862:32;43872:10;43884:9;43862;:32::i;:::-;43334:570;:::o;44779:107::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;44857:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;28990:104::-:0;29046:13;29079:7;29072:14;;;;;:::i;45613:109::-;45673:7;45696:20;45710:5;45696:13;:20::i;30600:279::-;-1:-1:-1;;;;;30691:24:0;;796:10;30691:24;30687:54;;;30724:17;;-1:-1:-1;;;30724:17:0;;;;;;;;;;;30687:54;796:10;30754:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30754:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30754:53:0;;;;;;;;;;30823:48;;7585:41:1;;;30754:42:0;;796:10;30823:48;;7558:18:1;30823:48:0;;;;;;;30600:279;;:::o;43005:90::-;;;;;;;:::i;31678:342::-;31845:28;31855:4;31861:2;31865:7;31845:9;:28::i;:::-;31889:48;31912:4;31918:2;31922:7;31931:5;31889:22;:48::i;:::-;31884:129;;31961:40;;-1:-1:-1;;;31961:40:0;;;;;;;;;;;31884:129;31678:342;;;;:::o;45846:115::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;45925:12:::1;:28:::0;45846:115::o;44382:389::-;44456:13;44504:17;44512:8;44504:7;:17::i;:::-;44482:111;;;;-1:-1:-1;;;44482:111:0;;9168:2:1;44482:111:0;;;9150:21:1;9207:2;9187:18;;;9180:30;9246:34;9226:18;;;9219:62;-1:-1:-1;;;9297:18:1;;;9290:42;9349:19;;44482:111:0;8966:408:1;44482:111:0;44608:8;;;;44604:74;;44649:17;44642:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44382:389;;;:::o;44604:74::-;44719:7;44728:19;:8;:17;:19::i;:::-;44749:10;44702:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44688:73;;44382:389;;;:::o;44171:203::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;44294:9:::1;;44286:4;44270:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:33;;44262:65;;;::::0;-1:-1:-1;;;44262:65:0;;10650:2:1;44262:65:0::1;::::0;::::1;10632:21:1::0;10689:2;10669:18;;;10662:30;-1:-1:-1;;;10708:18:1;;;10701:49;10767:18;;44262:65:0::1;10448:343:1::0;44262:65:0::1;44342:24;44352:7;44361:4;44342:9;:24::i;45197:87::-:0;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;45259:8:::1;:17:::0;;-1:-1:-1;;45259:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45197:87::o;45290:99::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;45362:9:::1;:19:::0;45290:99::o;14476:192::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14565:22:0;::::1;14557:73;;;::::0;-1:-1:-1;;;14557:73:0;;8063:2:1;14557:73:0::1;::::0;::::1;8045:21:1::0;8102:2;8082:18;;;8075:30;8141:34;8121:18;;;8114:62;-1:-1:-1;;;8192:18:1;;;8185:36;8238:19;;14557:73:0::1;7861:402:1::0;14557:73:0::1;14641:19;14651:8;14641:9;:19::i;45397:103::-:0;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;45477:15:::1;::::0;;-1:-1:-1;;45458:34:0;::::1;45477:15;::::0;;::::1;45476:16;45458:34;::::0;;45397:103::o;32275:144::-;32332:4;32366:13;;32356:7;:23;:55;;;;-1:-1:-1;;32384:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32384:27:0;;;;32383:28;;32275:144::o;39481:196::-;39596:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39596:29:0;-1:-1:-1;;;;;39596:29:0;;;;;;;;;39641:28;;39596:24;;39641:28;;;;;;;39481:196;;;:::o;34982:2112::-;35097:35;35135:20;35147:7;35135:11;:20::i;:::-;35210:18;;35097:58;;-1:-1:-1;35168:22:0;;-1:-1:-1;;;;;35194:34:0;796:10;-1:-1:-1;;;;;35194:34:0;;:101;;;-1:-1:-1;35262:18:0;;35245:50;;796:10;30950:164;:::i;35245:50::-;35194:154;;;-1:-1:-1;796:10:0;35312:20;35324:7;35312:11;:20::i;:::-;-1:-1:-1;;;;;35312:36:0;;35194:154;35168:181;;35367:17;35362:66;;35393:35;;-1:-1:-1;;;35393:35:0;;;;;;;;;;;35362:66;35465:4;-1:-1:-1;;;;;35443:26:0;:13;:18;;;-1:-1:-1;;;;;35443:26:0;;35439:67;;35478:28;;-1:-1:-1;;;35478:28:0;;;;;;;;;;;35439:67;-1:-1:-1;;;;;35521:16:0;;35517:52;;35546:23;;-1:-1:-1;;;35546:23:0;;;;;;;;;;;35517:52;35690:49;35707:1;35711:7;35720:13;:18;;;35690:8;:49::i;:::-;-1:-1:-1;;;;;36035:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36035:31:0;;;-1:-1:-1;;;;;36035:31:0;;;-1:-1:-1;;36035:31:0;;;;;;;36081:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36081:29:0;;;;;;;;;;;36127:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36172:61:0;;;;-1:-1:-1;;;36217:15:0;36172:61;;;;;;;;;;;36507:11;;;36537:24;;;;;:29;36507:11;;36537:29;36533:445;;36762:13;;36748:11;:27;36744:219;;;36832:18;;;36800:24;;;:11;:24;;;;;;;;:50;;36915:28;;;;-1:-1:-1;;;;;36873:70:0;-1:-1:-1;;;36873:70:0;-1:-1:-1;;;;;;36873:70:0;;;-1:-1:-1;;;;;36800:50:0;;;36873:70;;;;;;;36744:219;36010:979;37025:7;37021:2;-1:-1:-1;;;;;37006:27:0;37015:4;-1:-1:-1;;;;;37006:27:0;;;;;;;;;;;37044:42;35086:2008;;34982:2112;;;:::o;27485:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27651:13:0;;27595:7;;27644:20;;27640:861;;;27685:31;27719:17;;;:11;:17;;;;;;;;;27685:51;;;;;;;;;-1:-1:-1;;;;;27685:51:0;;;;-1:-1:-1;;;27685:51:0;;-1:-1:-1;;;;;27685:51:0;;;;;;;;-1:-1:-1;;;27685:51:0;;;;;;;;;;;;;;27755:731;;27805:14;;-1:-1:-1;;;;;27805:28:0;;27801:101;;27869:9;27485:1083;-1:-1:-1;;;27485:1083:0:o;27801:101::-;-1:-1:-1;;;28246:6:0;28291:17;;;;:11;:17;;;;;;;;;28279:29;;;;;;;;;-1:-1:-1;;;;;28279:29:0;;;;;-1:-1:-1;;;28279:29:0;;-1:-1:-1;;;;;28279:29:0;;;;;;;;-1:-1:-1;;;28279:29:0;;;;;;;;;;;;;28339:28;28335:109;;28407:9;27485:1083;-1:-1:-1;;;27485:1083:0:o;28335:109::-;28206:261;;;27666:835;27640:861;28529:31;;-1:-1:-1;;;28529:31:0;;;;;;;;;;;14676:173;14732:16;14751:6;;-1:-1:-1;;;;;14768:17:0;;;-1:-1:-1;;;;;;14768:17:0;;;;;;14801:40;;14751:6;;;;;;;14801:40;;14732:16;14801:40;14721:128;14676:173;:::o;32427:104::-;32496:27;32506:2;32510:8;32496:27;;;;;;;;;;;;:9;:27::i;26118:207::-;26179:7;-1:-1:-1;;;;;26203:19:0;;26199:59;;26231:27;;-1:-1:-1;;;26231:27:0;;;;;;;;;;;26199:59;-1:-1:-1;;;;;;26284:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;26284:32:0;;-1:-1:-1;;;;;26284:32:0;;26118:207::o;40242:790::-;40397:4;-1:-1:-1;;;;;40418:13:0;;3969:20;4017:8;40414:611;;40454:72;;-1:-1:-1;;;40454:72:0;;-1:-1:-1;;;;;40454:36:0;;;;;:72;;796:10;;40505:4;;40511:7;;40520:5;;40454:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40454:72:0;;;;;;;;-1:-1:-1;;40454:72:0;;;;;;;;;;;;:::i;:::-;;;40450:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40700:13:0;;40696:259;;40750:40;;-1:-1:-1;;;40750:40:0;;;;;;;;;;;40696:259;40905:6;40899:13;40890:6;40886:2;40882:15;40875:38;40450:520;-1:-1:-1;;;;;;40577:55:0;-1:-1:-1;;;40577:55:0;;-1:-1:-1;40570:62:0;;40414:611;-1:-1:-1;41009:4:0;40414:611;40242:790;;;;;;:::o;1181:723::-;1237:13;1458:10;1454:53;;-1:-1:-1;;1485:10:0;;;;;;;;;;;;-1:-1:-1;;;1485:10:0;;;;;1181:723::o;1454:53::-;1532:5;1517:12;1573:78;1580:9;;1573:78;;1606:8;;;;:::i;:::-;;-1:-1:-1;1629:10:0;;-1:-1:-1;1637:2:0;1629:10;;:::i;:::-;;;1573:78;;;1661:19;1693:6;-1:-1:-1;;;;;1683:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1683:17:0;;1661:39;;1711:154;1718:10;;1711:154;;1745:11;1755:1;1745:11;;:::i;:::-;;-1:-1:-1;1814:10:0;1822:2;1814:5;:10;:::i;:::-;1801:24;;:2;:24;:::i;:::-;1788:39;;1771:6;1778;1771:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1771:56:0;;;;;;;;-1:-1:-1;1842:11:0;1851:2;1842:11;;:::i;:::-;;;1711:154;;32894:163;33017:32;33023:2;33027:8;33037:5;33044:4;33478:13;;-1:-1:-1;;;;;33506:16:0;;33502:48;;33531:19;;-1:-1:-1;;;33531:19:0;;;;;;;;;;;33502:48;33565:13;33561:44;;33587:18;;-1:-1:-1;;;33587:18:0;;;;;;;;;;;33561:44;-1:-1:-1;;;;;33956:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34015:49:0;;-1:-1:-1;;;;;33956:44:0;;;;;;;34015:49;;;-1:-1:-1;;;;;33956:44:0;;;;;;34015:49;;;;;;;;;;;;;;;;34081:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34131:66:0;;;;-1:-1:-1;;;34181:15:0;34131:66;;;;;;;;;;;34081:25;;34266:328;34286:8;34282:1;:12;34266:328;;;34325:38;;34350:12;;-1:-1:-1;;;;;34325:38:0;;;34342:1;;34325:38;;34342:1;;34325:38;34386:4;:68;;;;;34395:59;34426:1;34430:2;34434:12;34448:5;34395:22;:59::i;:::-;34394:60;34386:68;34382:164;;;34486:40;;-1:-1:-1;;;34486:40:0;;;;;;;;;;;34382:164;34564:14;;;;;34296:3;34266:328;;;-1:-1:-1;34610:13:0;:28;34660:60;31678:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;-1:-1:-1;;;;;1976:6:1;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;-1:-1:-1;;;;;3030:2:1;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;-1:-1:-1;;;;;4606:6:1;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:1;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:1:o;5305:973::-;5390:12;;5355:3;;5445:1;5465:18;;;;5518;;;;5545:61;;5599:4;5591:6;5587:17;5577:27;;5545:61;5625:2;5673;5665:6;5662:14;5642:18;5639:38;5636:161;;;5719:10;5714:3;5710:20;5707:1;5700:31;5754:4;5751:1;5744:15;5782:4;5779:1;5772:15;5636:161;5813:18;5840:104;;;;5958:1;5953:319;;;;5806:466;;5840:104;-1:-1:-1;;5873:24:1;;5861:37;;5918:16;;;;-1:-1:-1;5840:104:1;;5953:319;12123:1;12116:14;;;12160:4;12147:18;;6047:1;6061:165;6075:6;6072:1;6069:13;6061:165;;;6153:14;;6140:11;;;6133:35;6196:16;;;;6090:10;;6061:165;;;6065:3;;6255:6;6250:3;6246:16;6239:23;;5806:466;;;;;;;5305:973;;;;:::o;6283:456::-;6504:3;6532:38;6566:3;6558:6;6532:38;:::i;:::-;6599:6;6593:13;6615:52;6660:6;6656:2;6649:4;6641:6;6637:17;6615:52;:::i;:::-;6683:50;6725:6;6721:2;6717:15;6709:6;6683:50;:::i;:::-;6676:57;6283:456;-1:-1:-1;;;;;;;6283:456:1:o;6952:488::-;-1:-1:-1;;;;;7221:15:1;;;7203:34;;7273:15;;7268:2;7253:18;;7246:43;7320:2;7305:18;;7298:34;;;7368:3;7363:2;7348:18;;7341:31;;;7146:4;;7389:45;;7414:19;;7406:6;7389:45;:::i;:::-;7381:53;6952:488;-1:-1:-1;;;;;;6952:488:1:o;7637:219::-;7786:2;7775:9;7768:21;7749:4;7806:44;7846:2;7835:9;7831:18;7823:6;7806:44;:::i;9379:356::-;9581:2;9563:21;;;9600:18;;;9593:30;9659:34;9654:2;9639:18;;9632:62;9726:2;9711:18;;9379:356::o;11770:275::-;11841:2;11835:9;11906:2;11887:13;;-1:-1:-1;;11883:27:1;11871:40;;-1:-1:-1;;;;;11926:34:1;;11962:22;;;11923:62;11920:88;;;11988:18;;:::i;:::-;12024:2;12017:22;11770:275;;-1:-1:-1;11770:275:1:o;12176:128::-;12216:3;12247:1;12243:6;12240:1;12237:13;12234:39;;;12253:18;;:::i;:::-;-1:-1:-1;12289:9:1;;12176:128::o;12309:120::-;12349:1;12375;12365:35;;12380:18;;:::i;:::-;-1:-1:-1;12414:9:1;;12309:120::o;12434:168::-;12474:7;12540:1;12536;12532:6;12528:14;12525:1;12522:21;12517:1;12510:9;12503:17;12499:45;12496:71;;;12547:18;;:::i;:::-;-1:-1:-1;12587:9:1;;12434:168::o;12607:125::-;12647:4;12675:1;12672;12669:8;12666:34;;;12680:18;;:::i;:::-;-1:-1:-1;12717:9:1;;12607:125::o;12737:258::-;12809:1;12819:113;12833:6;12830:1;12827:13;12819:113;;;12909:11;;;12903:18;12890:11;;;12883:39;12855:2;12848:10;12819:113;;;12950:6;12947:1;12944:13;12941:48;;;-1:-1:-1;;12985:1:1;12967:16;;12960:27;12737:258::o;13000:380::-;13079:1;13075:12;;;;13122;;;13143:61;;13197:4;13189:6;13185:17;13175:27;;13143:61;13250:2;13242:6;13239:14;13219:18;13216:38;13213:161;;;13296:10;13291:3;13287:20;13284:1;13277:31;13331:4;13328:1;13321:15;13359:4;13356:1;13349:15;13213:161;;13000:380;;;:::o;13385:135::-;13424:3;-1:-1:-1;;13445:17:1;;13442:43;;;13465:18;;:::i;:::-;-1:-1:-1;13512:1:1;13501:13;;13385:135::o;13525:112::-;13557:1;13583;13573:35;;13588:18;;:::i;:::-;-1:-1:-1;13622:9:1;;13525:112::o;13642:127::-;13703:10;13698:3;13694:20;13691:1;13684:31;13734:4;13731:1;13724:15;13758:4;13755:1;13748:15;13774:127;13835:10;13830:3;13826:20;13823:1;13816:31;13866:4;13863:1;13856:15;13890:4;13887:1;13880:15;13906:127;13967:10;13962:3;13958:20;13955:1;13948:31;13998:4;13995:1;13988:15;14022:4;14019:1;14012:15;14038:127;14099:10;14094:3;14090:20;14087:1;14080:31;14130:4;14127:1;14120:15;14154:4;14151:1;14144:15;14170:131;-1:-1:-1;;;;;;14244:32:1;;14234:43;;14224:71;;14291:1;14288;14281:12
Swarm Source
ipfs://455e32b1c1c011a7001e24f35cec931652319a9495b0bea359cb1c0245b03164
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.