ERC-721
Overview
Max Total Supply
0 GWC
Holders
984
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GasWarriorsClones
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-14 */ // Sources flattened with hardhat v2.6.4 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] 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); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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 { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File @openzeppelin/contracts/access/[email protected] 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); } } // File contracts/GasWarrior-Clones.sol pragma solidity ^0.8.0; contract GasWarriorsClones is ERC721URIStorage, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; uint public fee; string public baseUri; uint public maximumMintable; uint public publicMintingTime; bool public hasBeenRevealed; uint public numberOfOwnerMints; address private devAddress; address public DAOaddressMultisig; //Number of mints remaining for a user on the early minting list mapping (address => uint) earlyMintingRemaining; event Minted(address to, uint id, string uri); event PriceUpdated(uint newPrice); event UpdatedDAOAddress(address newAddress); constructor() ERC721("GasWarrior Clones", "GWC") { fee = 40000000000000000 wei; //0.04 ETH baseUri = "ipfs://QmVkoTmbtM74vdQXexSEKAp1pbr9WZNdV86ApPkRaAMT4Z"; //pre-veal maximumMintable = 8788; publicMintingTime = 1631700001; // update to wednesday devAddress = msg.sender; numberOfOwnerMints = 100; //future owner 0xD435566E386A9Ae228A89826Ab733981967c30ef DAOaddressMultisig = 0x874df5B5e489556894FE7c76F06c03e5Cc264c3D; } /** * @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); } /* * Mint Gas Warriors */ function mint(uint numberOfMints) public payable returns (uint256) { require(block.timestamp >= publicMintingTime); require(_tokenIds.current() + numberOfMints <= maximumMintable, "Maximum amount of Clones already minted."); //10000 item cap (9900 public + 100 team mints) require(msg.value >= fee * numberOfMints, "Fee is not correct."); //User must pay set fee.` require(numberOfMints <= 15, "You cant mint more than 15 at a time."); for(uint i = 0; i < numberOfMints; i++) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _mint(_msgSender(), newItemId); //removed Mint event here bc of gas intensity of events. } return _tokenIds.current(); } function ownerMint(uint numberOfMints) public onlyOwner returns (uint256) { require(_tokenIds.current() + numberOfMints <= maximumMintable + 100, "Maximum amount of Clones already minted."); //10000 item cap (9900 public + 100 team mints) require(numberOfOwnerMints - numberOfMints >= 0, "Owner is maxed at 100 free mints only."); numberOfOwnerMints = numberOfOwnerMints - numberOfMints; for(uint i = 0; i < numberOfMints; i++) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _mint(_msgSender(), newItemId); //removed Mint event here bc of gas intensity of events. } return _tokenIds.current(); } function earlyMint(uint numberOfMints) public payable returns(uint256){ require(_tokenIds.current() + numberOfMints <= maximumMintable, "Maximum amount of Clones already minted."); //10000 item cap (9900 public + 100 team mints) require(msg.value >= fee * numberOfMints, "Fee is not correct."); //User must pay set fee.` require(numberOfMints <= 25, "You cant mint more than 25 at a time."); require(earlyMintingRemaining[_msgSender()] - numberOfMints >= 0, "Your allowance for early mints is too low for that many mints."); earlyMintingRemaining[_msgSender()] = earlyMintingRemaining[_msgSender()] - numberOfMints; for(uint i = 0; i < numberOfMints; i++) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _mint(_msgSender(), newItemId); //removed Mint event here bc of gas intensity of events. } return _tokenIds.current(); } function updateFee(uint newFee) public onlyOwner{ fee = newFee; emit PriceUpdated(newFee); } function getFee() public view returns (uint) { return fee; } function OwnerMoveFundsToDAO() public onlyOwner{ //TODO make this a transaction payable(msg.sender).transfer(address(this).balance * 65/100); payable(DAOaddressMultisig).transfer(address(this).balance * 20/100); payable(devAddress).transfer(address(this).balance * 15/100); } function tokenURI(uint _id) public virtual override view returns(string memory){ //doing this logic here instead of setting each individual NFT URI saves gas for minters if (hasBeenRevealed){ return string(abi.encodePacked(baseUri, toString(_id), ".json")); }else{ //not revealed yet. Use basic URI, intact with its own ".json" return baseUri; } } //Can only be set once function ownerReveal(string memory _uri) public{ require(msg.sender == devAddress || msg.sender == owner()); require(!hasBeenRevealed); hasBeenRevealed = true; baseUri = _uri; } //only the DAO can update who the DAO is after it is set by constructor function DAOupdateDAOaddress(address _daoAddress) public { require(msg.sender == DAOaddressMultisig); DAOaddressMultisig = _daoAddress; emit UpdatedDAOAddress(_daoAddress); } //Add a list of supporters to early minting and give them an allowance of 100 function ownerAddSupporters(address[] calldata supporters) public onlyOwner{ for(uint i = 0; i < supporters.length; i++){ earlyMintingRemaining[supporters[i]] = 100; } } //0x029bC12540DC84ed8282d36ebC268b5762A64346 }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"Minted","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":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PriceUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"UpdatedDAOAddress","type":"event"},{"inputs":[],"name":"DAOaddressMultisig","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_daoAddress","type":"address"}],"name":"DAOupdateDAOaddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"OwnerMoveFundsToDAO","outputs":[],"stateMutability":"nonpayable","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":"numberOfMints","type":"uint256"}],"name":"earlyMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"getFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasBeenRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maximumMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfOwnerMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"supporters","type":"address[]"}],"name":"ownerAddSupporters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"ownerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"ownerReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicMintingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252601181527047617357617272696f7220436c6f6e657360781b60208083019182528351808501909452600384526247574360e81b908401528151919291620000669160009162000177565b5080516200007c90600190602084019062000177565b50505062000099620000936200012160201b60201c565b62000125565b668e1bc9bf040000600955604080516060810190915260358082526200271160208301398051620000d391600a9160209091019062000177565b50612254600b55636141c421600c55600f80546001600160a01b031990811633179091556064600e556010805490911673874df5b5e489556894fe7c76f06c03e5cc264c3d1790556200025a565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000185906200021d565b90600052602060002090601f016020900481019282620001a95760008555620001f4565b82601f10620001c457805160ff1916838001178555620001f4565b82800160010185558215620001f4579182015b82811115620001f4578251825591602001919060010190620001d7565b506200020292915062000206565b5090565b5b8082111562000202576000815560010162000207565b6002810460018216806200023257607f821691505b602082108114156200025457634e487b7160e01b600052602260045260246000fd5b50919050565b6124a7806200026a6000396000f3fe6080604052600436106101e35760003560e01c8063924c3e0211610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610509578063f19e75d414610529578063f2fde38b14610549578063f99cff1014610569576101e3565b8063b88d4fde1461049f578063c87b56dd146104bf578063ced72f87146104df578063ddca3f43146104f4576101e3565b80639abc8320116100d15780639abc832014610437578063a0712d681461044c578063a22cb4651461045f578063b44ad5021461047f576101e3565b8063924c3e02146103d85780639599cf38146103ed57806395d83ab01461040257806395d89b4114610422576101e3565b80636352211e1161017a5780638a61413c116101495780638a61413c1461037b5780638d13619f1461038e5780638da5cb5b146103a35780639012c4a8146103b8576101e3565b80636352211e1461030457806370a0823114610324578063715018a614610351578063850bb39a14610366576101e3565b806323358a6f116101b657806323358a6f1461028f57806323b872dd146102a457806342842e0e146102c45780635d6fab74146102e4576101e3565b806301ffc9a7146101e857806306fdde031461021e578063081812fc14610240578063095ea7b31461026d575b600080fd5b3480156101f457600080fd5b50610208610203366004611b47565b61057e565b6040516102159190611d35565b60405180910390f35b34801561022a57600080fd5b506102336105c6565b6040516102159190611d40565b34801561024c57600080fd5b5061026061025b366004611bc5565b610658565b6040516102159190611ce4565b34801561027957600080fd5b5061028d610288366004611aaf565b6106a4565b005b34801561029b57600080fd5b5061020861073c565b3480156102b057600080fd5b5061028d6102bf3660046119c1565b610745565b3480156102d057600080fd5b5061028d6102df3660046119c1565b61077d565b3480156102f057600080fd5b5061028d6102ff366004611ad8565b610798565b34801561031057600080fd5b5061026061031f366004611bc5565b610849565b34801561033057600080fd5b5061034461033f36600461196e565b61087e565b604051610215919061230c565b34801561035d57600080fd5b5061028d6108c2565b34801561037257600080fd5b5061034461090d565b610344610389366004611bc5565b610913565b34801561039a57600080fd5b50610260610aab565b3480156103af57600080fd5b50610260610aba565b3480156103c457600080fd5b5061028d6103d3366004611bc5565b610ac9565b3480156103e457600080fd5b50610344610b48565b3480156103f957600080fd5b5061028d610b4e565b34801561040e57600080fd5b5061028d61041d36600461196e565b610c75565b34801561042e57600080fd5b50610233610cd7565b34801561044357600080fd5b50610233610ce6565b61034461045a366004611bc5565b610d74565b34801561046b57600080fd5b5061028d61047a366004611a75565b610e4a565b34801561048b57600080fd5b5061028d61049a366004611b7f565b610f18565b3480156104ab57600080fd5b5061028d6104ba3660046119fc565b610f86565b3480156104cb57600080fd5b506102336104da366004611bc5565b610fc5565b3480156104eb57600080fd5b50610344611097565b34801561050057600080fd5b5061034461109d565b34801561051557600080fd5b5061020861052436600461198f565b6110a3565b34801561053557600080fd5b50610344610544366004611bc5565b6110d1565b34801561055557600080fd5b5061028d61056436600461196e565b6111d3565b34801561057557600080fd5b50610344611241565b60006001600160e01b031982166380ac58cd60e01b14806105af57506001600160e01b03198216635b5e139f60e01b145b806105be57506105be82611247565b90505b919050565b6060600080546105d5906123af565b80601f0160208091040260200160405190810160405280929190818152602001828054610601906123af565b801561064e5780601f106106235761010080835404028352916020019161064e565b820191906000526020600020905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b600061066382611260565b6106885760405162461bcd60e51b815260040161067f9061216a565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106af82610849565b9050806001600160a01b0316836001600160a01b031614156106e35760405162461bcd60e51b815260040161067f90612234565b806001600160a01b03166106f561127d565b6001600160a01b0316148061071157506107118161052461127d565b61072d5760405162461bcd60e51b815260040161067f90611fe8565b6107378383611281565b505050565b600d5460ff1681565b61075661075061127d565b826112ef565b6107725760405162461bcd60e51b815260040161067f906122bb565b610737838383611374565b61073783838360405180602001604052806000815250610f86565b6107a061127d565b6001600160a01b03166107b1610aba565b6001600160a01b0316146107d75760405162461bcd60e51b815260040161067f906121b6565b60005b818110156107375760646011600085858581811061080857634e487b7160e01b600052603260045260246000fd5b905060200201602081019061081d919061196e565b6001600160a01b0316815260208101919091526040016000205580610841816123ea565b9150506107da565b6000818152600260205260408120546001600160a01b0316806105be5760405162461bcd60e51b815260040161067f9061208f565b60006001600160a01b0382166108a65760405162461bcd60e51b815260040161067f90612045565b506001600160a01b031660009081526003602052604090205490565b6108ca61127d565b6001600160a01b03166108db610aba565b6001600160a01b0316146109015760405162461bcd60e51b815260040161067f906121b6565b61090b60006114a1565b565b600e5481565b6000600b548261092360086114f3565b61092d9190612321565b111561094b5760405162461bcd60e51b815260040161067f90611f5b565b81600954610959919061234d565b3410156109785760405162461bcd60e51b815260040161067f90611ee2565b60198211156109995760405162461bcd60e51b815260040161067f90611fa3565b600082601160006109a861127d565b6001600160a01b03166001600160a01b03168152602001908152602001600020546109d3919061236c565b10156109f15760405162461bcd60e51b815260040161067f906120d8565b81601160006109fe61127d565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610a29919061236c565b60116000610a3561127d565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060005b82811015610aa057610a6e60086114f7565b6000610a7a60086114f3565b9050610a8d610a8761127d565b82611500565b5080610a98816123ea565b915050610a5c565b506105be60086114f3565b6010546001600160a01b031681565b6007546001600160a01b031690565b610ad161127d565b6001600160a01b0316610ae2610aba565b6001600160a01b031614610b085760405162461bcd60e51b815260040161067f906121b6565b60098190556040517f66cbca4f3c64fecf1dcb9ce094abcf7f68c3450a1d4e3a8e917dd621edb4ebe090610b3d90839061230c565b60405180910390a150565b600c5481565b610b5661127d565b6001600160a01b0316610b67610aba565b6001600160a01b031614610b8d5760405162461bcd60e51b815260040161067f906121b6565b336108fc6064610b9e47604161234d565b610ba89190612339565b6040518115909202916000818181858888f19350505050158015610bd0573d6000803e3d6000fd5b506010546001600160a01b03166108fc6064610bed47601461234d565b610bf79190612339565b6040518115909202916000818181858888f19350505050158015610c1f573d6000803e3d6000fd5b50600f80546001600160a01b0316906108fc90606490610c4090479061234d565b610c4a9190612339565b6040518115909202916000818181858888f19350505050158015610c72573d6000803e3d6000fd5b50565b6010546001600160a01b03163314610c8c57600080fd5b601080546001600160a01b0319166001600160a01b0383161790556040517fa0fab63df39c2571a69d337635907eeb5dd5e381f05ac13c4dafc2f70c0c618290610b3d908390611ce4565b6060600180546105d5906123af565b600a8054610cf3906123af565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1f906123af565b8015610d6c5780601f10610d4157610100808354040283529160200191610d6c565b820191906000526020600020905b815481529060010190602001808311610d4f57829003601f168201915b505050505081565b6000600c54421015610d8557600080fd5b600b5482610d9360086114f3565b610d9d9190612321565b1115610dbb5760405162461bcd60e51b815260040161067f90611f5b565b81600954610dc9919061234d565b341015610de85760405162461bcd60e51b815260040161067f90611ee2565b600f821115610e095760405162461bcd60e51b815260040161067f90611d53565b60005b82811015610aa057610e1e60086114f7565b6000610e2a60086114f3565b9050610e37610a8761127d565b5080610e42816123ea565b915050610e0c565b610e5261127d565b6001600160a01b0316826001600160a01b03161415610e835760405162461bcd60e51b815260040161067f90611eab565b8060056000610e9061127d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ed461127d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f0c9190611d35565b60405180910390a35050565b600f546001600160a01b0316331480610f495750610f34610aba565b6001600160a01b0316336001600160a01b0316145b610f5257600080fd5b600d5460ff1615610f6257600080fd5b600d805460ff191660011790558051610f8290600a90602084019061184e565b5050565b610f97610f9161127d565b836112ef565b610fb35760405162461bcd60e51b815260040161067f906122bb565b610fbf848484846115df565b50505050565b600d5460609060ff161561100557600a610fde83611612565b604051602001610fef929190611c36565b60405160208183030381529060405290506105c1565b600a8054611012906123af565b80601f016020809104026020016040519081016040528092919081815260200182805461103e906123af565b801561108b5780601f106110605761010080835404028352916020019161108b565b820191906000526020600020905b81548152906001019060200180831161106e57829003601f168201915b505050505090506105c1565b60095490565b60095481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006110db61127d565b6001600160a01b03166110ec610aba565b6001600160a01b0316146111125760405162461bcd60e51b815260040161067f906121b6565b600b54611120906064612321565b8261112b60086114f3565b6111359190612321565b11156111535760405162461bcd60e51b815260040161067f90611f5b565b600082600e54611163919061236c565b10156111815760405162461bcd60e51b815260040161067f90612275565b81600e5461118f919061236c565b600e5560005b82811015610aa0576111a760086114f7565b60006111b360086114f3565b90506111c0610a8761127d565b50806111cb816123ea565b915050611195565b6111db61127d565b6001600160a01b03166111ec610aba565b6001600160a01b0316146112125760405162461bcd60e51b815260040161067f906121b6565b6001600160a01b0381166112385760405162461bcd60e51b815260040161067f90611dea565b610c72816114a1565b600b5481565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112b682610849565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112fa82611260565b6113165760405162461bcd60e51b815260040161067f90611f0f565b600061132183610849565b9050806001600160a01b0316846001600160a01b0316148061135c5750836001600160a01b031661135184610658565b6001600160a01b0316145b8061136c575061136c81856110a3565b949350505050565b826001600160a01b031661138782610849565b6001600160a01b0316146113ad5760405162461bcd60e51b815260040161067f906121eb565b6001600160a01b0382166113d35760405162461bcd60e51b815260040161067f90611e67565b6113de838383610737565b6113e9600082611281565b6001600160a01b038316600090815260036020526040812080546001929061141290849061236c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611440908490612321565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b5490565b80546001019055565b6001600160a01b0382166115265760405162461bcd60e51b815260040161067f90612135565b61152f81611260565b1561154c5760405162461bcd60e51b815260040161067f90611e30565b61155860008383610737565b6001600160a01b0382166000908152600360205260408120805460019290611581908490612321565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6115ea848484611374565b6115f68484848461172d565b610fbf5760405162461bcd60e51b815260040161067f90611d98565b60608161163757506040805180820190915260018152600360fc1b60208201526105c1565b8160005b8115611661578061164b816123ea565b915061165a9050600a83612339565b915061163b565b60008167ffffffffffffffff81111561168a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116b4576020820181803683370190505b5090505b841561136c576116c960018361236c565b91506116d6600a86612405565b6116e1906030612321565b60f81b81838151811061170457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611726600a86612339565b94506116b8565b6000611741846001600160a01b0316611848565b1561183d57836001600160a01b031663150b7a0261175d61127d565b8786866040518563ffffffff1660e01b815260040161177f9493929190611cf8565b602060405180830381600087803b15801561179957600080fd5b505af19250505080156117c9575060408051601f3d908101601f191682019092526117c691810190611b63565b60015b611823573d8080156117f7576040519150601f19603f3d011682016040523d82523d6000602084013e6117fc565b606091505b50805161181b5760405162461bcd60e51b815260040161067f90611d98565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061136c565b506001949350505050565b3b151590565b82805461185a906123af565b90600052602060002090601f01602090048101928261187c57600085556118c2565b82601f1061189557805160ff19168380011785556118c2565b828001600101855582156118c2579182015b828111156118c25782518255916020019190600101906118a7565b506118ce9291506118d2565b5090565b5b808211156118ce57600081556001016118d3565b600067ffffffffffffffff8084111561190257611902612445565b604051601f8501601f19168101602001828111828210171561192657611926612445565b60405284815291508183850186101561193e57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105c157600080fd5b60006020828403121561197f578081fd5b61198882611957565b9392505050565b600080604083850312156119a1578081fd5b6119aa83611957565b91506119b860208401611957565b90509250929050565b6000806000606084860312156119d5578081fd5b6119de84611957565b92506119ec60208501611957565b9150604084013590509250925092565b60008060008060808587031215611a11578081fd5b611a1a85611957565b9350611a2860208601611957565b925060408501359150606085013567ffffffffffffffff811115611a4a578182fd5b8501601f81018713611a5a578182fd5b611a69878235602084016118e7565b91505092959194509250565b60008060408385031215611a87578182fd5b611a9083611957565b915060208301358015158114611aa4578182fd5b809150509250929050565b60008060408385031215611ac1578182fd5b611aca83611957565b946020939093013593505050565b60008060208385031215611aea578182fd5b823567ffffffffffffffff80821115611b01578384fd5b818501915085601f830112611b14578384fd5b813581811115611b22578485fd5b8660208083028501011115611b35578485fd5b60209290920196919550909350505050565b600060208284031215611b58578081fd5b81356119888161245b565b600060208284031215611b74578081fd5b81516119888161245b565b600060208284031215611b90578081fd5b813567ffffffffffffffff811115611ba6578182fd5b8201601f81018413611bb6578182fd5b61136c848235602084016118e7565b600060208284031215611bd6578081fd5b5035919050565b60008151808452611bf5816020860160208601612383565b601f01601f19169290920160200192915050565b60008151611c1b818560208601612383565b9290920192915050565b64173539b7b760d91b815260050190565b8254600090819060028104600180831680611c5257607f831692505b6020808410821415611c7257634e487b7160e01b87526022600452602487fd5b818015611c865760018114611c9757611cc3565b60ff19861689528489019650611cc3565b611ca08b612315565b885b86811015611cbb5781548b820152908501908301611ca2565b505084890196505b505050505050611cdb611cd68286611c09565b611c25565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d2b90830184611bdd565b9695505050505050565b901515815260200190565b6000602082526119886020830184611bdd565b60208082526025908201527f596f752063616e74206d696e74206d6f7265207468616e2031352061742061206040820152643a34b6b29760d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601390820152722332b29034b9903737ba1031b7b93932b1ba1760691b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526028908201527f4d6178696d756d20616d6f756e74206f6620436c6f6e657320616c72656164796040820152671036b4b73a32b21760c11b606082015260800190565b60208082526025908201527f596f752063616e74206d696e74206d6f7265207468616e2032352061742061206040820152643a34b6b29760d91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252603e908201527f596f757220616c6c6f77616e636520666f72206561726c79206d696e7473206960408201527f7320746f6f206c6f7720666f722074686174206d616e79206d696e74732e0000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526026908201527f4f776e6572206973206d61786564206174203130302066726565206d696e74736040820152651037b7363c9760d11b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60009081526020902090565b6000821982111561233457612334612419565b500190565b6000826123485761234861242f565b500490565b600081600019048311821515161561236757612367612419565b500290565b60008282101561237e5761237e612419565b500390565b60005b8381101561239e578181015183820152602001612386565b83811115610fbf5750506000910152565b6002810460018216806123c357607f821691505b602082108114156123e457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123fe576123fe612419565b5060010190565b6000826124145761241461242f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7257600080fdfea264697066735822122069c7ab2a603adadca57283369fb45cdc8b2296ed4c1c5a5be04b9892b29c92de64736f6c63430008000033697066733a2f2f516d566b6f546d62744d373476645158657853454b41703170627239575a4e645638364170506b5261414d54345a
Deployed Bytecode
0x6080604052600436106101e35760003560e01c8063924c3e0211610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610509578063f19e75d414610529578063f2fde38b14610549578063f99cff1014610569576101e3565b8063b88d4fde1461049f578063c87b56dd146104bf578063ced72f87146104df578063ddca3f43146104f4576101e3565b80639abc8320116100d15780639abc832014610437578063a0712d681461044c578063a22cb4651461045f578063b44ad5021461047f576101e3565b8063924c3e02146103d85780639599cf38146103ed57806395d83ab01461040257806395d89b4114610422576101e3565b80636352211e1161017a5780638a61413c116101495780638a61413c1461037b5780638d13619f1461038e5780638da5cb5b146103a35780639012c4a8146103b8576101e3565b80636352211e1461030457806370a0823114610324578063715018a614610351578063850bb39a14610366576101e3565b806323358a6f116101b657806323358a6f1461028f57806323b872dd146102a457806342842e0e146102c45780635d6fab74146102e4576101e3565b806301ffc9a7146101e857806306fdde031461021e578063081812fc14610240578063095ea7b31461026d575b600080fd5b3480156101f457600080fd5b50610208610203366004611b47565b61057e565b6040516102159190611d35565b60405180910390f35b34801561022a57600080fd5b506102336105c6565b6040516102159190611d40565b34801561024c57600080fd5b5061026061025b366004611bc5565b610658565b6040516102159190611ce4565b34801561027957600080fd5b5061028d610288366004611aaf565b6106a4565b005b34801561029b57600080fd5b5061020861073c565b3480156102b057600080fd5b5061028d6102bf3660046119c1565b610745565b3480156102d057600080fd5b5061028d6102df3660046119c1565b61077d565b3480156102f057600080fd5b5061028d6102ff366004611ad8565b610798565b34801561031057600080fd5b5061026061031f366004611bc5565b610849565b34801561033057600080fd5b5061034461033f36600461196e565b61087e565b604051610215919061230c565b34801561035d57600080fd5b5061028d6108c2565b34801561037257600080fd5b5061034461090d565b610344610389366004611bc5565b610913565b34801561039a57600080fd5b50610260610aab565b3480156103af57600080fd5b50610260610aba565b3480156103c457600080fd5b5061028d6103d3366004611bc5565b610ac9565b3480156103e457600080fd5b50610344610b48565b3480156103f957600080fd5b5061028d610b4e565b34801561040e57600080fd5b5061028d61041d36600461196e565b610c75565b34801561042e57600080fd5b50610233610cd7565b34801561044357600080fd5b50610233610ce6565b61034461045a366004611bc5565b610d74565b34801561046b57600080fd5b5061028d61047a366004611a75565b610e4a565b34801561048b57600080fd5b5061028d61049a366004611b7f565b610f18565b3480156104ab57600080fd5b5061028d6104ba3660046119fc565b610f86565b3480156104cb57600080fd5b506102336104da366004611bc5565b610fc5565b3480156104eb57600080fd5b50610344611097565b34801561050057600080fd5b5061034461109d565b34801561051557600080fd5b5061020861052436600461198f565b6110a3565b34801561053557600080fd5b50610344610544366004611bc5565b6110d1565b34801561055557600080fd5b5061028d61056436600461196e565b6111d3565b34801561057557600080fd5b50610344611241565b60006001600160e01b031982166380ac58cd60e01b14806105af57506001600160e01b03198216635b5e139f60e01b145b806105be57506105be82611247565b90505b919050565b6060600080546105d5906123af565b80601f0160208091040260200160405190810160405280929190818152602001828054610601906123af565b801561064e5780601f106106235761010080835404028352916020019161064e565b820191906000526020600020905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b600061066382611260565b6106885760405162461bcd60e51b815260040161067f9061216a565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106af82610849565b9050806001600160a01b0316836001600160a01b031614156106e35760405162461bcd60e51b815260040161067f90612234565b806001600160a01b03166106f561127d565b6001600160a01b0316148061071157506107118161052461127d565b61072d5760405162461bcd60e51b815260040161067f90611fe8565b6107378383611281565b505050565b600d5460ff1681565b61075661075061127d565b826112ef565b6107725760405162461bcd60e51b815260040161067f906122bb565b610737838383611374565b61073783838360405180602001604052806000815250610f86565b6107a061127d565b6001600160a01b03166107b1610aba565b6001600160a01b0316146107d75760405162461bcd60e51b815260040161067f906121b6565b60005b818110156107375760646011600085858581811061080857634e487b7160e01b600052603260045260246000fd5b905060200201602081019061081d919061196e565b6001600160a01b0316815260208101919091526040016000205580610841816123ea565b9150506107da565b6000818152600260205260408120546001600160a01b0316806105be5760405162461bcd60e51b815260040161067f9061208f565b60006001600160a01b0382166108a65760405162461bcd60e51b815260040161067f90612045565b506001600160a01b031660009081526003602052604090205490565b6108ca61127d565b6001600160a01b03166108db610aba565b6001600160a01b0316146109015760405162461bcd60e51b815260040161067f906121b6565b61090b60006114a1565b565b600e5481565b6000600b548261092360086114f3565b61092d9190612321565b111561094b5760405162461bcd60e51b815260040161067f90611f5b565b81600954610959919061234d565b3410156109785760405162461bcd60e51b815260040161067f90611ee2565b60198211156109995760405162461bcd60e51b815260040161067f90611fa3565b600082601160006109a861127d565b6001600160a01b03166001600160a01b03168152602001908152602001600020546109d3919061236c565b10156109f15760405162461bcd60e51b815260040161067f906120d8565b81601160006109fe61127d565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610a29919061236c565b60116000610a3561127d565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060005b82811015610aa057610a6e60086114f7565b6000610a7a60086114f3565b9050610a8d610a8761127d565b82611500565b5080610a98816123ea565b915050610a5c565b506105be60086114f3565b6010546001600160a01b031681565b6007546001600160a01b031690565b610ad161127d565b6001600160a01b0316610ae2610aba565b6001600160a01b031614610b085760405162461bcd60e51b815260040161067f906121b6565b60098190556040517f66cbca4f3c64fecf1dcb9ce094abcf7f68c3450a1d4e3a8e917dd621edb4ebe090610b3d90839061230c565b60405180910390a150565b600c5481565b610b5661127d565b6001600160a01b0316610b67610aba565b6001600160a01b031614610b8d5760405162461bcd60e51b815260040161067f906121b6565b336108fc6064610b9e47604161234d565b610ba89190612339565b6040518115909202916000818181858888f19350505050158015610bd0573d6000803e3d6000fd5b506010546001600160a01b03166108fc6064610bed47601461234d565b610bf79190612339565b6040518115909202916000818181858888f19350505050158015610c1f573d6000803e3d6000fd5b50600f80546001600160a01b0316906108fc90606490610c4090479061234d565b610c4a9190612339565b6040518115909202916000818181858888f19350505050158015610c72573d6000803e3d6000fd5b50565b6010546001600160a01b03163314610c8c57600080fd5b601080546001600160a01b0319166001600160a01b0383161790556040517fa0fab63df39c2571a69d337635907eeb5dd5e381f05ac13c4dafc2f70c0c618290610b3d908390611ce4565b6060600180546105d5906123af565b600a8054610cf3906123af565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1f906123af565b8015610d6c5780601f10610d4157610100808354040283529160200191610d6c565b820191906000526020600020905b815481529060010190602001808311610d4f57829003601f168201915b505050505081565b6000600c54421015610d8557600080fd5b600b5482610d9360086114f3565b610d9d9190612321565b1115610dbb5760405162461bcd60e51b815260040161067f90611f5b565b81600954610dc9919061234d565b341015610de85760405162461bcd60e51b815260040161067f90611ee2565b600f821115610e095760405162461bcd60e51b815260040161067f90611d53565b60005b82811015610aa057610e1e60086114f7565b6000610e2a60086114f3565b9050610e37610a8761127d565b5080610e42816123ea565b915050610e0c565b610e5261127d565b6001600160a01b0316826001600160a01b03161415610e835760405162461bcd60e51b815260040161067f90611eab565b8060056000610e9061127d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ed461127d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f0c9190611d35565b60405180910390a35050565b600f546001600160a01b0316331480610f495750610f34610aba565b6001600160a01b0316336001600160a01b0316145b610f5257600080fd5b600d5460ff1615610f6257600080fd5b600d805460ff191660011790558051610f8290600a90602084019061184e565b5050565b610f97610f9161127d565b836112ef565b610fb35760405162461bcd60e51b815260040161067f906122bb565b610fbf848484846115df565b50505050565b600d5460609060ff161561100557600a610fde83611612565b604051602001610fef929190611c36565b60405160208183030381529060405290506105c1565b600a8054611012906123af565b80601f016020809104026020016040519081016040528092919081815260200182805461103e906123af565b801561108b5780601f106110605761010080835404028352916020019161108b565b820191906000526020600020905b81548152906001019060200180831161106e57829003601f168201915b505050505090506105c1565b60095490565b60095481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006110db61127d565b6001600160a01b03166110ec610aba565b6001600160a01b0316146111125760405162461bcd60e51b815260040161067f906121b6565b600b54611120906064612321565b8261112b60086114f3565b6111359190612321565b11156111535760405162461bcd60e51b815260040161067f90611f5b565b600082600e54611163919061236c565b10156111815760405162461bcd60e51b815260040161067f90612275565b81600e5461118f919061236c565b600e5560005b82811015610aa0576111a760086114f7565b60006111b360086114f3565b90506111c0610a8761127d565b50806111cb816123ea565b915050611195565b6111db61127d565b6001600160a01b03166111ec610aba565b6001600160a01b0316146112125760405162461bcd60e51b815260040161067f906121b6565b6001600160a01b0381166112385760405162461bcd60e51b815260040161067f90611dea565b610c72816114a1565b600b5481565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112b682610849565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112fa82611260565b6113165760405162461bcd60e51b815260040161067f90611f0f565b600061132183610849565b9050806001600160a01b0316846001600160a01b0316148061135c5750836001600160a01b031661135184610658565b6001600160a01b0316145b8061136c575061136c81856110a3565b949350505050565b826001600160a01b031661138782610849565b6001600160a01b0316146113ad5760405162461bcd60e51b815260040161067f906121eb565b6001600160a01b0382166113d35760405162461bcd60e51b815260040161067f90611e67565b6113de838383610737565b6113e9600082611281565b6001600160a01b038316600090815260036020526040812080546001929061141290849061236c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611440908490612321565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b5490565b80546001019055565b6001600160a01b0382166115265760405162461bcd60e51b815260040161067f90612135565b61152f81611260565b1561154c5760405162461bcd60e51b815260040161067f90611e30565b61155860008383610737565b6001600160a01b0382166000908152600360205260408120805460019290611581908490612321565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6115ea848484611374565b6115f68484848461172d565b610fbf5760405162461bcd60e51b815260040161067f90611d98565b60608161163757506040805180820190915260018152600360fc1b60208201526105c1565b8160005b8115611661578061164b816123ea565b915061165a9050600a83612339565b915061163b565b60008167ffffffffffffffff81111561168a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116b4576020820181803683370190505b5090505b841561136c576116c960018361236c565b91506116d6600a86612405565b6116e1906030612321565b60f81b81838151811061170457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611726600a86612339565b94506116b8565b6000611741846001600160a01b0316611848565b1561183d57836001600160a01b031663150b7a0261175d61127d565b8786866040518563ffffffff1660e01b815260040161177f9493929190611cf8565b602060405180830381600087803b15801561179957600080fd5b505af19250505080156117c9575060408051601f3d908101601f191682019092526117c691810190611b63565b60015b611823573d8080156117f7576040519150601f19603f3d011682016040523d82523d6000602084013e6117fc565b606091505b50805161181b5760405162461bcd60e51b815260040161067f90611d98565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061136c565b506001949350505050565b3b151590565b82805461185a906123af565b90600052602060002090601f01602090048101928261187c57600085556118c2565b82601f1061189557805160ff19168380011785556118c2565b828001600101855582156118c2579182015b828111156118c25782518255916020019190600101906118a7565b506118ce9291506118d2565b5090565b5b808211156118ce57600081556001016118d3565b600067ffffffffffffffff8084111561190257611902612445565b604051601f8501601f19168101602001828111828210171561192657611926612445565b60405284815291508183850186101561193e57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105c157600080fd5b60006020828403121561197f578081fd5b61198882611957565b9392505050565b600080604083850312156119a1578081fd5b6119aa83611957565b91506119b860208401611957565b90509250929050565b6000806000606084860312156119d5578081fd5b6119de84611957565b92506119ec60208501611957565b9150604084013590509250925092565b60008060008060808587031215611a11578081fd5b611a1a85611957565b9350611a2860208601611957565b925060408501359150606085013567ffffffffffffffff811115611a4a578182fd5b8501601f81018713611a5a578182fd5b611a69878235602084016118e7565b91505092959194509250565b60008060408385031215611a87578182fd5b611a9083611957565b915060208301358015158114611aa4578182fd5b809150509250929050565b60008060408385031215611ac1578182fd5b611aca83611957565b946020939093013593505050565b60008060208385031215611aea578182fd5b823567ffffffffffffffff80821115611b01578384fd5b818501915085601f830112611b14578384fd5b813581811115611b22578485fd5b8660208083028501011115611b35578485fd5b60209290920196919550909350505050565b600060208284031215611b58578081fd5b81356119888161245b565b600060208284031215611b74578081fd5b81516119888161245b565b600060208284031215611b90578081fd5b813567ffffffffffffffff811115611ba6578182fd5b8201601f81018413611bb6578182fd5b61136c848235602084016118e7565b600060208284031215611bd6578081fd5b5035919050565b60008151808452611bf5816020860160208601612383565b601f01601f19169290920160200192915050565b60008151611c1b818560208601612383565b9290920192915050565b64173539b7b760d91b815260050190565b8254600090819060028104600180831680611c5257607f831692505b6020808410821415611c7257634e487b7160e01b87526022600452602487fd5b818015611c865760018114611c9757611cc3565b60ff19861689528489019650611cc3565b611ca08b612315565b885b86811015611cbb5781548b820152908501908301611ca2565b505084890196505b505050505050611cdb611cd68286611c09565b611c25565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d2b90830184611bdd565b9695505050505050565b901515815260200190565b6000602082526119886020830184611bdd565b60208082526025908201527f596f752063616e74206d696e74206d6f7265207468616e2031352061742061206040820152643a34b6b29760d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601390820152722332b29034b9903737ba1031b7b93932b1ba1760691b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526028908201527f4d6178696d756d20616d6f756e74206f6620436c6f6e657320616c72656164796040820152671036b4b73a32b21760c11b606082015260800190565b60208082526025908201527f596f752063616e74206d696e74206d6f7265207468616e2032352061742061206040820152643a34b6b29760d91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252603e908201527f596f757220616c6c6f77616e636520666f72206561726c79206d696e7473206960408201527f7320746f6f206c6f7720666f722074686174206d616e79206d696e74732e0000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526026908201527f4f776e6572206973206d61786564206174203130302066726565206d696e74736040820152651037b7363c9760d11b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60009081526020902090565b6000821982111561233457612334612419565b500190565b6000826123485761234861242f565b500490565b600081600019048311821515161561236757612367612419565b500290565b60008282101561237e5761237e612419565b500390565b60005b8381101561239e578181015183820152602001612386565b83811115610fbf5750506000910152565b6002810460018216806123c357607f821691505b602082108114156123e457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123fe576123fe612419565b5060010190565b6000826124145761241461242f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7257600080fdfea264697066735822122069c7ab2a603adadca57283369fb45cdc8b2296ed4c1c5a5be04b9892b29c92de64736f6c63430008000033
Deployed Bytecode Sourcemap
38613:6373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20786:305;;;;;;;;;;-1:-1:-1;20786:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21731:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23290:221::-;;;;;;;;;;-1:-1:-1;23290:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22813:411::-;;;;;;;;;;-1:-1:-1;22813:411:0;;;;;:::i;:::-;;:::i;:::-;;38883:27;;;;;;;;;;;;;:::i;24180:339::-;;;;;;;;;;-1:-1:-1;24180:339:0;;;;;:::i;:::-;;:::i;24590:185::-;;;;;;;;;;-1:-1:-1;24590:185:0;;;;;:::i;:::-;;:::i;44736:197::-;;;;;;;;;;-1:-1:-1;44736:197:0;;;;;:::i;:::-;;:::i;21425:239::-;;;;;;;;;;-1:-1:-1;21425:239:0;;;;;:::i;:::-;;:::i;21155:208::-;;;;;;;;;;-1:-1:-1;21155:208:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37906:94::-;;;;;;;;;;;;;:::i;38919:30::-;;;;;;;;;;;;;:::i;42215:954::-;;;;;;:::i;:::-;;:::i;38989:33::-;;;;;;;;;;;;;:::i;37255:87::-;;;;;;;;;;;;;:::i;43177:113::-;;;;;;;;;;-1:-1:-1;43177:113:0;;;;;:::i;:::-;;:::i;38845:29::-;;;;;;;;;;;;;:::i;43378:314::-;;;;;;;;;;;;;:::i;44439:206::-;;;;;;;;;;-1:-1:-1;44439:206:0;;;;;:::i;:::-;;:::i;21900:104::-;;;;;;;;;;;;;:::i;38783:21::-;;;;;;;;;;;;;:::i;40663:810::-;;;;;;:::i;:::-;;:::i;23583:295::-;;;;;;;;;;-1:-1:-1;23583:295:0;;;;;:::i;:::-;;:::i;44144:210::-;;;;;;;;;;-1:-1:-1;44144:210:0;;;;;:::i;:::-;;:::i;24846:328::-;;;;;;;;;;-1:-1:-1;24846:328:0;;;;;:::i;:::-;;:::i;43700:408::-;;;;;;;;;;-1:-1:-1;43700:408:0;;;;;:::i;:::-;;:::i;43298:72::-;;;;;;;;;;;;;:::i;38761:15::-;;;;;;;;;;;;;:::i;23949:164::-;;;;;;;;;;-1:-1:-1;23949:164:0;;;;;:::i;:::-;;:::i;41481:726::-;;;;;;;;;;-1:-1:-1;41481:726:0;;;;;:::i;:::-;;:::i;38155:192::-;;;;;;;;;;-1:-1:-1;38155:192:0;;;;;:::i;:::-;;:::i;38811:27::-;;;;;;;;;;;;;:::i;20786:305::-;20888:4;-1:-1:-1;;;;;;20925:40:0;;-1:-1:-1;;;20925:40:0;;:105;;-1:-1:-1;;;;;;;20982:48:0;;-1:-1:-1;;;20982:48:0;20925:105;:158;;;;21047:36;21071:11;21047:23;:36::i;:::-;20905:178;;20786:305;;;;:::o;21731:100::-;21785:13;21818:5;21811:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21731:100;:::o;23290:221::-;23366:7;23394:16;23402:7;23394;:16::i;:::-;23386:73;;;;-1:-1:-1;;;23386:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23479:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23479:24:0;;23290:221::o;22813:411::-;22894:13;22910:23;22925:7;22910:14;:23::i;:::-;22894:39;;22958:5;-1:-1:-1;;;;;22952:11:0;:2;-1:-1:-1;;;;;22952:11:0;;;22944:57;;;;-1:-1:-1;;;22944:57:0;;;;;;;:::i;:::-;23052:5;-1:-1:-1;;;;;23036:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23036:21:0;;:62;;;;23061:37;23078:5;23085:12;:10;:12::i;23061:37::-;23014:168;;;;-1:-1:-1;;;23014:168:0;;;;;;;:::i;:::-;23195:21;23204:2;23208:7;23195:8;:21::i;:::-;22813:411;;;:::o;38883:27::-;;;;;;:::o;24180:339::-;24375:41;24394:12;:10;:12::i;:::-;24408:7;24375:18;:41::i;:::-;24367:103;;;;-1:-1:-1;;;24367:103:0;;;;;;;:::i;:::-;24483:28;24493:4;24499:2;24503:7;24483:9;:28::i;24590:185::-;24728:39;24745:4;24751:2;24755:7;24728:39;;;;;;;;;;;;:16;:39::i;44736:197::-;37486:12;:10;:12::i;:::-;-1:-1:-1;;;;;37475:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37475:23:0;;37467:68;;;;-1:-1:-1;;;37467:68:0;;;;;;;:::i;:::-;44824:6:::1;44820:106;44836:21:::0;;::::1;44820:106;;;44913:3;44874:21;:36;44896:10;;44907:1;44896:13;;;;;-1:-1:-1::0;;;44896:13:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44874:36:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;44874:36:0;:42;44859:3;::::1;::::0;::::1;:::i;:::-;;;;44820:106;;21425:239:::0;21497:7;21533:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21533:16:0;21568:19;21560:73;;;;-1:-1:-1;;;21560:73:0;;;;;;;:::i;21155:208::-;21227:7;-1:-1:-1;;;;;21255:19:0;;21247:74;;;;-1:-1:-1;;;21247:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21339:16:0;;;;;:9;:16;;;;;;;21155:208::o;37906:94::-;37486:12;:10;:12::i;:::-;-1:-1:-1;;;;;37475:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37475:23:0;;37467:68;;;;-1:-1:-1;;;37467:68:0;;;;;;;:::i;:::-;37971:21:::1;37989:1;37971:9;:21::i;:::-;37906:94::o:0;38919:30::-;;;;:::o;42215:954::-;42277:7;42341:15;;42324:13;42302:19;:9;:17;:19::i;:::-;:35;;;;:::i;:::-;:54;;42294:107;;;;-1:-1:-1;;;42294:107:0;;;;;;;:::i;:::-;42485:13;42479:3;;:19;;;;:::i;:::-;42466:9;:32;;42458:64;;;;-1:-1:-1;;;42458:64:0;;;;;;;:::i;:::-;42583:2;42566:13;:19;;42558:69;;;;-1:-1:-1;;;42558:69:0;;;;;;;:::i;:::-;42699:1;42682:13;42644:21;:35;42666:12;:10;:12::i;:::-;-1:-1:-1;;;;;42644:35:0;-1:-1:-1;;;;;42644:35:0;;;;;;;;;;;;;:51;;;;:::i;:::-;:56;;42636:131;;;;-1:-1:-1;;;42636:131:0;;;;;;;:::i;:::-;42854:13;42816:21;:35;42838:12;:10;:12::i;:::-;-1:-1:-1;;;;;42816:35:0;-1:-1:-1;;;;;42816:35:0;;;;;;;;;;;;;:51;;;;:::i;:::-;42778:21;:35;42800:12;:10;:12::i;:::-;-1:-1:-1;;;;;42778:35:0;-1:-1:-1;;;;;42778:35:0;;;;;;;;;;;;:89;;;;42882:6;42878:249;42898:13;42894:1;:17;42878:249;;;42933:21;:9;:19;:21::i;:::-;42967:17;42987:19;:9;:17;:19::i;:::-;42967:39;;43019:30;43025:12;:10;:12::i;:::-;43039:9;43019:5;:30::i;:::-;-1:-1:-1;42913:3:0;;;;:::i;:::-;;;;42878:249;;;;43142:19;:9;:17;:19::i;38989:33::-;;;-1:-1:-1;;;;;38989:33:0;;:::o;37255:87::-;37328:6;;-1:-1:-1;;;;;37328:6:0;37255:87;:::o;43177:113::-;37486:12;:10;:12::i;:::-;-1:-1:-1;;;;;37475:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37475:23:0;;37467:68;;;;-1:-1:-1;;;37467:68:0;;;;;;;:::i;:::-;43234:3:::1;:12:::0;;;43262:20:::1;::::0;::::1;::::0;::::1;::::0;43240:6;;43262:20:::1;:::i;:::-;;;;;;;;43177:113:::0;:::o;38845:29::-;;;;:::o;43378:314::-;37486:12;:10;:12::i;:::-;-1:-1:-1;;;;;37475:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37475:23:0;;37467:68;;;;-1:-1:-1;;;37467:68:0;;;;;;;:::i;:::-;43482:10:::1;43474:60;43530:3;43503:26;:21;43527:2;43503:26;:::i;:::-;:30;;;;:::i;:::-;43474:60;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43553:18:0::1;::::0;-1:-1:-1;;;;;43553:18:0::1;43545:68;43609:3;43582:26;:21;43606:2;43582:26;:::i;:::-;:30;;;;:::i;:::-;43545:68;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43632:10:0::1;::::0;;-1:-1:-1;;;;;43632:10:0::1;::::0;43624:60:::1;::::0;43680:3:::1;::::0;43653:26:::1;::::0;:21:::1;::::0;:26:::1;:::i;:::-;:30;;;;:::i;:::-;43624:60;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43378:314::o:0;44439:206::-;44529:18;;-1:-1:-1;;;;;44529:18:0;44515:10;:32;44507:41;;;;;;44559:18;:32;;-1:-1:-1;;;;;;44559:32:0;-1:-1:-1;;;;;44559:32:0;;;;;44607:30;;;;;;44559:32;;44607:30;:::i;21900:104::-;21956:13;21989:7;21982:14;;;;;:::i;38783:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40663:810::-;40739:7;40791:17;;40772:15;:36;;40764:45;;;;;;40867:15;;40850:13;40828:19;:9;:17;:19::i;:::-;:35;;;;:::i;:::-;:54;;40820:107;;;;-1:-1:-1;;;40820:107:0;;;;;;;:::i;:::-;41013:13;41007:3;;:19;;;;:::i;:::-;40994:9;:32;;40986:64;;;;-1:-1:-1;;;40986:64:0;;;;;;;:::i;:::-;41113:2;41096:13;:19;;41088:69;;;;-1:-1:-1;;;41088:69:0;;;;;;;:::i;:::-;41174:6;41170:259;41190:13;41186:1;:17;41170:259;;;41227:21;:9;:19;:21::i;:::-;41263:17;41283:19;:9;:17;:19::i;:::-;41263:39;;41317:30;41323:12;:10;:12::i;41317:30::-;-1:-1:-1;41205:3:0;;;;:::i;:::-;;;;41170:259;;23583:295;23698:12;:10;:12::i;:::-;-1:-1:-1;;;;;23686:24:0;:8;-1:-1:-1;;;;;23686:24:0;;;23678:62;;;;-1:-1:-1;;;23678:62:0;;;;;;;:::i;:::-;23798:8;23753:18;:32;23772:12;:10;:12::i;:::-;-1:-1:-1;;;;;23753:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23753:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23753:53:0;;;;;;;;;;;23837:12;:10;:12::i;:::-;-1:-1:-1;;;;;23822:48:0;;23861:8;23822:48;;;;;;:::i;:::-;;;;;;;;23583:295;;:::o;44144:210::-;44222:10;;-1:-1:-1;;;;;44222:10:0;44208;:24;;:49;;;44250:7;:5;:7::i;:::-;-1:-1:-1;;;;;44236:21:0;:10;-1:-1:-1;;;;;44236:21:0;;44208:49;44200:58;;;;;;44276:15;;;;44275:16;44267:25;;;;;;44301:15;:22;;-1:-1:-1;;44301:22:0;44319:4;44301:22;;;44332:14;;;;:7;;:14;;;;;:::i;:::-;;44144:210;:::o;24846:328::-;25021:41;25040:12;:10;:12::i;:::-;25054:7;25021:18;:41::i;:::-;25013:103;;;;-1:-1:-1;;;25013:103:0;;;;;;;:::i;:::-;25127:39;25141:4;25147:2;25151:7;25160:5;25127:13;:39::i;:::-;24846:328;;;;:::o;43700:408::-;43888:15;;43765:13;;43888:15;;43884:217;;;43946:7;43955:13;43964:3;43955:8;:13::i;:::-;43929:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43915:65;;;;43884:217;44084:7;44077:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43298:72;43359:3;;43298:72;:::o;38761:15::-;;;;:::o;23949:164::-;-1:-1:-1;;;;;24070:25:0;;;24046:4;24070:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23949:164::o;41481:726::-;41560:7;37486:12;:10;:12::i;:::-;-1:-1:-1;;;;;37475:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37475:23:0;;37467:68;;;;-1:-1:-1;;;37467:68:0;;;;;;;:::i;:::-;41628:15:::1;::::0;:21:::1;::::0;41646:3:::1;41628:21;:::i;:::-;41611:13;41589:19;:9;:17;:19::i;:::-;:35;;;;:::i;:::-;:60;;41581:113;;;;-1:-1:-1::0;;;41581:113:0::1;;;;;;;:::i;:::-;41797:1;41780:13;41759:18;;:34;;;;:::i;:::-;:39;;41751:90;;;;-1:-1:-1::0;;;41751:90:0::1;;;;;;;:::i;:::-;41892:13;41871:18;;:34;;;;:::i;:::-;41850:18;:55:::0;41920:6:::1;41916:249;41936:13;41932:1;:17;41916:249;;;41971:21;:9;:19;:21::i;:::-;42005:17;42025:19;:9;:17;:19::i;:::-;42005:39;;42057:30;42063:12;:10;:12::i;42057:30::-;-1:-1:-1::0;41951:3:0;::::1;::::0;::::1;:::i;:::-;;;;41916:249;;38155:192:::0;37486:12;:10;:12::i;:::-;-1:-1:-1;;;;;37475:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37475:23:0;;37467:68;;;;-1:-1:-1;;;37467:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38244:22:0;::::1;38236:73;;;;-1:-1:-1::0;;;38236:73:0::1;;;;;;;:::i;:::-;38320:19;38330:8;38320:9;:19::i;38811:27::-:0;;;;:::o;19286:157::-;-1:-1:-1;;;;;;19395:40:0;;-1:-1:-1;;;19395:40:0;19286:157;;;:::o;26684:127::-;26749:4;26773:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26773:16:0;:30;;;26684:127::o;16194:98::-;16274:10;16194:98;:::o;30666:174::-;30741:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30741:29:0;-1:-1:-1;;;;;30741:29:0;;;;;;;;:24;;30795:23;30741:24;30795:14;:23::i;:::-;-1:-1:-1;;;;;30786:46:0;;;;;;;;;;;30666:174;;:::o;26978:348::-;27071:4;27096:16;27104:7;27096;:16::i;:::-;27088:73;;;;-1:-1:-1;;;27088:73:0;;;;;;;:::i;:::-;27172:13;27188:23;27203:7;27188:14;:23::i;:::-;27172:39;;27241:5;-1:-1:-1;;;;;27230:16:0;:7;-1:-1:-1;;;;;27230:16:0;;:51;;;;27274:7;-1:-1:-1;;;;;27250:31:0;:20;27262:7;27250:11;:20::i;:::-;-1:-1:-1;;;;;27250:31:0;;27230:51;:87;;;;27285:32;27302:5;27309:7;27285:16;:32::i;:::-;27222:96;26978:348;-1:-1:-1;;;;26978:348:0:o;29970:578::-;30129:4;-1:-1:-1;;;;;30102:31:0;:23;30117:7;30102:14;:23::i;:::-;-1:-1:-1;;;;;30102:31:0;;30094:85;;;;-1:-1:-1;;;30094:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30198:16:0;;30190:65;;;;-1:-1:-1;;;30190:65:0;;;;;;;:::i;:::-;30268:39;30289:4;30295:2;30299:7;30268:20;:39::i;:::-;30372:29;30389:1;30393:7;30372:8;:29::i;:::-;-1:-1:-1;;;;;30414:15:0;;;;;;:9;:15;;;;;:20;;30433:1;;30414:15;:20;;30433:1;;30414:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30445:13:0;;;;;;:9;:13;;;;;:18;;30462:1;;30445:13;:18;;30462:1;;30445:18;:::i;:::-;;;;-1:-1:-1;;30474:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30474:21:0;-1:-1:-1;;;;;30474:21:0;;;;;;;;;30513:27;;30474:16;;30513:27;;;;;;;29970:578;;;:::o;38355:173::-;38430:6;;;-1:-1:-1;;;;;38447:17:0;;;-1:-1:-1;;;;;;38447:17:0;;;;;;;38480:40;;38430:6;;;38447:17;38430:6;;38480:40;;38411:16;;38480:40;38355:173;;:::o;35660:114::-;35752:14;;35660:114::o;35782:127::-;35871:19;;35889:1;35871:19;;;35782:127::o;28662:382::-;-1:-1:-1;;;;;28742:16:0;;28734:61;;;;-1:-1:-1;;;28734:61:0;;;;;;;:::i;:::-;28815:16;28823:7;28815;:16::i;:::-;28814:17;28806:58;;;;-1:-1:-1;;;28806:58:0;;;;;;;:::i;:::-;28877:45;28906:1;28910:2;28914:7;28877:20;:45::i;:::-;-1:-1:-1;;;;;28935:13:0;;;;;;:9;:13;;;;;:18;;28952:1;;28935:13;:18;;28952:1;;28935:18;:::i;:::-;;;;-1:-1:-1;;28964:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28964:21:0;-1:-1:-1;;;;;28964:21:0;;;;;;;;29003:33;;28964:16;;;29003:33;;28964:16;;29003:33;28662:382;;:::o;26056:315::-;26213:28;26223:4;26229:2;26233:7;26213:9;:28::i;:::-;26260:48;26283:4;26289:2;26293:7;26302:5;26260:22;:48::i;:::-;26252:111;;;;-1:-1:-1;;;26252:111:0;;;;;;;:::i;39891:723::-;39947:13;40168:10;40164:53;;-1:-1:-1;40195:10:0;;;;;;;;;;;;-1:-1:-1;;;40195:10:0;;;;;;40164:53;40242:5;40227:12;40283:78;40290:9;;40283:78;;40316:8;;;;:::i;:::-;;-1:-1:-1;40339:10:0;;-1:-1:-1;40347:2:0;40339:10;;:::i;:::-;;;40283:78;;;40371:19;40403:6;40393:17;;;;;;-1:-1:-1;;;40393:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40393:17:0;;40371:39;;40421:154;40428:10;;40421:154;;40455:11;40465:1;40455:11;;:::i;:::-;;-1:-1:-1;40524:10:0;40532:2;40524:5;:10;:::i;:::-;40511:24;;:2;:24;:::i;:::-;40498:39;;40481:6;40488;40481:14;;;;;;-1:-1:-1;;;40481:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;40481:56:0;;;;;;;;-1:-1:-1;40552:11:0;40561:2;40552:11;;:::i;:::-;;;40421:154;;31405:799;31560:4;31581:15;:2;-1:-1:-1;;;;;31581:13:0;;:15::i;:::-;31577:620;;;31633:2;-1:-1:-1;;;;;31617:36:0;;31654:12;:10;:12::i;:::-;31668:4;31674:7;31683:5;31617:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31617:72:0;;;;;;;;-1:-1:-1;;31617:72:0;;;;;;;;;;;;:::i;:::-;;;31613:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31859:13:0;;31855:272;;31902:60;;-1:-1:-1;;;31902:60:0;;;;;;;:::i;31855:272::-;32077:6;32071:13;32062:6;32058:2;32054:15;32047:38;31613:529;-1:-1:-1;;;;;;31740:51:0;-1:-1:-1;;;31740:51:0;;-1:-1:-1;31733:58:0;;31577:620;-1:-1:-1;32181:4:0;31405:799;;;;;;:::o;8232:387::-;8555:20;8603:8;;;8232:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;:::-;957:41;876:128;-1:-1:-1;;;876:128:1:o;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:257::-;;3769:2;3757:9;3748:7;3744:23;3740:32;3737:2;;;3790:6;3782;3775:22;3737:2;3834:9;3821:23;3853:32;3879:5;3853:32;:::i;3920:261::-;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4100:9;4094:16;4119:32;4145:5;4119:32;:::i;4186:482::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4407:18;4399:6;4396:30;4393:2;;;4444:6;4436;4429:22;4393:2;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:2:1;;4559:6;4551;4544:22;4503:2;4587:75;4654:7;4649:2;4636:16;4631:2;4627;4623:11;4587:75;:::i;4673:190::-;;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;-1:-1:-1;4834:23:1;;4743:120;-1:-1:-1;4743:120:1:o;4868:259::-;;4949:5;4943:12;4976:6;4971:3;4964:19;4992:63;5048:6;5041:4;5036:3;5032:14;5025:4;5018:5;5014:16;4992:63;:::i;:::-;5109:2;5088:15;-1:-1:-1;;5084:29:1;5075:39;;;;5116:4;5071:50;;4919:208;-1:-1:-1;;4919:208:1:o;5132:187::-;;5214:5;5208:12;5229:52;5274:6;5269:3;5262:4;5255:5;5251:16;5229:52;:::i;:::-;5297:16;;;;;5184:135;-1:-1:-1;;5184:135:1:o;5324:120::-;-1:-1:-1;;;5391:20:1;;5436:1;5427:11;;5381:63::o;5449:1315::-;5784:13;;5449:1315;;;;5857:1;5842:17;;5878:1;5914:18;;;;5941:2;;5995:4;5987:6;5983:17;5973:27;;5941:2;6021;6069;6061:6;6058:14;6038:18;6035:38;6032:2;;;-1:-1:-1;;;6096:33:1;;6152:4;6149:1;6142:15;6182:4;6103:3;6170:17;6032:2;6213:18;6240:104;;;;6358:1;6353:324;;;;6206:471;;6240:104;-1:-1:-1;;6273:24:1;;6261:37;;6318:16;;;;-1:-1:-1;6240:104:1;;6353:324;6389:39;6421:6;6389:39;:::i;:::-;6450:3;6466:165;6480:6;6477:1;6474:13;6466:165;;;6558:14;;6545:11;;;6538:35;6601:16;;;;6495:10;;6466:165;;;6470:3;;6660:6;6655:3;6651:16;6644:23;;6206:471;;;;;;;6693:65;6725:32;6753:3;6745:6;6725:32;:::i;:::-;6693:65;:::i;:::-;6686:72;5734:1030;-1:-1:-1;;;;;5734:1030:1:o;6769:203::-;-1:-1:-1;;;;;6933:32:1;;;;6915:51;;6903:2;6888:18;;6870:102::o;6977:490::-;-1:-1:-1;;;;;7246:15:1;;;7228:34;;7298:15;;7293:2;7278:18;;7271:43;7345:2;7330:18;;7323:34;;;7393:3;7388:2;7373:18;;7366:31;;;6977:490;;7414:47;;7441:19;;7433:6;7414:47;:::i;:::-;7406:55;7180:287;-1:-1:-1;;;;;;7180:287:1:o;7472:187::-;7637:14;;7630:22;7612:41;;7600:2;7585:18;;7567:92::o;7664:221::-;;7813:2;7802:9;7795:21;7833:46;7875:2;7864:9;7860:18;7852:6;7833:46;:::i;7890:401::-;8092:2;8074:21;;;8131:2;8111:18;;;8104:30;8170:34;8165:2;8150:18;;8143:62;-1:-1:-1;;;8236:2:1;8221:18;;8214:35;8281:3;8266:19;;8064:227::o;8296:414::-;8498:2;8480:21;;;8537:2;8517:18;;;8510:30;8576:34;8571:2;8556:18;;8549:62;-1:-1:-1;;;8642:2:1;8627:18;;8620:48;8700:3;8685:19;;8470:240::o;8715:402::-;8917:2;8899:21;;;8956:2;8936:18;;;8929:30;8995:34;8990:2;8975:18;;8968:62;-1:-1:-1;;;9061:2:1;9046:18;;9039:36;9107:3;9092:19;;8889:228::o;9122:352::-;9324:2;9306:21;;;9363:2;9343:18;;;9336:30;9402;9397:2;9382:18;;9375:58;9465:2;9450:18;;9296:178::o;9479:400::-;9681:2;9663:21;;;9720:2;9700:18;;;9693:30;9759:34;9754:2;9739:18;;9732:62;-1:-1:-1;;;9825:2:1;9810:18;;9803:34;9869:3;9854:19;;9653:226::o;9884:349::-;10086:2;10068:21;;;10125:2;10105:18;;;10098:30;10164:27;10159:2;10144:18;;10137:55;10224:2;10209:18;;10058:175::o;10238:343::-;10440:2;10422:21;;;10479:2;10459:18;;;10452:30;-1:-1:-1;;;10513:2:1;10498:18;;10491:49;10572:2;10557:18;;10412:169::o;10586:408::-;10788:2;10770:21;;;10827:2;10807:18;;;10800:30;10866:34;10861:2;10846:18;;10839:62;-1:-1:-1;;;10932:2:1;10917:18;;10910:42;10984:3;10969:19;;10760:234::o;10999:404::-;11201:2;11183:21;;;11240:2;11220:18;;;11213:30;11279:34;11274:2;11259:18;;11252:62;-1:-1:-1;;;11345:2:1;11330:18;;11323:38;11393:3;11378:19;;11173:230::o;11408:401::-;11610:2;11592:21;;;11649:2;11629:18;;;11622:30;11688:34;11683:2;11668:18;;11661:62;-1:-1:-1;;;11754:2:1;11739:18;;11732:35;11799:3;11784:19;;11582:227::o;11814:420::-;12016:2;11998:21;;;12055:2;12035:18;;;12028:30;12094:34;12089:2;12074:18;;12067:62;12165:26;12160:2;12145:18;;12138:54;12224:3;12209:19;;11988:246::o;12239:406::-;12441:2;12423:21;;;12480:2;12460:18;;;12453:30;12519:34;12514:2;12499:18;;12492:62;-1:-1:-1;;;12585:2:1;12570:18;;12563:40;12635:3;12620:19;;12413:232::o;12650:405::-;12852:2;12834:21;;;12891:2;12871:18;;;12864:30;12930:34;12925:2;12910:18;;12903:62;-1:-1:-1;;;12996:2:1;12981:18;;12974:39;13045:3;13030:19;;12824:231::o;13060:426::-;13262:2;13244:21;;;13301:2;13281:18;;;13274:30;13340:34;13335:2;13320:18;;13313:62;13411:32;13406:2;13391:18;;13384:60;13476:3;13461:19;;13234:252::o;13491:356::-;13693:2;13675:21;;;13712:18;;;13705:30;13771:34;13766:2;13751:18;;13744:62;13838:2;13823:18;;13665:182::o;13852:408::-;14054:2;14036:21;;;14093:2;14073:18;;;14066:30;14132:34;14127:2;14112:18;;14105:62;-1:-1:-1;;;14198:2:1;14183:18;;14176:42;14250:3;14235:19;;14026:234::o;14265:356::-;14467:2;14449:21;;;14486:18;;;14479:30;14545:34;14540:2;14525:18;;14518:62;14612:2;14597:18;;14439:182::o;14626:405::-;14828:2;14810:21;;;14867:2;14847:18;;;14840:30;14906:34;14901:2;14886:18;;14879:62;-1:-1:-1;;;14972:2:1;14957:18;;14950:39;15021:3;15006:19;;14800:231::o;15036:397::-;15238:2;15220:21;;;15277:2;15257:18;;;15250:30;15316:34;15311:2;15296:18;;15289:62;-1:-1:-1;;;15382:2:1;15367:18;;15360:31;15423:3;15408:19;;15210:223::o;15438:402::-;15640:2;15622:21;;;15679:2;15659:18;;;15652:30;15718:34;15713:2;15698:18;;15691:62;-1:-1:-1;;;15784:2:1;15769:18;;15762:36;15830:3;15815:19;;15612:228::o;15845:413::-;16047:2;16029:21;;;16086:2;16066:18;;;16059:30;16125:34;16120:2;16105:18;;16098:62;-1:-1:-1;;;16191:2:1;16176:18;;16169:47;16248:3;16233:19;;16019:239::o;16263:177::-;16409:25;;;16397:2;16382:18;;16364:76::o;16445:129::-;;16513:17;;;16563:4;16547:21;;;16503:71::o;16579:128::-;;16650:1;16646:6;16643:1;16640:13;16637:2;;;16656:18;;:::i;:::-;-1:-1:-1;16692:9:1;;16627:80::o;16712:120::-;;16778:1;16768:2;;16783:18;;:::i;:::-;-1:-1:-1;16817:9:1;;16758:74::o;16837:168::-;;16943:1;16939;16935:6;16931:14;16928:1;16925:21;16920:1;16913:9;16906:17;16902:45;16899:2;;;16950:18;;:::i;:::-;-1:-1:-1;16990:9:1;;16889:116::o;17010:125::-;;17078:1;17075;17072:8;17069:2;;;17083:18;;:::i;:::-;-1:-1:-1;17120:9:1;;17059:76::o;17140:258::-;17212:1;17222:113;17236:6;17233:1;17230:13;17222:113;;;17312:11;;;17306:18;17293:11;;;17286:39;17258:2;17251:10;17222:113;;;17353:6;17350:1;17347:13;17344:2;;;-1:-1:-1;;17388:1:1;17370:16;;17363:27;17193:205::o;17403:380::-;17488:1;17478:12;;17535:1;17525:12;;;17546:2;;17600:4;17592:6;17588:17;17578:27;;17546:2;17653;17645:6;17642:14;17622:18;17619:38;17616:2;;;17699:10;17694:3;17690:20;17687:1;17680:31;17734:4;17731:1;17724:15;17762:4;17759:1;17752:15;17616:2;;17458:325;;;:::o;17788:135::-;;-1:-1:-1;;17848:17:1;;17845:2;;;17868:18;;:::i;:::-;-1:-1:-1;17915:1:1;17904:13;;17835:88::o;17928:112::-;;17986:1;17976:2;;17991:18;;:::i;:::-;-1:-1:-1;18025:9:1;;17966:74::o;18045:127::-;18106:10;18101:3;18097:20;18094:1;18087:31;18137:4;18134:1;18127:15;18161:4;18158:1;18151:15;18177:127;18238:10;18233:3;18229:20;18226:1;18219:31;18269:4;18266:1;18259:15;18293:4;18290:1;18283:15;18309:127;18370:10;18365:3;18361:20;18358:1;18351:31;18401:4;18398:1;18391:15;18425:4;18422:1;18415:15;18441:133;-1:-1:-1;;;;;;18517:32:1;;18507:43;;18497:2;;18564:1;18561;18554:12
Swarm Source
ipfs://69c7ab2a603adadca57283369fb45cdc8b2296ed4c1c5a5be04b9892b29c92de
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.