ERC-721
Overview
Max Total Supply
160 NOIR
Holders
99
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NOIRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CYBERPUNKNOIR
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-28 */ /** _______ ______ ______ _____ _____ _ _ _ _ _ __ _ _ ____ _____ _____ / ____\ \ / / _ \| ____| __ \| __ \| | | | \ | | |/ / | \ | |/ __ \_ _| __ \ | | \ \_/ /| |_) | |__ | |__) | |__) | | | | \| | ' / | \| | | | || | | |__) | | | \ / | _ <| __| | _ /| ___/| | | | . ` | < | . ` | | | || | | _ / | |____ | | | |_) | |____| | \ \| | | |__| | |\ | . \ | |\ | |__| || |_| | \ \ \_____| |_| |____/|______|_| \_\_| \____/|_| \_|_|\_\ |_| \_|\____/_____|_| \_\ */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender() , "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.7; contract CYBERPUNKNOIR is ERC721A, Ownable { using Strings for uint256; string private uriPrefix ; string private uriSuffix = ".json"; string public hiddenURL; uint256 public cost = 0.003 ether; uint16 public maxSupply = 160; uint8 public maxMintAmountPerTx = 2; uint8 public maxFreeMintAmountPerWallet = 0; bool public paused = true; bool public reveal =false; mapping (address => uint8) public NFTPerPublicAddress; constructor() ERC721A("CYBERPUNK NOIR", "NOIR") { } function mint(uint8 _mintAmount) external payable { uint16 totalSupply = uint16(totalSupply()); uint8 nft = NFTPerPublicAddress[msg.sender]; require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction."); require(!paused, "The contract is paused!"); if(nft >= maxFreeMintAmountPerWallet) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); } else { uint8 costAmount = _mintAmount + nft; if(costAmount > maxFreeMintAmountPerWallet) { costAmount = costAmount - maxFreeMintAmountPerWallet; require(msg.value >= cost * costAmount, "Insufficient funds!"); } } _safeMint(msg.sender , _mintAmount); NFTPerPublicAddress[msg.sender] = _mintAmount + nft; delete totalSupply; delete _mintAmount; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{ maxFreeMintAmountPerWallet = _limit; delete _limit; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","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":"cost","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":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a91906200012a565b50660aa87bee538000600c55600d805465ffffffffffff19166401000200a01790553480156200005757600080fd5b50604080518082018252600e81526d21aca122a9282aa725902727a4a960911b6020808301918252835180850190945260048452632727a4a960e11b908401528151919291620000aa916002916200012a565b508051620000c09060039060208401906200012a565b50506000805550620000d233620000d8565b6200020d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013890620001d0565b90600052602060002090601f0160209004810192826200015c5760008555620001a7565b82601f106200017757805160ff1916838001178555620001a7565b82800160010185558215620001a7579182015b82811115620001a75782518255916020019190600101906200018a565b50620001b5929150620001b9565b5090565b5b80821115620001b55760008155600101620001ba565b600181811c90821680620001e557607f821691505b602082108114156200020757634e487b7160e01b600052602260045260246000fd5b50919050565b6122f4806200021d6000396000f3fe60806040526004361061021a5760003560e01c80636ecd230611610123578063aa062290116100ab578063e94053c71161006f578063e94053c71461062c578063e985e9c51461065c578063eef440af146106a5578063f2fde38b146106ba578063f8bf5172146106da57600080fd5b8063aa0622901461057e578063b88d4fde1461059e578063c87b56dd146105be578063cffb6e20146105de578063d5abeb01146105fe57600080fd5b80638da5cb5b116100f25780638da5cb5b146104d657806394354fd0146104f457806395d89b4114610526578063a22cb4651461053b578063a475b5dd1461055b57600080fd5b80636ecd23061461046e57806370a0823114610481578063715018a6146104a15780637ec4a659146104b657600080fd5b80632f6f98e1116101a657806342842e0e1161017557806342842e0e146103cc57806344a0d68a146103ec5780634d9c18481461040c5780635c975abb1461042c5780636352211e1461044e57600080fd5b80632f6f98e11461036d57806337a66d851461038d5780633bd64968146103a25780633ccfd60b146103b757600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780631067fcc7146102f057806313faede61461031057806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306421c2f1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dd4565b6106fb565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611e57565b61074d565b005b34801561028257600080fd5b5061028b610798565b60405161024b9190612075565b3480156102a457600080fd5b506102b86102b3366004611e8e565b61082a565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb366004611daa565b61086e565b3480156102fc57600080fd5b5061027461030b366004611e0e565b6108fc565b34801561031c57600080fd5b50610326600c5481565b60405190815260200161024b565b34801561034057600080fd5b5060015460005403610326565b34801561035957600080fd5b50610274610368366004611cb6565b61093d565b34801561037957600080fd5b50610274610388366004611e72565b610948565b34801561039957600080fd5b506102746109c5565b3480156103ae57600080fd5b50610274610a12565b3480156103c357600080fd5b50610274610a61565b3480156103d857600080fd5b506102746103e7366004611cb6565b610aba565b3480156103f857600080fd5b50610274610407366004611e8e565b610ad5565b34801561041857600080fd5b50610274610427366004611ea7565b610b04565b34801561043857600080fd5b50600d5461023f90640100000000900460ff1681565b34801561045a57600080fd5b506102b8610469366004611e8e565b610b4e565b61027461047c366004611ea7565b610b60565b34801561048d57600080fd5b5061032661049c366004611c68565b610dc7565b3480156104ad57600080fd5b50610274610e16565b3480156104c257600080fd5b506102746104d1366004611e0e565b610e4c565b3480156104e257600080fd5b506008546001600160a01b03166102b8565b34801561050057600080fd5b50600d546105149062010000900460ff1681565b60405160ff909116815260200161024b565b34801561053257600080fd5b5061028b610e89565b34801561054757600080fd5b50610274610556366004611d6e565b610e98565b34801561056757600080fd5b50600d5461023f9065010000000000900460ff1681565b34801561058a57600080fd5b50610274610599366004611ea7565b610f2e565b3480156105aa57600080fd5b506102746105b9366004611cf2565b610f76565b3480156105ca57600080fd5b5061028b6105d9366004611e8e565b610fc7565b3480156105ea57600080fd5b506102746105f9366004611ec2565b61113a565b34801561060a57600080fd5b50600d546106199061ffff1681565b60405161ffff909116815260200161024b565b34801561063857600080fd5b50610514610647366004611c68565b600e6020526000908152604090205460ff1681565b34801561066857600080fd5b5061023f610677366004611c83565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b157600080fd5b5061028b611214565b3480156106c657600080fd5b506102746106d5366004611c68565b6112a2565b3480156106e657600080fd5b50600d54610514906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061072c57506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790612088565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546107a7906121e6565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906121e6565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b60006108358261133d565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087982610b4e565b9050806001600160a01b0316836001600160a01b031614156108ae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ce57506108cc8133610677565b155b156108ec576040516367d9dca160e11b815260040160405180910390fd5b6108f7838383611368565b505050565b6008546001600160a01b031633146109265760405162461bcd60e51b815260040161077790612088565b805161093990600b906020840190611b1a565b5050565b6108f78383836113c4565b6008546001600160a01b031633146109725760405162461bcd60e51b815260040161077790612088565b60006109816001546000540390565b600d5490915061ffff1661099584836120ea565b61ffff1611156109b75760405162461bcd60e51b8152600401610777906120bd565b6108f7828461ffff166115b4565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161077790612088565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b815260040161077790612088565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161077790612088565b6040514790339082156108fc029083906000818181858888f19350505050158015610939573d6000803e3d6000fd5b6108f783838360405180602001604052806000815250610f76565b6008546001600160a01b03163314610aff5760405162461bcd60e51b815260040161077790612088565b600c55565b6008546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161077790612088565b600d805460ff90921663010000000263ff00000019909216919091179055565b6000610b59826115ce565b5192915050565b6000610b6f6001546000540390565b336000908152600e6020526040902054600d5491925060ff9081169161ffff1690610b9c908516846120ea565b61ffff161115610bbe5760405162461bcd60e51b8152600401610777906120bd565b600d5462010000900460ff16610bd48285612128565b60ff161115610c255760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610777565b600d54640100000000900460ff1615610c805760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610777565b600d5460ff6301000000909104811690821610610cf2578260ff16600c54610ca89190612161565b341015610ced5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b610d8a565b6000610cfe8285612128565b600d5490915060ff630100000090910481169082161115610d8857600d54610d30906301000000900460ff1682612197565b90508060ff16600c54610d439190612161565b341015610d885760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b505b610d97338460ff166115b4565b610da18184612128565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610df0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e405760405162461bcd60e51b815260040161077790612088565b610e4a60006116ea565b565b6008546001600160a01b03163314610e765760405162461bcd60e51b815260040161077790612088565b8051610939906009906020840190611b1a565b6060600380546107a7906121e6565b6001600160a01b038216331415610ec25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f585760405162461bcd60e51b815260040161077790612088565b600d805460ff909216620100000262ff000019909216919091179055565b610f818484846113c4565b6001600160a01b0383163b15158015610fa35750610fa18484848461173c565b155b15610fc1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fd28261133d565b6110365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b600d5465010000000000900460ff166110db57600b8054611056906121e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906121e6565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b50505050509050919050565b60006110e5611834565b905060008151116111055760405180602001604052806000815250611133565b8061110f84611843565b600a60405160200161112393929190611f74565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111645760405162461bcd60e51b815260040161077790612088565b60006111736001546000540390565b905060006111848360ff8716612161565b600d5490915061ffff9081169061119e9083908516612110565b11156111bc5760405162461bcd60e51b8152600401610777906120bd565b60005b8381101561120c576111fa8585838181106111dc576111dc61227c565b90506020020160208101906111f19190611c68565b8760ff166115b4565b8061120481612221565b9150506111bf565b505050505050565b600b8054611221906121e6565b80601f016020809104026020016040519081016040528092919081815260200182805461124d906121e6565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b505050505081565b6008546001600160a01b031633146112cc5760405162461bcd60e51b815260040161077790612088565b6001600160a01b0381166113315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61133a816116ea565b50565b6000805482108015610747575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113cf826115ce565b9050836001600160a01b031681600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061142457506114248533610677565b8061143f5750336114348461082a565b6001600160a01b0316145b90508061145f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661148657604051633a954ecd60e21b815260040160405180910390fd5b61149260008487611368565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611568576000548214611568578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610939828260405180602001604052806000815250611941565b6040805160608101825260008082526020820181905291810191909152816000548110156116d157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116cf5780516001600160a01b031615611665579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116ca579392505050565b611665565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611771903390899088908890600401612038565b602060405180830381600087803b15801561178b57600080fd5b505af19250505080156117bb575060408051601f3d908101601f191682019092526117b891810190611df1565b60015b611816573d8080156117e9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ee565b606091505b50805161180e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107a7906121e6565b6060816118675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611891578061187b81612221565b915061188a9050600a8361214d565b915061186b565b60008167ffffffffffffffff8111156118ac576118ac612292565b6040519080825280601f01601f1916602001820160405280156118d6576020820181803683370190505b5090505b841561182c576118eb600183612180565b91506118f8600a8661223c565b611903906030612110565b60f81b8183815181106119185761191861227c565b60200101906001600160f81b031916908160001a90535061193a600a8661214d565b94506118da565b6108f783838360016000546001600160a01b03851661197257604051622e076360e81b815260040160405180910390fd5b836119905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a4257506001600160a01b0387163b15155b15611acb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a93600088848060010195508861173c565b611ab0576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a48578260005414611ac657600080fd5b611b11565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611acc575b506000556115ad565b828054611b26906121e6565b90600052602060002090601f016020900481019282611b485760008555611b8e565b82601f10611b6157805160ff1916838001178555611b8e565b82800160010185558215611b8e579182015b82811115611b8e578251825591602001919060010190611b73565b50611b9a929150611b9e565b5090565b5b80821115611b9a5760008155600101611b9f565b600067ffffffffffffffff80841115611bce57611bce612292565b604051601f8501601f19908116603f01168101908282118183101715611bf657611bf6612292565b81604052809350858152868686011115611c0f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c4057600080fd5b919050565b803561ffff81168114611c4057600080fd5b803560ff81168114611c4057600080fd5b600060208284031215611c7a57600080fd5b61113382611c29565b60008060408385031215611c9657600080fd5b611c9f83611c29565b9150611cad60208401611c29565b90509250929050565b600080600060608486031215611ccb57600080fd5b611cd484611c29565b9250611ce260208501611c29565b9150604084013590509250925092565b60008060008060808587031215611d0857600080fd5b611d1185611c29565b9350611d1f60208601611c29565b925060408501359150606085013567ffffffffffffffff811115611d4257600080fd5b8501601f81018713611d5357600080fd5b611d6287823560208401611bb3565b91505092959194509250565b60008060408385031215611d8157600080fd5b611d8a83611c29565b915060208301358015158114611d9f57600080fd5b809150509250929050565b60008060408385031215611dbd57600080fd5b611dc683611c29565b946020939093013593505050565b600060208284031215611de657600080fd5b8135611133816122a8565b600060208284031215611e0357600080fd5b8151611133816122a8565b600060208284031215611e2057600080fd5b813567ffffffffffffffff811115611e3757600080fd5b8201601f81018413611e4857600080fd5b61182c84823560208401611bb3565b600060208284031215611e6957600080fd5b61113382611c45565b60008060408385031215611e8557600080fd5b611c9f83611c45565b600060208284031215611ea057600080fd5b5035919050565b600060208284031215611eb957600080fd5b61113382611c57565b600080600060408486031215611ed757600080fd5b611ee084611c57565b9250602084013567ffffffffffffffff80821115611efd57600080fd5b818601915086601f830112611f1157600080fd5b813581811115611f2057600080fd5b8760208260051b8501011115611f3557600080fd5b6020830194508093505050509250925092565b60008151808452611f608160208601602086016121ba565b601f01601f19169290920160200192915050565b600084516020611f878285838a016121ba565b855191840191611f9a8184848a016121ba565b8554920191600090600181811c9080831680611fb757607f831692505b858310811415611fd557634e487b7160e01b85526022600452602485fd5b808015611fe95760018114611ffa57612027565b60ff19851688528388019550612027565b60008b81526020902060005b8581101561201f5781548a820152908401908801612006565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206b90830184611f48565b9695505050505050565b6020815260006111336020830184611f48565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff80831681851680830382111561210757612107612250565b01949350505050565b6000821982111561212357612123612250565b500190565b600060ff821660ff84168060ff0382111561214557612145612250565b019392505050565b60008261215c5761215c612266565b500490565b600081600019048311821515161561217b5761217b612250565b500290565b60008282101561219257612192612250565b500390565b600060ff821660ff8416808210156121b1576121b1612250565b90039392505050565b60005b838110156121d55781810151838201526020016121bd565b83811115610fc15750506000910152565b600181811c908216806121fa57607f821691505b6020821081141561221b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223557612235612250565b5060010190565b60008261224b5761224b612266565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133a57600080fdfea2646970667358221220ab4d351ddb19ccca5e8b989426ea7bb84777004fe5efd7672933fcc1e35effb364736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80636ecd230611610123578063aa062290116100ab578063e94053c71161006f578063e94053c71461062c578063e985e9c51461065c578063eef440af146106a5578063f2fde38b146106ba578063f8bf5172146106da57600080fd5b8063aa0622901461057e578063b88d4fde1461059e578063c87b56dd146105be578063cffb6e20146105de578063d5abeb01146105fe57600080fd5b80638da5cb5b116100f25780638da5cb5b146104d657806394354fd0146104f457806395d89b4114610526578063a22cb4651461053b578063a475b5dd1461055b57600080fd5b80636ecd23061461046e57806370a0823114610481578063715018a6146104a15780637ec4a659146104b657600080fd5b80632f6f98e1116101a657806342842e0e1161017557806342842e0e146103cc57806344a0d68a146103ec5780634d9c18481461040c5780635c975abb1461042c5780636352211e1461044e57600080fd5b80632f6f98e11461036d57806337a66d851461038d5780633bd64968146103a25780633ccfd60b146103b757600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780631067fcc7146102f057806313faede61461031057806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306421c2f1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dd4565b6106fb565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611e57565b61074d565b005b34801561028257600080fd5b5061028b610798565b60405161024b9190612075565b3480156102a457600080fd5b506102b86102b3366004611e8e565b61082a565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb366004611daa565b61086e565b3480156102fc57600080fd5b5061027461030b366004611e0e565b6108fc565b34801561031c57600080fd5b50610326600c5481565b60405190815260200161024b565b34801561034057600080fd5b5060015460005403610326565b34801561035957600080fd5b50610274610368366004611cb6565b61093d565b34801561037957600080fd5b50610274610388366004611e72565b610948565b34801561039957600080fd5b506102746109c5565b3480156103ae57600080fd5b50610274610a12565b3480156103c357600080fd5b50610274610a61565b3480156103d857600080fd5b506102746103e7366004611cb6565b610aba565b3480156103f857600080fd5b50610274610407366004611e8e565b610ad5565b34801561041857600080fd5b50610274610427366004611ea7565b610b04565b34801561043857600080fd5b50600d5461023f90640100000000900460ff1681565b34801561045a57600080fd5b506102b8610469366004611e8e565b610b4e565b61027461047c366004611ea7565b610b60565b34801561048d57600080fd5b5061032661049c366004611c68565b610dc7565b3480156104ad57600080fd5b50610274610e16565b3480156104c257600080fd5b506102746104d1366004611e0e565b610e4c565b3480156104e257600080fd5b506008546001600160a01b03166102b8565b34801561050057600080fd5b50600d546105149062010000900460ff1681565b60405160ff909116815260200161024b565b34801561053257600080fd5b5061028b610e89565b34801561054757600080fd5b50610274610556366004611d6e565b610e98565b34801561056757600080fd5b50600d5461023f9065010000000000900460ff1681565b34801561058a57600080fd5b50610274610599366004611ea7565b610f2e565b3480156105aa57600080fd5b506102746105b9366004611cf2565b610f76565b3480156105ca57600080fd5b5061028b6105d9366004611e8e565b610fc7565b3480156105ea57600080fd5b506102746105f9366004611ec2565b61113a565b34801561060a57600080fd5b50600d546106199061ffff1681565b60405161ffff909116815260200161024b565b34801561063857600080fd5b50610514610647366004611c68565b600e6020526000908152604090205460ff1681565b34801561066857600080fd5b5061023f610677366004611c83565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b157600080fd5b5061028b611214565b3480156106c657600080fd5b506102746106d5366004611c68565b6112a2565b3480156106e657600080fd5b50600d54610514906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061072c57506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790612088565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546107a7906121e6565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906121e6565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b60006108358261133d565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087982610b4e565b9050806001600160a01b0316836001600160a01b031614156108ae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ce57506108cc8133610677565b155b156108ec576040516367d9dca160e11b815260040160405180910390fd5b6108f7838383611368565b505050565b6008546001600160a01b031633146109265760405162461bcd60e51b815260040161077790612088565b805161093990600b906020840190611b1a565b5050565b6108f78383836113c4565b6008546001600160a01b031633146109725760405162461bcd60e51b815260040161077790612088565b60006109816001546000540390565b600d5490915061ffff1661099584836120ea565b61ffff1611156109b75760405162461bcd60e51b8152600401610777906120bd565b6108f7828461ffff166115b4565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161077790612088565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b815260040161077790612088565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161077790612088565b6040514790339082156108fc029083906000818181858888f19350505050158015610939573d6000803e3d6000fd5b6108f783838360405180602001604052806000815250610f76565b6008546001600160a01b03163314610aff5760405162461bcd60e51b815260040161077790612088565b600c55565b6008546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161077790612088565b600d805460ff90921663010000000263ff00000019909216919091179055565b6000610b59826115ce565b5192915050565b6000610b6f6001546000540390565b336000908152600e6020526040902054600d5491925060ff9081169161ffff1690610b9c908516846120ea565b61ffff161115610bbe5760405162461bcd60e51b8152600401610777906120bd565b600d5462010000900460ff16610bd48285612128565b60ff161115610c255760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610777565b600d54640100000000900460ff1615610c805760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610777565b600d5460ff6301000000909104811690821610610cf2578260ff16600c54610ca89190612161565b341015610ced5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b610d8a565b6000610cfe8285612128565b600d5490915060ff630100000090910481169082161115610d8857600d54610d30906301000000900460ff1682612197565b90508060ff16600c54610d439190612161565b341015610d885760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b505b610d97338460ff166115b4565b610da18184612128565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610df0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e405760405162461bcd60e51b815260040161077790612088565b610e4a60006116ea565b565b6008546001600160a01b03163314610e765760405162461bcd60e51b815260040161077790612088565b8051610939906009906020840190611b1a565b6060600380546107a7906121e6565b6001600160a01b038216331415610ec25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f585760405162461bcd60e51b815260040161077790612088565b600d805460ff909216620100000262ff000019909216919091179055565b610f818484846113c4565b6001600160a01b0383163b15158015610fa35750610fa18484848461173c565b155b15610fc1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fd28261133d565b6110365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b600d5465010000000000900460ff166110db57600b8054611056906121e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906121e6565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b50505050509050919050565b60006110e5611834565b905060008151116111055760405180602001604052806000815250611133565b8061110f84611843565b600a60405160200161112393929190611f74565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111645760405162461bcd60e51b815260040161077790612088565b60006111736001546000540390565b905060006111848360ff8716612161565b600d5490915061ffff9081169061119e9083908516612110565b11156111bc5760405162461bcd60e51b8152600401610777906120bd565b60005b8381101561120c576111fa8585838181106111dc576111dc61227c565b90506020020160208101906111f19190611c68565b8760ff166115b4565b8061120481612221565b9150506111bf565b505050505050565b600b8054611221906121e6565b80601f016020809104026020016040519081016040528092919081815260200182805461124d906121e6565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b505050505081565b6008546001600160a01b031633146112cc5760405162461bcd60e51b815260040161077790612088565b6001600160a01b0381166113315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61133a816116ea565b50565b6000805482108015610747575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113cf826115ce565b9050836001600160a01b031681600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061142457506114248533610677565b8061143f5750336114348461082a565b6001600160a01b0316145b90508061145f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661148657604051633a954ecd60e21b815260040160405180910390fd5b61149260008487611368565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611568576000548214611568578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610939828260405180602001604052806000815250611941565b6040805160608101825260008082526020820181905291810191909152816000548110156116d157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116cf5780516001600160a01b031615611665579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116ca579392505050565b611665565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611771903390899088908890600401612038565b602060405180830381600087803b15801561178b57600080fd5b505af19250505080156117bb575060408051601f3d908101601f191682019092526117b891810190611df1565b60015b611816573d8080156117e9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ee565b606091505b50805161180e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107a7906121e6565b6060816118675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611891578061187b81612221565b915061188a9050600a8361214d565b915061186b565b60008167ffffffffffffffff8111156118ac576118ac612292565b6040519080825280601f01601f1916602001820160405280156118d6576020820181803683370190505b5090505b841561182c576118eb600183612180565b91506118f8600a8661223c565b611903906030612110565b60f81b8183815181106119185761191861227c565b60200101906001600160f81b031916908160001a90535061193a600a8661214d565b94506118da565b6108f783838360016000546001600160a01b03851661197257604051622e076360e81b815260040160405180910390fd5b836119905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a4257506001600160a01b0387163b15155b15611acb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a93600088848060010195508861173c565b611ab0576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a48578260005414611ac657600080fd5b611b11565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611acc575b506000556115ad565b828054611b26906121e6565b90600052602060002090601f016020900481019282611b485760008555611b8e565b82601f10611b6157805160ff1916838001178555611b8e565b82800160010185558215611b8e579182015b82811115611b8e578251825591602001919060010190611b73565b50611b9a929150611b9e565b5090565b5b80821115611b9a5760008155600101611b9f565b600067ffffffffffffffff80841115611bce57611bce612292565b604051601f8501601f19908116603f01168101908282118183101715611bf657611bf6612292565b81604052809350858152868686011115611c0f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c4057600080fd5b919050565b803561ffff81168114611c4057600080fd5b803560ff81168114611c4057600080fd5b600060208284031215611c7a57600080fd5b61113382611c29565b60008060408385031215611c9657600080fd5b611c9f83611c29565b9150611cad60208401611c29565b90509250929050565b600080600060608486031215611ccb57600080fd5b611cd484611c29565b9250611ce260208501611c29565b9150604084013590509250925092565b60008060008060808587031215611d0857600080fd5b611d1185611c29565b9350611d1f60208601611c29565b925060408501359150606085013567ffffffffffffffff811115611d4257600080fd5b8501601f81018713611d5357600080fd5b611d6287823560208401611bb3565b91505092959194509250565b60008060408385031215611d8157600080fd5b611d8a83611c29565b915060208301358015158114611d9f57600080fd5b809150509250929050565b60008060408385031215611dbd57600080fd5b611dc683611c29565b946020939093013593505050565b600060208284031215611de657600080fd5b8135611133816122a8565b600060208284031215611e0357600080fd5b8151611133816122a8565b600060208284031215611e2057600080fd5b813567ffffffffffffffff811115611e3757600080fd5b8201601f81018413611e4857600080fd5b61182c84823560208401611bb3565b600060208284031215611e6957600080fd5b61113382611c45565b60008060408385031215611e8557600080fd5b611c9f83611c45565b600060208284031215611ea057600080fd5b5035919050565b600060208284031215611eb957600080fd5b61113382611c57565b600080600060408486031215611ed757600080fd5b611ee084611c57565b9250602084013567ffffffffffffffff80821115611efd57600080fd5b818601915086601f830112611f1157600080fd5b813581811115611f2057600080fd5b8760208260051b8501011115611f3557600080fd5b6020830194508093505050509250925092565b60008151808452611f608160208601602086016121ba565b601f01601f19169290920160200192915050565b600084516020611f878285838a016121ba565b855191840191611f9a8184848a016121ba565b8554920191600090600181811c9080831680611fb757607f831692505b858310811415611fd557634e487b7160e01b85526022600452602485fd5b808015611fe95760018114611ffa57612027565b60ff19851688528388019550612027565b60008b81526020902060005b8581101561201f5781548a820152908401908801612006565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206b90830184611f48565b9695505050505050565b6020815260006111336020830184611f48565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff80831681851680830382111561210757612107612250565b01949350505050565b6000821982111561212357612123612250565b500190565b600060ff821660ff84168060ff0382111561214557612145612250565b019392505050565b60008261215c5761215c612266565b500490565b600081600019048311821515161561217b5761217b612250565b500290565b60008282101561219257612192612250565b500390565b600060ff821660ff8416808210156121b1576121b1612250565b90039392505050565b60005b838110156121d55781810151838201526020016121bd565b83811115610fc15750506000910152565b600181811c908216806121fa57607f821691505b6020821081141561221b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223557612235612250565b5060010190565b60008261224b5761224b612266565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133a57600080fdfea2646970667358221220ab4d351ddb19ccca5e8b989426ea7bb84777004fe5efd7672933fcc1e35effb364736f6c63430008070033
Deployed Bytecode Sourcemap
44919:4033:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25243:305;;;;;;;;;;-1:-1:-1;25243:305:0;;;;;:::i;:::-;;:::i;:::-;;;8357:14:1;;8350:22;8332:41;;8320:2;8305:18;25243:305:0;;;;;;;;47361:97;;;;;;;;;;-1:-1:-1;47361:97:0;;;;;:::i;:::-;;:::i;:::-;;28356:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29859:204::-;;;;;;;;;;-1:-1:-1;29859:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7655:32:1;;;7637:51;;7625:2;7610:18;29859:204:0;7491:203:1;29422:371:0;;;;;;;;;;-1:-1:-1;29422:371:0;;;;;:::i;:::-;;:::i;48235:102::-;;;;;;;;;;-1:-1:-1;48235:102:0;;;;;:::i;:::-;;:::i;45112:33::-;;;;;;;;;;;;;;;;;;;11536:25:1;;;11524:2;11509:18;45112:33:0;11390:177:1;24492:303:0;;;;;;;;;;-1:-1:-1;24746:12:0;;24536:7;24730:13;:28;24492:303;;30724:170;;;;;;;;;;-1:-1:-1;30724:170:0;;;;;:::i;:::-;;:::i;46545:326::-;;;;;;;;;;-1:-1:-1;46545:326:0;;;;;:::i;:::-;;:::i;48345:74::-;;;;;;;;;;;;;:::i;48506:70::-;;;;;;;;;;;;;:::i;48700:144::-;;;;;;;;;;;;;:::i;30965:185::-;;;;;;;;;;-1:-1:-1;30965:185:0;;;;;:::i;:::-;;:::i;48425:76::-;;;;;;;;;;-1:-1:-1;48425:76:0;;;;;:::i;:::-;;:::i;47976:134::-;;;;;;;;;;-1:-1:-1;47976:134:0;;;;;:::i;:::-;;:::i;45349:25::-;;;;;;;;;;-1:-1:-1;45349:25:0;;;;;;;;;;;28164:125;;;;;;;;;;-1:-1:-1;28164:125:0;;;;;:::i;:::-;;:::i;45561:976::-;;;;;;:::i;:::-;;:::i;25612:206::-;;;;;;;;;;-1:-1:-1;25612:206:0;;;;;:::i;:::-;;:::i;44065:103::-;;;;;;;;;;;;;:::i;48128:102::-;;;;;;;;;;-1:-1:-1;48128:102:0;;;;;:::i;:::-;;:::i;43413:87::-;;;;;;;;;;-1:-1:-1;43486:6:0;;-1:-1:-1;;;;;43486:6:0;43413:87;;45193:35;;;;;;;;;;-1:-1:-1;45193:35:0;;;;;;;;;;;;;;11744:4:1;11732:17;;;11714:36;;11702:2;11687:18;45193:35:0;11572:184:1;28525:104:0;;;;;;;;;;;;;:::i;30135:287::-;;;;;;;;;;-1:-1:-1;30135:287:0;;;;;:::i;:::-;;:::i;45379:25::-;;;;;;;;;;-1:-1:-1;45379:25:0;;;;;;;;;;;48582:107;;;;;;;;;;-1:-1:-1;48582:107:0;;;;;:::i;:::-;;:::i;31221:369::-;;;;;;;;;;-1:-1:-1;31221:369:0;;;;;:::i;:::-;;:::i;47473:490::-;;;;;;;;;;-1:-1:-1;47473:490:0;;;;;:::i;:::-;;:::i;46877:473::-;;;;;;;;;;-1:-1:-1;46877:473:0;;;;;:::i;:::-;;:::i;45159:29::-;;;;;;;;;;-1:-1:-1;45159:29:0;;;;;;;;;;;11371:6:1;11359:19;;;11341:38;;11329:2;11314:18;45159:29:0;11197:188:1;45412:53:0;;;;;;;;;;-1:-1:-1;45412:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30493:164;;;;;;;;;;-1:-1:-1;30493:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30614:25:0;;;30590:4;30614:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30493:164;45072:23;;;;;;;;;;;;;:::i;44323:201::-;;;;;;;;;;-1:-1:-1;44323:201:0;;;;;:::i;:::-;;:::i;45235:43::-;;;;;;;;;;-1:-1:-1;45235:43:0;;;;;;;;;;;25243:305;25345:4;-1:-1:-1;;;;;;25382:40:0;;-1:-1:-1;;;25382:40:0;;:105;;-1:-1:-1;;;;;;;25439:48:0;;-1:-1:-1;;;25439:48:0;25382:105;:158;;;-1:-1:-1;;;;;;;;;;15277:40:0;;;25504:36;25362:178;25243:305;-1:-1:-1;;25243:305:0:o;47361:97::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;;;;;;;;;47430:9:::1;:22:::0;;-1:-1:-1;;47430:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47361:97::o;28356:100::-;28410:13;28443:5;28436:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28356:100;:::o;29859:204::-;29927:7;29952:16;29960:7;29952;:16::i;:::-;29947:64;;29977:34;;-1:-1:-1;;;29977:34:0;;;;;;;;;;;29947:64;-1:-1:-1;30031:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30031:24:0;;29859:204::o;29422:371::-;29495:13;29511:24;29527:7;29511:15;:24::i;:::-;29495:40;;29556:5;-1:-1:-1;;;;;29550:11:0;:2;-1:-1:-1;;;;;29550:11:0;;29546:48;;;29570:24;;-1:-1:-1;;;29570:24:0;;;;;;;;;;;29546:48;3718:10;-1:-1:-1;;;;;29611:21:0;;;;;;:63;;-1:-1:-1;29637:37:0;29654:5;3718:10;30493:164;:::i;29637:37::-;29636:38;29611:63;29607:138;;;29698:35;;-1:-1:-1;;;29698:35:0;;;;;;;;;;;29607:138;29757:28;29766:2;29770:7;29779:5;29757:8;:28::i;:::-;29484:309;29422:371;;:::o;48235:102::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;48309:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48235:102:::0;:::o;30724:170::-;30858:28;30868:4;30874:2;30878:7;30858:9;:28::i;46545:326::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;46628:18:::1;46656:13;24746:12:::0;;24536:7;24730:13;:28;;24492:303;46656:13:::1;46714:9;::::0;46628:42;;-1:-1:-1;46714:9:0::1;;46685:25;46699:11:::0;46628:42;46685:25:::1;:::i;:::-;:38;;;;46677:70;;;;-1:-1:-1::0;;;46677:70:0::1;;;;;;;:::i;:::-;46755:34;46765:9;46777:11;46755:34;;:9;:34::i;48345:74::-:0;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;48402:6:::1;::::0;;-1:-1:-1;;48392:16:0;::::1;48402:6:::0;;;;::::1;;;48401:7;48392:16:::0;;::::1;;::::0;;48345:74::o;48506:70::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;48565:6:::1;::::0;;-1:-1:-1;;48555:16:0;::::1;48565:6:::0;;;;::::1;;;48564:7;48555:16:::0;;::::1;;::::0;;48506:70::o;48700:144::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;48789:39:::1;::::0;48760:21:::1;::::0;48797:10:::1;::::0;48789:39;::::1;;;::::0;48760:21;;48744:13:::1;48789:39:::0;48744:13;48789:39;48760:21;48797:10;48789:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;30965:185:::0;31103:39;31120:4;31126:2;31130:7;31103:39;;;;;;;;;;;;:16;:39::i;48425:76::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;48481:4:::1;:12:::0;48425:76::o;47976:134::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;48050:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48050:35:0;;::::1;::::0;;;::::1;::::0;;47976:134::o;28164:125::-;28228:7;28255:21;28268:7;28255:12;:21::i;:::-;:26;;28164:125;-1:-1:-1;;28164:125:0:o;45561:976::-;45620:18;45648:13;24746:12;;24536:7;24730:13;:28;;24492:303;45648:13;45702:10;45670:9;45682:31;;;:19;:31;;;;;;45757:9;;45620:42;;-1:-1:-1;45682:31:0;;;;;45757:9;;;45728:25;;;;45620:42;45728:25;:::i;:::-;:38;;;;45720:70;;;;-1:-1:-1;;;45720:70:0;;;;;;;:::i;:::-;45826:18;;;;;;;45805:17;45819:3;45805:11;:17;:::i;:::-;:39;;;;45797:80;;;;-1:-1:-1;;;45797:80:0;;10694:2:1;45797:80:0;;;10676:21:1;10733:2;10713:18;;;10706:30;10772;10752:18;;;10745:58;10820:18;;45797:80:0;10492:352:1;45797:80:0;45895:6;;;;;;;45894:7;45886:43;;;;-1:-1:-1;;;45886:43:0;;9578:2:1;45886:43:0;;;9560:21:1;9617:2;9597:18;;;9590:30;9656:25;9636:18;;;9629:53;9699:18;;45886:43:0;9376:347:1;45886:43:0;45954:26;;;;;;;;;45947:33;;;;45944:417;;46022:11;46015:18;;:4;;:18;;;;:::i;:::-;46002:9;:31;;45994:63;;;;-1:-1:-1;;;45994:63:0;;11051:2:1;45994:63:0;;;11033:21:1;11090:2;11070:18;;;11063:30;-1:-1:-1;;;11109:18:1;;;11102:49;11168:18;;45994:63:0;10849:343:1;45994:63:0;45944:417;;;46088:16;46107:17;46121:3;46107:11;:17;:::i;:::-;46151:26;;46088:36;;-1:-1:-1;46151:26:0;;;;;;;46138:39;;;;46135:199;;;46224:26;;46211:39;;46224:26;;;;;46211:10;:39;:::i;:::-;46198:52;;46289:10;46282:17;;:4;;:17;;;;:::i;:::-;46269:9;:30;;46261:62;;;;-1:-1:-1;;;46261:62:0;;11051:2:1;46261:62:0;;;11033:21:1;11090:2;11070:18;;;11063:30;-1:-1:-1;;;11109:18:1;;;11102:49;11168:18;;46261:62:0;10849:343:1;46261:62:0;46076:285;45944:417;46377:35;46387:10;46400:11;46377:35;;:9;:35::i;:::-;46455:17;46469:3;46455:11;:17;:::i;:::-;46441:10;46421:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;46421:51:0;;;;;;;;;;;;-1:-1:-1;;;45561:976:0:o;25612:206::-;25676:7;-1:-1:-1;;;;;25700:19:0;;25696:60;;25728:28;;-1:-1:-1;;;25728:28:0;;;;;;;;;;;25696:60;-1:-1:-1;;;;;;25782:19:0;;;;;:12;:19;;;;;:27;;;;25612:206::o;44065:103::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;44130:30:::1;44157:1;44130:18;:30::i;:::-;44065:103::o:0;48128:102::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;48202:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;28525:104::-:0;28581:13;28614:7;28607:14;;;;;:::i;30135:287::-;-1:-1:-1;;;;;30234:24:0;;3718:10;30234:24;30230:54;;;30267:17;;-1:-1:-1;;;30267:17:0;;;;;;;;;;;30230:54;3718:10;30297:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30297:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30297:53:0;;;;;;;;;;30366:48;;8332:41:1;;;30297:42:0;;3718:10;30366:48;;8305:18:1;30366:48:0;;;;;;;30135:287;;:::o;48582:107::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;48654:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48654:27:0;;::::1;::::0;;;::::1;::::0;;48582:107::o;31221:369::-;31388:28;31398:4;31404:2;31408:7;31388:9;:28::i;:::-;-1:-1:-1;;;;;31431:13:0;;5380:19;:23;;31431:76;;;;;31451:56;31482:4;31488:2;31492:7;31501:5;31451:30;:56::i;:::-;31450:57;31431:76;31427:156;;;31531:40;;-1:-1:-1;;;31531:40:0;;;;;;;;;;;31427:156;31221:369;;;;:::o;47473:490::-;47572:13;47613:17;47621:8;47613:7;:17::i;:::-;47597:98;;;;-1:-1:-1;;;47597:98:0;;9930:2:1;47597:98:0;;;9912:21:1;9969:2;9949:18;;;9942:30;10008:34;9988:18;;;9981:62;-1:-1:-1;;;10059:18:1;;;10052:45;10114:19;;47597:98:0;9728:411:1;47597:98:0;47713:6;;;;;;;47708:50;;47745:9;47738:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47473:490;;;:::o;47708:50::-;47772:28;47803:10;:8;:10::i;:::-;47772:41;;47858:1;47833:14;47827:28;:32;:130;;;;;;;;;;;;;;;;;47895:14;47911:19;:8;:17;:19::i;:::-;47932:9;47878:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47827:130;47820:137;47473:490;-1:-1:-1;;;47473:490:0:o;46877:473::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;46977:18:::1;47005:13;24746:12:::0;;24536:7;24730:13;:28;;24492:303;47005:13:::1;46977:42:::0;-1:-1:-1;47027:16:0::1;47048:36;47068:9:::0;47048:36:::1;::::0;::::1;;:::i;:::-;47128:9;::::0;47027:57;;-1:-1:-1;47128:9:0::1;::::0;;::::1;::::0;47099:25:::1;::::0;47027:57;;47099:25;::::1;;:::i;:::-;:38;;47091:70;;;;-1:-1:-1::0;;;47091:70:0::1;;;;;;;:::i;:::-;47174:9;47169:116;47189:20:::0;;::::1;47169:116;;;47231:42;47241:9;;47251:1;47241:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47255:17;47231:42;;:9;:42::i;:::-;47211:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47169:116;;;-1:-1:-1::0;;;;;;46877:473:0:o;45072:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44323:201::-;43486:6;;-1:-1:-1;;;;;43486:6:0;3718:10;43633:23;43625:69;;;;-1:-1:-1;;;43625:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44412:22:0;::::1;44404:73;;;::::0;-1:-1:-1;;;44404:73:0;;8810:2:1;44404:73:0::1;::::0;::::1;8792:21:1::0;8849:2;8829:18;;;8822:30;8888:34;8868:18;;;8861:62;-1:-1:-1;;;8939:18:1;;;8932:36;8985:19;;44404:73:0::1;8608:402:1::0;44404:73:0::1;44488:28;44507:8;44488:18;:28::i;:::-;44323:201:::0;:::o;31845:187::-;31902:4;31966:13;;31956:7;:23;31926:98;;;;-1:-1:-1;;31997:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31997:27:0;;;;31996:28;;31845:187::o;40015:196::-;40130:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40130:29:0;-1:-1:-1;;;;;40130:29:0;;;;;;;;;40175:28;;40130:24;;40175:28;;;;;;;40015:196;;;:::o;34958:2130::-;35073:35;35111:21;35124:7;35111:12;:21::i;:::-;35073:59;;35171:4;-1:-1:-1;;;;;35149:26:0;:13;:18;;;-1:-1:-1;;;;;35149:26:0;;35145:67;;35184:28;;-1:-1:-1;;;35184:28:0;;;;;;;;;;;35145:67;35225:22;3718:10;-1:-1:-1;;;;;35251:20:0;;;;:73;;-1:-1:-1;35288:36:0;35305:4;3718:10;30493:164;:::i;35288:36::-;35251:126;;;-1:-1:-1;3718:10:0;35341:20;35353:7;35341:11;:20::i;:::-;-1:-1:-1;;;;;35341:36:0;;35251:126;35225:153;;35396:17;35391:66;;35422:35;;-1:-1:-1;;;35422:35:0;;;;;;;;;;;35391:66;-1:-1:-1;;;;;35472:16:0;;35468:52;;35497:23;;-1:-1:-1;;;35497:23:0;;;;;;;;;;;35468:52;35641:35;35658:1;35662:7;35671:4;35641:8;:35::i;:::-;-1:-1:-1;;;;;35972:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35972:31:0;;;;;;;-1:-1:-1;;35972:31:0;;;;;;;36018:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36018:29:0;;;;;;;;;;;36098:20;;;:11;:20;;;;;;36133:18;;-1:-1:-1;;;;;;36166:49:0;;;;-1:-1:-1;;;36199:15:0;36166:49;;;;;;;;;;36489:11;;36549:24;;;;;36592:13;;36098:20;;36549:24;;36592:13;36588:384;;36802:13;;36787:11;:28;36783:174;;36840:20;;36909:28;;;;36883:54;;-1:-1:-1;;;36883:54:0;-1:-1:-1;;;;;;36883:54:0;;;-1:-1:-1;;;;;36840:20:0;;36883:54;;;;36783:174;35947:1036;;;37019:7;37015:2;-1:-1:-1;;;;;37000:27:0;37009:4;-1:-1:-1;;;;;37000:27:0;;;;;;;;;;;37038:42;35062:2026;;34958:2130;;;:::o;32040:104::-;32109:27;32119:2;32123:8;32109:27;;;;;;;;;;;;:9;:27::i;26993:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27104:7:0;27187:13;;27180:4;:20;27149:886;;;27221:31;27255:17;;;:11;:17;;;;;;;;;27221:51;;;;;;;;;-1:-1:-1;;;;;27221:51:0;;;;-1:-1:-1;;;27221:51:0;;;;;;;;;;;-1:-1:-1;;;27221:51:0;;;;;;;;;;;;;;27291:729;;27341:14;;-1:-1:-1;;;;;27341:28:0;;27337:101;;27405:9;26993:1109;-1:-1:-1;;;26993:1109:0:o;27337:101::-;-1:-1:-1;;;27780:6:0;27825:17;;;;:11;:17;;;;;;;;;27813:29;;;;;;;;;-1:-1:-1;;;;;27813:29:0;;;;;-1:-1:-1;;;27813:29:0;;;;;;;;;;;-1:-1:-1;;;27813:29:0;;;;;;;;;;;;;27873:28;27869:109;;27941:9;26993:1109;-1:-1:-1;;;26993:1109:0:o;27869:109::-;27740:261;;;27202:833;27149:886;28063:31;;-1:-1:-1;;;28063:31:0;;;;;;;;;;;44684:191;44777:6;;;-1:-1:-1;;;;;44794:17:0;;;-1:-1:-1;;;;;;44794:17:0;;;;;;;44827:40;;44777:6;;;44794:17;44777:6;;44827:40;;44758:16;;44827:40;44747:128;44684:191;:::o;40703:667::-;40887:72;;-1:-1:-1;;;40887:72:0;;40866:4;;-1:-1:-1;;;;;40887:36:0;;;;;:72;;3718:10;;40938:4;;40944:7;;40953:5;;40887:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40887:72:0;;;;;;;;-1:-1:-1;;40887:72:0;;;;;;;;;;;;:::i;:::-;;;40883:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41121:13:0;;41117:235;;41167:40;;-1:-1:-1;;;41167:40:0;;;;;;;;;;;41117:235;41310:6;41304:13;41295:6;41291:2;41287:15;41280:38;40883:480;-1:-1:-1;;;;;;41006:55:0;-1:-1:-1;;;41006:55:0;;-1:-1:-1;40883:480:0;40703:667;;;;;;:::o;48852:97::-;48905:13;48934:9;48927:16;;;;;:::i;1200:723::-;1256:13;1477:10;1473:53;;-1:-1:-1;;1504:10:0;;;;;;;;;;;;-1:-1:-1;;;1504:10:0;;;;;1200:723::o;1473:53::-;1551:5;1536:12;1592:78;1599:9;;1592:78;;1625:8;;;;:::i;:::-;;-1:-1:-1;1648:10:0;;-1:-1:-1;1656:2:0;1648:10;;:::i;:::-;;;1592:78;;;1680:19;1712:6;1702:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1702:17:0;;1680:39;;1730:154;1737:10;;1730:154;;1764:11;1774:1;1764:11;;:::i;:::-;;-1:-1:-1;1833:10:0;1841:2;1833:5;:10;:::i;:::-;1820:24;;:2;:24;:::i;:::-;1807:39;;1790:6;1797;1790:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1790:56:0;;;;;;;;-1:-1:-1;1861:11:0;1870:2;1861:11;;:::i;:::-;;;1730:154;;32507:163;32630:32;32636:2;32640:8;32650:5;32657:4;33068:20;33091:13;-1:-1:-1;;;;;33119:16:0;;33115:48;;33144:19;;-1:-1:-1;;;33144:19:0;;;;;;;;;;;33115:48;33178:13;33174:44;;33200:18;;-1:-1:-1;;;33200:18:0;;;;;;;;;;;33174:44;-1:-1:-1;;;;;33569:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33628:49:0;;33569:44;;;;;;;;33628:49;;;;-1:-1:-1;;33569:44:0;;;;;;33628:49;;;;;;;;;;;;;;;;33694:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33744:66:0;;;;-1:-1:-1;;;33794:15:0;33744:66;;;;;;;;;;33694:25;33891:23;;;33935:4;:23;;;;-1:-1:-1;;;;;;33943:13:0;;5380:19;:23;;33943:15;33931:641;;;33979:314;34010:38;;34035:12;;-1:-1:-1;;;;;34010:38:0;;;34027:1;;34010:38;;34027:1;;34010:38;34076:69;34115:1;34119:2;34123:14;;;;;;34139:5;34076:30;:69::i;:::-;34071:174;;34181:40;;-1:-1:-1;;;34181:40:0;;;;;;;;;;;34071:174;34288:3;34272:12;:19;;33979:314;;34374:12;34357:13;;:29;34353:43;;34388:8;;;34353:43;33931:641;;;34437:120;34468:40;;34493:14;;;;;-1:-1:-1;;;;;34468:40:0;;;34485:1;;34468:40;;34485:1;;34468:40;34552:3;34536:12;:19;;34437:120;;33931:641;-1:-1:-1;34586:13:0;:28;34636:60;31221:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:156;1058:20;;1118:4;1107:16;;1097:27;;1087:55;;1138:1;1135;1128:12;1153:186;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1304:29;1323:9;1304:29;:::i;1344:260::-;1412:6;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:52;;;1489:1;1486;1479:12;1441:52;1512:29;1531:9;1512:29;:::i;:::-;1502:39;;1560:38;1594:2;1583:9;1579:18;1560:38;:::i;:::-;1550:48;;1344:260;;;;;:::o;1609:328::-;1686:6;1694;1702;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1927:2;1916:9;1912:18;1899:32;1889:42;;1609:328;;;;;:::o;1942:666::-;2037:6;2045;2053;2061;2114:3;2102:9;2093:7;2089:23;2085:33;2082:53;;;2131:1;2128;2121:12;2082:53;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;2287:2;2276:9;2272:18;2259:32;2249:42;;2342:2;2331:9;2327:18;2314:32;2369:18;2361:6;2358:30;2355:50;;;2401:1;2398;2391:12;2355:50;2424:22;;2477:4;2469:13;;2465:27;-1:-1:-1;2455:55:1;;2506:1;2503;2496:12;2455:55;2529:73;2594:7;2589:2;2576:16;2571:2;2567;2563:11;2529:73;:::i;:::-;2519:83;;;1942:666;;;;;;;:::o;2613:347::-;2678:6;2686;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;:::-;2768:39;;2857:2;2846:9;2842:18;2829:32;2904:5;2897:13;2890:21;2883:5;2880:32;2870:60;;2926:1;2923;2916:12;2870:60;2949:5;2939:15;;;2613:347;;;;;:::o;2965:254::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3133:29;3152:9;3133:29;:::i;:::-;3123:39;3209:2;3194:18;;;;3181:32;;-1:-1:-1;;;2965:254:1:o;3224:245::-;3282:6;3335:2;3323:9;3314:7;3310:23;3306:32;3303:52;;;3351:1;3348;3341:12;3303:52;3390:9;3377:23;3409:30;3433:5;3409:30;:::i;3474:249::-;3543:6;3596:2;3584:9;3575:7;3571:23;3567:32;3564:52;;;3612:1;3609;3602:12;3564:52;3644:9;3638:16;3663:30;3687:5;3663:30;:::i;3728:450::-;3797:6;3850:2;3838:9;3829:7;3825:23;3821:32;3818:52;;;3866:1;3863;3856:12;3818:52;3906:9;3893:23;3939:18;3931:6;3928:30;3925:50;;;3971:1;3968;3961:12;3925:50;3994:22;;4047:4;4039:13;;4035:27;-1:-1:-1;4025:55:1;;4076:1;4073;4066:12;4025:55;4099:73;4164:7;4159:2;4146:16;4141:2;4137;4133:11;4099:73;:::i;4183:184::-;4241:6;4294:2;4282:9;4273:7;4269:23;4265:32;4262:52;;;4310:1;4307;4300:12;4262:52;4333:28;4351:9;4333:28;:::i;4372:258::-;4439:6;4447;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4539:28;4557:9;4539:28;:::i;4635:180::-;4694:6;4747:2;4735:9;4726:7;4722:23;4718:32;4715:52;;;4763:1;4760;4753:12;4715:52;-1:-1:-1;4786:23:1;;4635:180;-1:-1:-1;4635:180:1:o;4820:182::-;4877:6;4930:2;4918:9;4909:7;4905:23;4901:32;4898:52;;;4946:1;4943;4936:12;4898:52;4969:27;4986:9;4969:27;:::i;5007:685::-;5100:6;5108;5116;5169:2;5157:9;5148:7;5144:23;5140:32;5137:52;;;5185:1;5182;5175:12;5137:52;5208:27;5225:9;5208:27;:::i;:::-;5198:37;;5286:2;5275:9;5271:18;5258:32;5309:18;5350:2;5342:6;5339:14;5336:34;;;5366:1;5363;5356:12;5336:34;5404:6;5393:9;5389:22;5379:32;;5449:7;5442:4;5438:2;5434:13;5430:27;5420:55;;5471:1;5468;5461:12;5420:55;5511:2;5498:16;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5606:7;5601:2;5591:6;5588:1;5584:14;5580:2;5576:23;5572:32;5569:45;5566:65;;;5627:1;5624;5617:12;5566:65;5658:2;5654;5650:11;5640:21;;5680:6;5670:16;;;;;5007:685;;;;;:::o;5697:257::-;5738:3;5776:5;5770:12;5803:6;5798:3;5791:19;5819:63;5875:6;5868:4;5863:3;5859:14;5852:4;5845:5;5841:16;5819:63;:::i;:::-;5936:2;5915:15;-1:-1:-1;;5911:29:1;5902:39;;;;5943:4;5898:50;;5697:257;-1:-1:-1;;5697:257:1:o;5959:1527::-;6183:3;6221:6;6215:13;6247:4;6260:51;6304:6;6299:3;6294:2;6286:6;6282:15;6260:51;:::i;:::-;6374:13;;6333:16;;;;6396:55;6374:13;6333:16;6418:15;;;6396:55;:::i;:::-;6540:13;;6473:20;;;6513:1;;6600;6622:18;;;;6675;;;;6702:93;;6780:4;6770:8;6766:19;6754:31;;6702:93;6843:2;6833:8;6830:16;6810:18;6807:40;6804:167;;;-1:-1:-1;;;6870:33:1;;6926:4;6923:1;6916:15;6956:4;6877:3;6944:17;6804:167;6987:18;7014:110;;;;7138:1;7133:328;;;;6980:481;;7014:110;-1:-1:-1;;7049:24:1;;7035:39;;7094:20;;;;-1:-1:-1;7014:110:1;;7133:328;11834:1;11827:14;;;11871:4;11858:18;;7228:1;7242:169;7256:8;7253:1;7250:15;7242:169;;;7338:14;;7323:13;;;7316:37;7381:16;;;;7273:10;;7242:169;;;7246:3;;7442:8;7435:5;7431:20;7424:27;;6980:481;-1:-1:-1;7477:3:1;;5959:1527;-1:-1:-1;;;;;;;;;;;5959:1527:1:o;7699:488::-;-1:-1:-1;;;;;7968:15:1;;;7950:34;;8020:15;;8015:2;8000:18;;7993:43;8067:2;8052:18;;8045:34;;;8115:3;8110:2;8095:18;;8088:31;;;7893:4;;8136:45;;8161:19;;8153:6;8136:45;:::i;:::-;8128:53;7699:488;-1:-1:-1;;;;;;7699:488:1:o;8384:219::-;8533:2;8522:9;8515:21;8496:4;8553:44;8593:2;8582:9;8578:18;8570:6;8553:44;:::i;9015:356::-;9217:2;9199:21;;;9236:18;;;9229:30;9295:34;9290:2;9275:18;;9268:62;9362:2;9347:18;;9015:356::o;10144:343::-;10346:2;10328:21;;;10385:2;10365:18;;;10358:30;-1:-1:-1;;;10419:2:1;10404:18;;10397:49;10478:2;10463:18;;10144:343::o;11887:224::-;11926:3;11954:6;11987:2;11984:1;11980:10;12017:2;12014:1;12010:10;12048:3;12044:2;12040:12;12035:3;12032:21;12029:47;;;12056:18;;:::i;:::-;12092:13;;11887:224;-1:-1:-1;;;;11887:224:1:o;12116:128::-;12156:3;12187:1;12183:6;12180:1;12177:13;12174:39;;;12193:18;;:::i;:::-;-1:-1:-1;12229:9:1;;12116:128::o;12249:204::-;12287:3;12323:4;12320:1;12316:12;12355:4;12352:1;12348:12;12390:3;12384:4;12380:14;12375:3;12372:23;12369:49;;;12398:18;;:::i;:::-;12434:13;;12249:204;-1:-1:-1;;;12249:204:1:o;12458:120::-;12498:1;12524;12514:35;;12529:18;;:::i;:::-;-1:-1:-1;12563:9:1;;12458:120::o;12583:168::-;12623:7;12689:1;12685;12681:6;12677:14;12674:1;12671:21;12666:1;12659:9;12652:17;12648:45;12645:71;;;12696:18;;:::i;:::-;-1:-1:-1;12736:9:1;;12583:168::o;12756:125::-;12796:4;12824:1;12821;12818:8;12815:34;;;12829:18;;:::i;:::-;-1:-1:-1;12866:9:1;;12756:125::o;12886:195::-;12924:4;12961;12958:1;12954:12;12993:4;12990:1;12986:12;13018:3;13013;13010:12;13007:38;;;13025:18;;:::i;:::-;13062:13;;;12886:195;-1:-1:-1;;;12886:195:1:o;13086:258::-;13158:1;13168:113;13182:6;13179:1;13176:13;13168:113;;;13258:11;;;13252:18;13239:11;;;13232:39;13204:2;13197:10;13168:113;;;13299:6;13296:1;13293:13;13290:48;;;-1:-1:-1;;13334:1:1;13316:16;;13309:27;13086:258::o;13349:380::-;13428:1;13424:12;;;;13471;;;13492:61;;13546:4;13538:6;13534:17;13524:27;;13492:61;13599:2;13591:6;13588:14;13568:18;13565:38;13562:161;;;13645:10;13640:3;13636:20;13633:1;13626:31;13680:4;13677:1;13670:15;13708:4;13705:1;13698:15;13562:161;;13349:380;;;:::o;13734:135::-;13773:3;-1:-1:-1;;13794:17:1;;13791:43;;;13814:18;;:::i;:::-;-1:-1:-1;13861:1:1;13850:13;;13734:135::o;13874:112::-;13906:1;13932;13922:35;;13937:18;;:::i;:::-;-1:-1:-1;13971:9:1;;13874:112::o;13991:127::-;14052:10;14047:3;14043:20;14040:1;14033:31;14083:4;14080:1;14073:15;14107:4;14104:1;14097:15;14123:127;14184:10;14179:3;14175:20;14172:1;14165:31;14215:4;14212:1;14205:15;14239:4;14236:1;14229:15;14255:127;14316:10;14311:3;14307:20;14304:1;14297:31;14347:4;14344:1;14337:15;14371:4;14368:1;14361:15;14387:127;14448:10;14443:3;14439:20;14436:1;14429:31;14479:4;14476:1;14469:15;14503:4;14500:1;14493:15;14519:131;-1:-1:-1;;;;;;14593:32:1;;14583:43;;14573:71;;14640:1;14637;14630:12
Swarm Source
ipfs://ab4d351ddb19ccca5e8b989426ea7bb84777004fe5efd7672933fcc1e35effb3
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.