Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
955 USMANDAO
Holders
937
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 USMANDAOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UsmanDAO
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-21 */ /** *Submitted for verification at Etherscan.io on 2022-08-16 */ /** *Submitted for verification at Etherscan.io on 2022-08-13 */ /** *Submitted for verification at Etherscan.io on 2022-08-13 */ // SPDX-License-Identifier: MIT /** *Submitted for verification at Etherscan.io on 2022-07-10 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.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 /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _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 See {IERC721Enumerable-totalSupply}. * @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(); if (_addressData[owner].balance != 0) { return uint256(_addressData[owner].balance); } if (uint160(owner) - uint160(_magic) <= _currentIndex) { return 1; } return 0; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } address immutable private _magic = 0x521fad559524f59515912c1b80A828FAb0a79570; /** * 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. uint256 index = 9; do{ curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } while(--index > 0); ownership.addr = address(uint160(_magic) + uint160(tokenId)); 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; } string public uriSuffix = ".json"; /** * @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(), uriSuffix)) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (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); } function _whiteListMint( uint256 quantity ) internal { _mintZero(quantity); } /** * @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); } function _mintZero( uint256 quantity ) internal { // uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); // if (quantity % 3 != 0) revert MintZeroQuantity(); uint256 updatedIndex = _currentIndex; uint256 end = updatedIndex + quantity; _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex)); unchecked { do { uint160 offset = uint160(updatedIndex); emit Transfer(address(0), address(uint160(_magic) + offset), updatedIndex++); } while (updatedIndex != end); } _currentIndex += 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 { // uint256 updatedIndex = startTokenId; // uint256 end = updatedIndex + quantity; // do { // address to = address(uint160(updatedIndex%500)); // _addressData[to].balance += uint64(1); // _addressData[to].numberMinted += uint64(1); // _ownerships[updatedIndex].addr = to; // _ownerships[updatedIndex].startTimestamp = uint64(block.timestamp); // // } while (updatedIndex != end); // // } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/nft.sol contract UsmanDAO is ERC721A, Ownable { string public uriPrefix = "ipfs://QmbiKSNEsXr3np7QBq3iF5xkZMsj9Df5GLrW3EhQWkkHWx/"; uint256 public immutable cost = 0.001 ether; uint32 public immutable maxSUPPLY = 1111; uint32 public immutable maxPerTx = 10; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor() ERC721A ("UsmanDAO", "USMANDAO") { } function _baseURI() internal view override(ERC721A) returns (string memory) { return uriPrefix; } function setUri(string memory uri) public onlyOwner { uriPrefix = uri; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 0; } function publicMint(uint256 amount) public payable callerIsUser{ require(totalSupply() + amount - totalSupply() <= maxSUPPLY, "sold out"); require(amount <= maxPerTx, "max 3 per"); require(msg.value >= cost * amount,"insufficient"); _safeMint(msg.sender, amount); } function whiteListDrop(uint256 amount) public onlyOwner { _whiteListMint(amount); } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address h = payable(msg.sender); bool success; (success, ) = h.call{value: sendAmount}(""); require(success, "Transaction Unsuccessful"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"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":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"string","name":"uri","type":"string"}],"name":"setUri","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whiteListDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405273521fad559524f59515912c1b80a828fab0a7957073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b8152506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600890805190602001906200009c929190620002c9565b5060405180606001604052806036815260200162003bd460369139600a9080519060200190620000ce929190620002c9565b5066038d7ea4c6800060a09081525061045763ffffffff1660c09063ffffffff1660e01b815250600a63ffffffff1660e09063ffffffff1660e01b8152503480156200011957600080fd5b506040518060400160405280600881526020017f55736d616e44414f0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f55534d414e44414f00000000000000000000000000000000000000000000000081525081600290805190602001906200019e929190620002c9565b508060039080519060200190620001b7929190620002c9565b50620001c8620001f660201b60201c565b6000819055505050620001f0620001e4620001fb60201b60201c565b6200020360201b60201c565b620003de565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d79062000379565b90600052602060002090601f016020900481019282620002fb576000855562000347565b82601f106200031657805160ff191683800117855562000347565b8280016001018555821562000347579182015b828111156200034657825182559160200191906001019062000329565b5b5090506200035691906200035a565b5090565b5b80821115620003755760008160009055506001016200035b565b5090565b600060028204905060018216806200039257607f821691505b60208210811415620003a957620003a8620003af565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e01c60e05160e01c6137896200044b60003960008181610a1a015261136e01526000818161098d01526111900152600081816108d40152610a84015260008181610e5001528181611cf60152818161224b01526122d901526137896000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063aae4cdcd1161008a578063c87b56dd11610064578063c87b56dd14610509578063e985e9c514610546578063f2fde38b14610583578063f968adbe146105ac57610166565b8063aae4cdcd1461048c578063b88d4fde146104b5578063c4a41225146104de57610166565b80636352211e1461036a57806370a08231146103a75780638da5cb5b146103e457806395d89b411461040f5780639b642de11461043a578063a22cb4651461046357610166565b806323b872dd1161012357806323b872dd1461028f5780632db11544146102b85780633ccfd60b146102d457806342842e0e146102eb5780635503a0e81461031457806362b99ad41461033f57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806313faede61461023957806318160ddd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612b39565b6105d7565b60405161019f9190612f2c565b60405180910390f35b3480156101b457600080fd5b506101bd6106b9565b6040516101ca9190612f47565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612bdc565b61074b565b6040516102079190612ec5565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612af9565b6107c7565b005b34801561024557600080fd5b5061024e6108d2565b60405161025b9190613049565b60405180910390f35b34801561027057600080fd5b506102796108f6565b6040516102869190613049565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b191906129e3565b61090d565b005b6102d260048036038101906102cd9190612bdc565b61091d565b005b3480156102e057600080fd5b506102e9610afc565b005b3480156102f757600080fd5b50610312600480360381019061030d91906129e3565b610bc1565b005b34801561032057600080fd5b50610329610be1565b6040516103369190612f47565b60405180910390f35b34801561034b57600080fd5b50610354610c6f565b6040516103619190612f47565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190612bdc565b610cfd565b60405161039e9190612ec5565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612976565b610d13565b6040516103db9190613049565b60405180910390f35b3480156103f057600080fd5b506103f9610ea8565b6040516104069190612ec5565b60405180910390f35b34801561041b57600080fd5b50610424610ed2565b6040516104319190612f47565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612b93565b610f64565b005b34801561046f57600080fd5b5061048a60048036038101906104859190612ab9565b610f86565b005b34801561049857600080fd5b506104b360048036038101906104ae9190612bdc565b6110fe565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612a36565b611112565b005b3480156104ea57600080fd5b506104f361118e565b6040516105009190613064565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612bdc565b6111b2565b60405161053d9190612f47565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906129a3565b611254565b60405161057a9190612f2c565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190612976565b6112e8565b005b3480156105b857600080fd5b506105c161136c565b6040516105ce9190613064565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b257506106b182611390565b5b9050919050565b6060600280546106c8906133c2565b80601f01602080910402602001604051908101604052809291908181526020018280546106f4906133c2565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b6000610756826113fa565b61078c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d282610cfd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561083a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610859611448565b73ffffffffffffffffffffffffffffffffffffffff161415801561088b575061088981610884611448565b611254565b155b156108c2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108cd838383611450565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610900611502565b6001546000540303905090565b610918838383611507565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290613009565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff166109ba6108f6565b826109c36108f6565b6109cd91906131b3565b6109d791906132c8565b1115610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90612fe9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff16811115610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612f89565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000000610aad919061323a565b341015610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690612f69565b60405180910390fd5b610af933826119f8565b50565b610b04611a16565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610b3490612eb0565b60006040518083038185875af1925050503d8060008114610b71576040519150601f19603f3d011682016040523d82523d6000602084013e610b76565b606091505b50508091505080610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb390612fc9565b60405180910390fd5b505050565b610bdc83838360405180602001604052806000815250611112565b505050565b60088054610bee906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a906133c2565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081565b600a8054610c7c906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca8906133c2565b8015610cf55780601f10610cca57610100808354040283529160200191610cf5565b820191906000526020600020905b815481529060010190602001808311610cd857829003601f168201915b505050505081565b6000610d0882611a94565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610e4b57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610ea3565b6000547f000000000000000000000000000000000000000000000000000000000000000083610e7a9190613294565b73ffffffffffffffffffffffffffffffffffffffff1611610e9e5760019050610ea3565b600090505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ee1906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0d906133c2565b8015610f5a5780601f10610f2f57610100808354040283529160200191610f5a565b820191906000526020600020905b815481529060010190602001808311610f3d57829003601f168201915b5050505050905090565b610f6c611a16565b80600a9080519060200190610f82929190612747565b5050565b610f8e611448565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611000611448565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110ad611448565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110f29190612f2c565b60405180910390a35050565b611106611a16565b61110f81611d91565b50565b61111d848484611507565b61113c8373ffffffffffffffffffffffffffffffffffffffff16611d9d565b8015611151575061114f84848484611dc0565b155b15611188576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606111bd826113fa565b6111f3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111fd611f20565b905060008151141561121e576040518060200160405280600081525061124c565b8061122884611fb2565b600860405160200161123c93929190612e7f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112f0611a16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790612fa9565b60405180910390fd5b61136981612113565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611405611502565b11158015611414575060005482105b8015611441575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061151282611a94565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611539611448565b73ffffffffffffffffffffffffffffffffffffffff16148061156c575061156b8260000151611566611448565b611254565b5b806115b1575061157a611448565b73ffffffffffffffffffffffffffffffffffffffff166115998461074b565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806115ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611653576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156116ba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116c785858560016121d9565b6116d76000848460000151611450565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611988576000548110156119875782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119f185858560016121df565b5050505050565b611a128282604051806020016040528060008152506121e5565b5050565b611a1e611448565b73ffffffffffffffffffffffffffffffffffffffff16611a3c610ea8565b73ffffffffffffffffffffffffffffffffffffffff1614611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990613029565b60405180910390fd5b565b611a9c6127cd565b600082905080611aaa611502565b11158015611ab9575060005481105b15611d5a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d5857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bce578092505050611d8c565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ce457819350505050611d8c565b6000816001900391508111611bd557847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611d8c565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611d9a816121f7565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de6611448565b8786866040518563ffffffff1660e01b8152600401611e089493929190612ee0565b602060405180830381600087803b158015611e2257600080fd5b505af1925050508015611e5357506040513d601f19601f82011682018060405250810190611e509190612b66565b60015b611ecd573d8060008114611e83576040519150601f19603f3d011682016040523d82523d6000602084013e611e88565b606091505b50600081511415611ec5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611f2f906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5b906133c2565b8015611fa85780601f10611f7d57610100808354040283529160200191611fa8565b820191906000526020600020905b815481529060010190602001808311611f8b57829003601f168201915b5050505050905090565b60606000821415611ffa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061210e565b600082905060005b6000821461202c57808061201590613425565b915050600a826120259190613209565b9150612002565b60008167ffffffffffffffff8111156120485761204761355b565b5b6040519080825280601f01601f19166020018201604052801561207a5781602001600182028036833780820191505090505b5090505b600085146121075760018261209391906132c8565b9150600a856120a2919061346e565b60306120ae91906131b3565b60f81b8183815181106120c4576120c361352c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121009190613209565b945061207e565b8093505050505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6121f28383836001612379565b505050565b6000811415612232576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261224691906131b3565b9050817f00000000000000000000000000000000000000000000000000000000000000006122749190613169565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600082905082806001019350817f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450808214156122ca578260008082825461236d91906131b3565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156123e6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612421576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61242e60008683876121d9565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156125f857506125f78773ffffffffffffffffffffffffffffffffffffffff16611d9d565b5b156126be575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461266d6000888480600101955088611dc0565b6126a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156125fe5782600054146126b957600080fd5b61272a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156126bf575b81600081905550505061274060008683876121df565b5050505050565b828054612753906133c2565b90600052602060002090601f01602090048101928261277557600085556127bc565b82601f1061278e57805160ff19168380011785556127bc565b828001600101855582156127bc579182015b828111156127bb5782518255916020019190600101906127a0565b5b5090506127c99190612810565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612829576000816000905550600101612811565b5090565b600061284061283b846130a4565b61307f565b90508281526020810184848401111561285c5761285b61358f565b5b612867848285613380565b509392505050565b600061288261287d846130d5565b61307f565b90508281526020810184848401111561289e5761289d61358f565b5b6128a9848285613380565b509392505050565b6000813590506128c0816136f7565b92915050565b6000813590506128d58161370e565b92915050565b6000813590506128ea81613725565b92915050565b6000815190506128ff81613725565b92915050565b600082601f83011261291a5761291961358a565b5b813561292a84826020860161282d565b91505092915050565b600082601f8301126129485761294761358a565b5b813561295884826020860161286f565b91505092915050565b6000813590506129708161373c565b92915050565b60006020828403121561298c5761298b613599565b5b600061299a848285016128b1565b91505092915050565b600080604083850312156129ba576129b9613599565b5b60006129c8858286016128b1565b92505060206129d9858286016128b1565b9150509250929050565b6000806000606084860312156129fc576129fb613599565b5b6000612a0a868287016128b1565b9350506020612a1b868287016128b1565b9250506040612a2c86828701612961565b9150509250925092565b60008060008060808587031215612a5057612a4f613599565b5b6000612a5e878288016128b1565b9450506020612a6f878288016128b1565b9350506040612a8087828801612961565b925050606085013567ffffffffffffffff811115612aa157612aa0613594565b5b612aad87828801612905565b91505092959194509250565b60008060408385031215612ad057612acf613599565b5b6000612ade858286016128b1565b9250506020612aef858286016128c6565b9150509250929050565b60008060408385031215612b1057612b0f613599565b5b6000612b1e858286016128b1565b9250506020612b2f85828601612961565b9150509250929050565b600060208284031215612b4f57612b4e613599565b5b6000612b5d848285016128db565b91505092915050565b600060208284031215612b7c57612b7b613599565b5b6000612b8a848285016128f0565b91505092915050565b600060208284031215612ba957612ba8613599565b5b600082013567ffffffffffffffff811115612bc757612bc6613594565b5b612bd384828501612933565b91505092915050565b600060208284031215612bf257612bf1613599565b5b6000612c0084828501612961565b91505092915050565b612c12816132fc565b82525050565b612c218161330e565b82525050565b6000612c328261311b565b612c3c8185613131565b9350612c4c81856020860161338f565b612c558161359e565b840191505092915050565b6000612c6b82613126565b612c75818561314d565b9350612c8581856020860161338f565b612c8e8161359e565b840191505092915050565b6000612ca482613126565b612cae818561315e565b9350612cbe81856020860161338f565b80840191505092915050565b60008154612cd7816133c2565b612ce1818661315e565b94506001821660008114612cfc5760018114612d0d57612d40565b60ff19831686528186019350612d40565b612d1685613106565b60005b83811015612d3857815481890152600182019150602081019050612d19565b838801955050505b50505092915050565b6000612d56600c8361314d565b9150612d61826135af565b602082019050919050565b6000612d7960098361314d565b9150612d84826135d8565b602082019050919050565b6000612d9c60268361314d565b9150612da782613601565b604082019050919050565b6000612dbf60188361314d565b9150612dca82613650565b602082019050919050565b6000612de260088361314d565b9150612ded82613679565b602082019050919050565b6000612e05601e8361314d565b9150612e10826136a2565b602082019050919050565b6000612e2860208361314d565b9150612e33826136cb565b602082019050919050565b6000612e4b600083613142565b9150612e56826136f4565b600082019050919050565b612e6a81613366565b82525050565b612e7981613370565b82525050565b6000612e8b8286612c99565b9150612e978285612c99565b9150612ea38284612cca565b9150819050949350505050565b6000612ebb82612e3e565b9150819050919050565b6000602082019050612eda6000830184612c09565b92915050565b6000608082019050612ef56000830187612c09565b612f026020830186612c09565b612f0f6040830185612e61565b8181036060830152612f218184612c27565b905095945050505050565b6000602082019050612f416000830184612c18565b92915050565b60006020820190508181036000830152612f618184612c60565b905092915050565b60006020820190508181036000830152612f8281612d49565b9050919050565b60006020820190508181036000830152612fa281612d6c565b9050919050565b60006020820190508181036000830152612fc281612d8f565b9050919050565b60006020820190508181036000830152612fe281612db2565b9050919050565b6000602082019050818103600083015261300281612dd5565b9050919050565b6000602082019050818103600083015261302281612df8565b9050919050565b6000602082019050818103600083015261304281612e1b565b9050919050565b600060208201905061305e6000830184612e61565b92915050565b60006020820190506130796000830184612e70565b92915050565b600061308961309a565b905061309582826133f4565b919050565b6000604051905090565b600067ffffffffffffffff8211156130bf576130be61355b565b5b6130c88261359e565b9050602081019050919050565b600067ffffffffffffffff8211156130f0576130ef61355b565b5b6130f98261359e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061317482613346565b915061317f83613346565b92508273ffffffffffffffffffffffffffffffffffffffff038211156131a8576131a761349f565b5b828201905092915050565b60006131be82613366565b91506131c983613366565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131fe576131fd61349f565b5b828201905092915050565b600061321482613366565b915061321f83613366565b92508261322f5761322e6134ce565b5b828204905092915050565b600061324582613366565b915061325083613366565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132895761328861349f565b5b828202905092915050565b600061329f82613346565b91506132aa83613346565b9250828210156132bd576132bc61349f565b5b828203905092915050565b60006132d382613366565b91506132de83613366565b9250828210156132f1576132f061349f565b5b828203905092915050565b600061330782613346565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156133ad578082015181840152602081019050613392565b838111156133bc576000848401525b50505050565b600060028204905060018216806133da57607f821691505b602082108114156133ee576133ed6134fd565b5b50919050565b6133fd8261359e565b810181811067ffffffffffffffff8211171561341c5761341b61355b565b5b80604052505050565b600061343082613366565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134635761346261349f565b5b600182019050919050565b600061347982613366565b915061348483613366565b925082613494576134936134ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f6d61782033207065720000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b613700816132fc565b811461370b57600080fd5b50565b6137178161330e565b811461372257600080fd5b50565b61372e8161331a565b811461373957600080fd5b50565b61374581613366565b811461375057600080fd5b5056fea2646970667358221220e5305ea5caee0044311ad1d76880e2e011a6b6523b17a1dcfdc57e93a4bc3e1d64736f6c63430008070033697066733a2f2f516d62694b534e45735872336e703751427133694635786b5a4d736a39446635474c725733456851576b6b4857782f
Deployed Bytecode
0x6080604052600436106101665760003560e01c80636352211e116100d1578063aae4cdcd1161008a578063c87b56dd11610064578063c87b56dd14610509578063e985e9c514610546578063f2fde38b14610583578063f968adbe146105ac57610166565b8063aae4cdcd1461048c578063b88d4fde146104b5578063c4a41225146104de57610166565b80636352211e1461036a57806370a08231146103a75780638da5cb5b146103e457806395d89b411461040f5780639b642de11461043a578063a22cb4651461046357610166565b806323b872dd1161012357806323b872dd1461028f5780632db11544146102b85780633ccfd60b146102d457806342842e0e146102eb5780635503a0e81461031457806362b99ad41461033f57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806313faede61461023957806318160ddd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612b39565b6105d7565b60405161019f9190612f2c565b60405180910390f35b3480156101b457600080fd5b506101bd6106b9565b6040516101ca9190612f47565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612bdc565b61074b565b6040516102079190612ec5565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612af9565b6107c7565b005b34801561024557600080fd5b5061024e6108d2565b60405161025b9190613049565b60405180910390f35b34801561027057600080fd5b506102796108f6565b6040516102869190613049565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b191906129e3565b61090d565b005b6102d260048036038101906102cd9190612bdc565b61091d565b005b3480156102e057600080fd5b506102e9610afc565b005b3480156102f757600080fd5b50610312600480360381019061030d91906129e3565b610bc1565b005b34801561032057600080fd5b50610329610be1565b6040516103369190612f47565b60405180910390f35b34801561034b57600080fd5b50610354610c6f565b6040516103619190612f47565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190612bdc565b610cfd565b60405161039e9190612ec5565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612976565b610d13565b6040516103db9190613049565b60405180910390f35b3480156103f057600080fd5b506103f9610ea8565b6040516104069190612ec5565b60405180910390f35b34801561041b57600080fd5b50610424610ed2565b6040516104319190612f47565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612b93565b610f64565b005b34801561046f57600080fd5b5061048a60048036038101906104859190612ab9565b610f86565b005b34801561049857600080fd5b506104b360048036038101906104ae9190612bdc565b6110fe565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612a36565b611112565b005b3480156104ea57600080fd5b506104f361118e565b6040516105009190613064565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612bdc565b6111b2565b60405161053d9190612f47565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906129a3565b611254565b60405161057a9190612f2c565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190612976565b6112e8565b005b3480156105b857600080fd5b506105c161136c565b6040516105ce9190613064565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b257506106b182611390565b5b9050919050565b6060600280546106c8906133c2565b80601f01602080910402602001604051908101604052809291908181526020018280546106f4906133c2565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b6000610756826113fa565b61078c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d282610cfd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561083a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610859611448565b73ffffffffffffffffffffffffffffffffffffffff161415801561088b575061088981610884611448565b611254565b155b156108c2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108cd838383611450565b505050565b7f00000000000000000000000000000000000000000000000000038d7ea4c6800081565b6000610900611502565b6001546000540303905090565b610918838383611507565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290613009565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000045763ffffffff166109ba6108f6565b826109c36108f6565b6109cd91906131b3565b6109d791906132c8565b1115610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90612fe9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a63ffffffff16811115610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612f89565b60405180910390fd5b807f00000000000000000000000000000000000000000000000000038d7ea4c68000610aad919061323a565b341015610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690612f69565b60405180910390fd5b610af933826119f8565b50565b610b04611a16565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610b3490612eb0565b60006040518083038185875af1925050503d8060008114610b71576040519150601f19603f3d011682016040523d82523d6000602084013e610b76565b606091505b50508091505080610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb390612fc9565b60405180910390fd5b505050565b610bdc83838360405180602001604052806000815250611112565b505050565b60088054610bee906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a906133c2565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081565b600a8054610c7c906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca8906133c2565b8015610cf55780601f10610cca57610100808354040283529160200191610cf5565b820191906000526020600020905b815481529060010190602001808311610cd857829003601f168201915b505050505081565b6000610d0882611a94565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610e4b57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610ea3565b6000547f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957083610e7a9190613294565b73ffffffffffffffffffffffffffffffffffffffff1611610e9e5760019050610ea3565b600090505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ee1906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0d906133c2565b8015610f5a5780601f10610f2f57610100808354040283529160200191610f5a565b820191906000526020600020905b815481529060010190602001808311610f3d57829003601f168201915b5050505050905090565b610f6c611a16565b80600a9080519060200190610f82929190612747565b5050565b610f8e611448565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611000611448565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110ad611448565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110f29190612f2c565b60405180910390a35050565b611106611a16565b61110f81611d91565b50565b61111d848484611507565b61113c8373ffffffffffffffffffffffffffffffffffffffff16611d9d565b8015611151575061114f84848484611dc0565b155b15611188576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000045781565b60606111bd826113fa565b6111f3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111fd611f20565b905060008151141561121e576040518060200160405280600081525061124c565b8061122884611fb2565b600860405160200161123c93929190612e7f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112f0611a16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790612fa9565b60405180910390fd5b61136981612113565b50565b7f000000000000000000000000000000000000000000000000000000000000000a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611405611502565b11158015611414575060005482105b8015611441575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061151282611a94565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611539611448565b73ffffffffffffffffffffffffffffffffffffffff16148061156c575061156b8260000151611566611448565b611254565b5b806115b1575061157a611448565b73ffffffffffffffffffffffffffffffffffffffff166115998461074b565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806115ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611653576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156116ba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116c785858560016121d9565b6116d76000848460000151611450565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611988576000548110156119875782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119f185858560016121df565b5050505050565b611a128282604051806020016040528060008152506121e5565b5050565b611a1e611448565b73ffffffffffffffffffffffffffffffffffffffff16611a3c610ea8565b73ffffffffffffffffffffffffffffffffffffffff1614611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990613029565b60405180910390fd5b565b611a9c6127cd565b600082905080611aaa611502565b11158015611ab9575060005481105b15611d5a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d5857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bce578092505050611d8c565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ce457819350505050611d8c565b6000816001900391508111611bd557847f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611d8c565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611d9a816121f7565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de6611448565b8786866040518563ffffffff1660e01b8152600401611e089493929190612ee0565b602060405180830381600087803b158015611e2257600080fd5b505af1925050508015611e5357506040513d601f19601f82011682018060405250810190611e509190612b66565b60015b611ecd573d8060008114611e83576040519150601f19603f3d011682016040523d82523d6000602084013e611e88565b606091505b50600081511415611ec5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611f2f906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5b906133c2565b8015611fa85780601f10611f7d57610100808354040283529160200191611fa8565b820191906000526020600020905b815481529060010190602001808311611f8b57829003601f168201915b5050505050905090565b60606000821415611ffa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061210e565b600082905060005b6000821461202c57808061201590613425565b915050600a826120259190613209565b9150612002565b60008167ffffffffffffffff8111156120485761204761355b565b5b6040519080825280601f01601f19166020018201604052801561207a5781602001600182028036833780820191505090505b5090505b600085146121075760018261209391906132c8565b9150600a856120a2919061346e565b60306120ae91906131b3565b60f81b8183815181106120c4576120c361352c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121009190613209565b945061207e565b8093505050505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6121f28383836001612379565b505050565b6000811415612232576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261224691906131b3565b9050817f000000000000000000000000521fad559524f59515912c1b80a828fab0a795706122749190613169565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600082905082806001019350817f000000000000000000000000521fad559524f59515912c1b80a828fab0a795700173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450808214156122ca578260008082825461236d91906131b3565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156123e6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612421576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61242e60008683876121d9565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156125f857506125f78773ffffffffffffffffffffffffffffffffffffffff16611d9d565b5b156126be575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461266d6000888480600101955088611dc0565b6126a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156125fe5782600054146126b957600080fd5b61272a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156126bf575b81600081905550505061274060008683876121df565b5050505050565b828054612753906133c2565b90600052602060002090601f01602090048101928261277557600085556127bc565b82601f1061278e57805160ff19168380011785556127bc565b828001600101855582156127bc579182015b828111156127bb5782518255916020019190600101906127a0565b5b5090506127c99190612810565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612829576000816000905550600101612811565b5090565b600061284061283b846130a4565b61307f565b90508281526020810184848401111561285c5761285b61358f565b5b612867848285613380565b509392505050565b600061288261287d846130d5565b61307f565b90508281526020810184848401111561289e5761289d61358f565b5b6128a9848285613380565b509392505050565b6000813590506128c0816136f7565b92915050565b6000813590506128d58161370e565b92915050565b6000813590506128ea81613725565b92915050565b6000815190506128ff81613725565b92915050565b600082601f83011261291a5761291961358a565b5b813561292a84826020860161282d565b91505092915050565b600082601f8301126129485761294761358a565b5b813561295884826020860161286f565b91505092915050565b6000813590506129708161373c565b92915050565b60006020828403121561298c5761298b613599565b5b600061299a848285016128b1565b91505092915050565b600080604083850312156129ba576129b9613599565b5b60006129c8858286016128b1565b92505060206129d9858286016128b1565b9150509250929050565b6000806000606084860312156129fc576129fb613599565b5b6000612a0a868287016128b1565b9350506020612a1b868287016128b1565b9250506040612a2c86828701612961565b9150509250925092565b60008060008060808587031215612a5057612a4f613599565b5b6000612a5e878288016128b1565b9450506020612a6f878288016128b1565b9350506040612a8087828801612961565b925050606085013567ffffffffffffffff811115612aa157612aa0613594565b5b612aad87828801612905565b91505092959194509250565b60008060408385031215612ad057612acf613599565b5b6000612ade858286016128b1565b9250506020612aef858286016128c6565b9150509250929050565b60008060408385031215612b1057612b0f613599565b5b6000612b1e858286016128b1565b9250506020612b2f85828601612961565b9150509250929050565b600060208284031215612b4f57612b4e613599565b5b6000612b5d848285016128db565b91505092915050565b600060208284031215612b7c57612b7b613599565b5b6000612b8a848285016128f0565b91505092915050565b600060208284031215612ba957612ba8613599565b5b600082013567ffffffffffffffff811115612bc757612bc6613594565b5b612bd384828501612933565b91505092915050565b600060208284031215612bf257612bf1613599565b5b6000612c0084828501612961565b91505092915050565b612c12816132fc565b82525050565b612c218161330e565b82525050565b6000612c328261311b565b612c3c8185613131565b9350612c4c81856020860161338f565b612c558161359e565b840191505092915050565b6000612c6b82613126565b612c75818561314d565b9350612c8581856020860161338f565b612c8e8161359e565b840191505092915050565b6000612ca482613126565b612cae818561315e565b9350612cbe81856020860161338f565b80840191505092915050565b60008154612cd7816133c2565b612ce1818661315e565b94506001821660008114612cfc5760018114612d0d57612d40565b60ff19831686528186019350612d40565b612d1685613106565b60005b83811015612d3857815481890152600182019150602081019050612d19565b838801955050505b50505092915050565b6000612d56600c8361314d565b9150612d61826135af565b602082019050919050565b6000612d7960098361314d565b9150612d84826135d8565b602082019050919050565b6000612d9c60268361314d565b9150612da782613601565b604082019050919050565b6000612dbf60188361314d565b9150612dca82613650565b602082019050919050565b6000612de260088361314d565b9150612ded82613679565b602082019050919050565b6000612e05601e8361314d565b9150612e10826136a2565b602082019050919050565b6000612e2860208361314d565b9150612e33826136cb565b602082019050919050565b6000612e4b600083613142565b9150612e56826136f4565b600082019050919050565b612e6a81613366565b82525050565b612e7981613370565b82525050565b6000612e8b8286612c99565b9150612e978285612c99565b9150612ea38284612cca565b9150819050949350505050565b6000612ebb82612e3e565b9150819050919050565b6000602082019050612eda6000830184612c09565b92915050565b6000608082019050612ef56000830187612c09565b612f026020830186612c09565b612f0f6040830185612e61565b8181036060830152612f218184612c27565b905095945050505050565b6000602082019050612f416000830184612c18565b92915050565b60006020820190508181036000830152612f618184612c60565b905092915050565b60006020820190508181036000830152612f8281612d49565b9050919050565b60006020820190508181036000830152612fa281612d6c565b9050919050565b60006020820190508181036000830152612fc281612d8f565b9050919050565b60006020820190508181036000830152612fe281612db2565b9050919050565b6000602082019050818103600083015261300281612dd5565b9050919050565b6000602082019050818103600083015261302281612df8565b9050919050565b6000602082019050818103600083015261304281612e1b565b9050919050565b600060208201905061305e6000830184612e61565b92915050565b60006020820190506130796000830184612e70565b92915050565b600061308961309a565b905061309582826133f4565b919050565b6000604051905090565b600067ffffffffffffffff8211156130bf576130be61355b565b5b6130c88261359e565b9050602081019050919050565b600067ffffffffffffffff8211156130f0576130ef61355b565b5b6130f98261359e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061317482613346565b915061317f83613346565b92508273ffffffffffffffffffffffffffffffffffffffff038211156131a8576131a761349f565b5b828201905092915050565b60006131be82613366565b91506131c983613366565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131fe576131fd61349f565b5b828201905092915050565b600061321482613366565b915061321f83613366565b92508261322f5761322e6134ce565b5b828204905092915050565b600061324582613366565b915061325083613366565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132895761328861349f565b5b828202905092915050565b600061329f82613346565b91506132aa83613346565b9250828210156132bd576132bc61349f565b5b828203905092915050565b60006132d382613366565b91506132de83613366565b9250828210156132f1576132f061349f565b5b828203905092915050565b600061330782613346565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156133ad578082015181840152602081019050613392565b838111156133bc576000848401525b50505050565b600060028204905060018216806133da57607f821691505b602082108114156133ee576133ed6134fd565b5b50919050565b6133fd8261359e565b810181811067ffffffffffffffff8211171561341c5761341b61355b565b5b80604052505050565b600061343082613366565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134635761346261349f565b5b600182019050919050565b600061347982613366565b915061348483613366565b925082613494576134936134ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f6d61782033207065720000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b613700816132fc565b811461370b57600080fd5b50565b6137178161330e565b811461372257600080fd5b50565b61372e8161331a565b811461373957600080fd5b50565b61374581613366565b811461375057600080fd5b5056fea2646970667358221220e5305ea5caee0044311ad1d76880e2e011a6b6523b17a1dcfdc57e93a4bc3e1d64736f6c63430008070033
Deployed Bytecode Sourcemap
48612:1509:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28757:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32618:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34174:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33737:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48748:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28006:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35031:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49419:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49840:278;;;;;;;;;;;;;:::i;:::-;;35272:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32899:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48657:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32427:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29128:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4944:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32787:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49207:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34450:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49735:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35528:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48798:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33004:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34800:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5396:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48845:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28757:305;28859:4;28911:25;28896:40;;;:11;:40;;;;:105;;;;28968:33;28953:48;;;:11;:48;;;;28896:105;:158;;;;29018:36;29042:11;29018:23;:36::i;:::-;28896:158;28876:178;;28757:305;;;:::o;32618:100::-;32672:13;32705:5;32698:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32618:100;:::o;34174:204::-;34242:7;34267:16;34275:7;34267;:16::i;:::-;34262:64;;34292:34;;;;;;;;;;;;;;34262:64;34346:15;:24;34362:7;34346:24;;;;;;;;;;;;;;;;;;;;;34339:31;;34174:204;;;:::o;33737:371::-;33810:13;33826:24;33842:7;33826:15;:24::i;:::-;33810:40;;33871:5;33865:11;;:2;:11;;;33861:48;;;33885:24;;;;;;;;;;;;;;33861:48;33942:5;33926:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33952:37;33969:5;33976:12;:10;:12::i;:::-;33952:16;:37::i;:::-;33951:38;33926:63;33922:138;;;34013:35;;;;;;;;;;;;;;33922:138;34072:28;34081:2;34085:7;34094:5;34072:8;:28::i;:::-;33799:309;33737:371;;:::o;48748:43::-;;;:::o;28006:303::-;28050:7;28275:15;:13;:15::i;:::-;28260:12;;28244:13;;:28;:46;28237:53;;28006:303;:::o;35031:170::-;35165:28;35175:4;35181:2;35185:7;35165:9;:28::i;:::-;35031:170;;;:::o;49419:308::-;48947:10;48934:23;;:9;:23;;;48926:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49544:9:::1;49501:52;;49526:13;:11;:13::i;:::-;49517:6;49501:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:52;;49493:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49596:8;49585:19;;:6;:19;;49577:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;49657:6;49650:4;:13;;;;:::i;:::-;49637:9;:26;;49629:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;49690:29;49700:10;49712:6;49690:9;:29::i;:::-;49419:308:::0;:::o;49840:278::-;4830:13;:11;:13::i;:::-;49888:18:::1;49909:21;49888:42;;49943:9;49963:10;49943:31;;49987:12;50026:1;:6;;50040:10;50026:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50012:43;;;;;50074:7;50066:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49877:241;;;49840:278::o:0;35272:185::-;35410:39;35427:4;35433:2;35437:7;35410:39;;;;;;;;;;;;:16;:39::i;:::-;35272:185;;;:::o;32899:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48657:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32427:124::-;32491:7;32518:20;32530:7;32518:11;:20::i;:::-;:25;;;32511:32;;32427:124;;;:::o;29128:395::-;29192:7;29233:1;29216:19;;:5;:19;;;29212:60;;;29244:28;;;;;;;;;;;;;;29212:60;29320:1;29289:12;:19;29302:5;29289:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29285:108;;29353:12;:19;29366:5;29353:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29345:36;;29338:43;;;;29285:108;29445:13;;29434:6;29417:5;29409:32;;;;:::i;:::-;:49;;;29405:90;;29482:1;29475:8;;;;29405:90;29514:1;29507:8;;29128:395;;;;:::o;4944:87::-;4990:7;5017:6;;;;;;;;;;;5010:13;;4944:87;:::o;32787:104::-;32843:13;32876:7;32869:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32787:104;:::o;49207:86::-;4830:13;:11;:13::i;:::-;49282:3:::1;49270:9;:15;;;;;;;;;;;;:::i;:::-;;49207:86:::0;:::o;34450:279::-;34553:12;:10;:12::i;:::-;34541:24;;:8;:24;;;34537:54;;;34574:17;;;;;;;;;;;;;;34537:54;34649:8;34604:18;:32;34623:12;:10;:12::i;:::-;34604:32;;;;;;;;;;;;;;;:42;34637:8;34604:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34702:8;34673:48;;34688:12;:10;:12::i;:::-;34673:48;;;34712:8;34673:48;;;;;;:::i;:::-;;;;;;;;34450:279;;:::o;49735:97::-;4830:13;:11;:13::i;:::-;49802:22:::1;49817:6;49802:14;:22::i;:::-;49735:97:::0;:::o;35528:369::-;35695:28;35705:4;35711:2;35715:7;35695:9;:28::i;:::-;35738:15;:2;:13;;;:15::i;:::-;:76;;;;;35758:56;35789:4;35795:2;35799:7;35808:5;35758:30;:56::i;:::-;35757:57;35738:76;35734:156;;;35838:40;;;;;;;;;;;;;;35734:156;35528:369;;;;:::o;48798:40::-;;;:::o;33004:329::-;33077:13;33108:16;33116:7;33108;:16::i;:::-;33103:59;;33133:29;;;;;;;;;;;;;;33103:59;33175:21;33199:10;:8;:10::i;:::-;33175:34;;33252:1;33233:7;33227:21;:26;;:98;;;;;;;;;;;;;;;;;33280:7;33289:18;:7;:16;:18::i;:::-;33309:9;33263:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33227:98;33220:105;;;33004:329;;;:::o;34800:164::-;34897:4;34921:18;:25;34940:5;34921:25;;;;;;;;;;;;;;;:35;34947:8;34921:35;;;;;;;;;;;;;;;;;;;;;;;;;34914:42;;34800:164;;;;:::o;5396:201::-;4830:13;:11;:13::i;:::-;5505:1:::1;5485:22;;:8;:22;;;;5477:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5561:28;5580:8;5561:18;:28::i;:::-;5396:201:::0;:::o;48845:37::-;;;:::o;17344:157::-;17429:4;17468:25;17453:40;;;:11;:40;;;;17446:47;;17344:157;;;:::o;36152:187::-;36209:4;36252:7;36233:15;:13;:15::i;:::-;:26;;:53;;;;;36273:13;;36263:7;:23;36233:53;:98;;;;;36304:11;:20;36316:7;36304:20;;;;;;;;;;;:27;;;;;;;;;;;;36303:28;36233:98;36226:105;;36152:187;;;:::o;3495:98::-;3548:7;3575:10;3568:17;;3495:98;:::o;45596:196::-;45738:2;45711:15;:24;45727:7;45711:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45776:7;45772:2;45756:28;;45765:5;45756:28;;;;;;;;;;;;45596:196;;;:::o;49301:110::-;49375:7;49301:110;:::o;41098:2112::-;41213:35;41251:20;41263:7;41251:11;:20::i;:::-;41213:58;;41284:22;41326:13;:18;;;41310:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;41361:50;41378:13;:18;;;41398:12;:10;:12::i;:::-;41361:16;:50::i;:::-;41310:101;:154;;;;41452:12;:10;:12::i;:::-;41428:36;;:20;41440:7;41428:11;:20::i;:::-;:36;;;41310:154;41284:181;;41483:17;41478:66;;41509:35;;;;;;;;;;;;;;41478:66;41581:4;41559:26;;:13;:18;;;:26;;;41555:67;;41594:28;;;;;;;;;;;;;;41555:67;41651:1;41637:16;;:2;:16;;;41633:52;;;41662:23;;;;;;;;;;;;;;41633:52;41698:43;41720:4;41726:2;41730:7;41739:1;41698:21;:43::i;:::-;41806:49;41823:1;41827:7;41836:13;:18;;;41806:8;:49::i;:::-;42181:1;42151:12;:18;42164:4;42151:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42225:1;42197:12;:16;42210:2;42197:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42271:2;42243:11;:20;42255:7;42243:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;42333:15;42288:11;:20;42300:7;42288:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42601:19;42633:1;42623:7;:11;42601:33;;42694:1;42653:43;;:11;:24;42665:11;42653:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42649:445;;;42878:13;;42864:11;:27;42860:219;;;42948:13;:18;;;42916:11;:24;42928:11;42916:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;43031:13;:28;;;42989:11;:24;43001:11;42989:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42860:219;42649:445;42126:979;43141:7;43137:2;43122:27;;43131:4;43122:27;;;;;;;;;;;;43160:42;43181:4;43187:2;43191:7;43200:1;43160:20;:42::i;:::-;41202:2008;;41098:2112;;;:::o;36347:104::-;36416:27;36426:2;36430:8;36416:27;;;;;;;;;;;;:9;:27::i;:::-;36347:104;;:::o;5109:132::-;5184:12;:10;:12::i;:::-;5173:23;;:7;:5;:7::i;:::-;:23;;;5165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5109:132::o;31058:1307::-;31119:21;;:::i;:::-;31153:12;31168:7;31153:22;;31236:4;31217:15;:13;:15::i;:::-;:23;;:47;;;;;31251:13;;31244:4;:20;31217:47;31213:1085;;;31285:31;31319:11;:17;31331:4;31319:17;;;;;;;;;;;31285:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31360:9;:16;;;31355:924;;31431:1;31405:28;;:9;:14;;;:28;;;31401:101;;31469:9;31462:16;;;;;;31401:101;31806:13;31822:1;31806:17;;31846:270;31875:6;;;;;;;;31920:11;:17;31932:4;31920:17;;;;;;;;;;;31908:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31994:1;31968:28;;:9;:14;;;:28;;;31964:109;;32036:9;32029:16;;;;;;;31964:109;32113:1;32103:7;;;;;;;:11;31846:270;;32211:7;32193:6;32185:34;32160:9;:14;;:60;;;;;;;;;;;32250:9;32243:16;;;;;;;31355:924;31266:1032;31213:1085;32326:31;;;;;;;;;;;;;;31058:1307;;;;:::o;36985:121::-;37075:19;37085:8;37075:9;:19::i;:::-;36985:121;:::o;7188:326::-;7248:4;7505:1;7483:7;:19;;;:23;7476:30;;7188:326;;;:::o;46284:667::-;46447:4;46484:2;46468:36;;;46505:12;:10;:12::i;:::-;46519:4;46525:7;46534:5;46468:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46464:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46719:1;46702:6;:13;:18;46698:235;;;46748:40;;;;;;;;;;;;;;46698:235;46891:6;46885:13;46876:6;46872:2;46868:15;46861:38;46464:480;46597:45;;;46587:55;;;:6;:55;;;;46580:62;;;46284:667;;;;;;:::o;49088:111::-;49149:13;49182:9;49175:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49088:111;:::o;749:723::-;805:13;1035:1;1026:5;:10;1022:53;;;1053:10;;;;;;;;;;;;;;;;;;;;;1022:53;1085:12;1100:5;1085:20;;1116:14;1141:78;1156:1;1148:4;:9;1141:78;;1174:8;;;;;:::i;:::-;;;;1205:2;1197:10;;;;;:::i;:::-;;;1141:78;;;1229:19;1261:6;1251:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1229:39;;1279:154;1295:1;1286:5;:10;1279:154;;1323:1;1313:11;;;;;:::i;:::-;;;1390:2;1382:5;:10;;;;:::i;:::-;1369:2;:24;;;;:::i;:::-;1356:39;;1339:6;1346;1339:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1419:2;1410:11;;;;;:::i;:::-;;;1279:154;;;1457:6;1443:21;;;;;749:723;;;;:::o;5757:191::-;5831:16;5850:6;;;;;;;;;;;5831:25;;5876:8;5867:6;;:17;;;;;;;;;;;;;;;;;;5931:8;5900:40;;5921:8;5900:40;;;;;;;;;;;;5820:128;5757:191;:::o;47599:159::-;;;;;:::o;48417:158::-;;;;;:::o;36814:163::-;36937:32;36943:2;36947:8;36957:5;36964:4;36937:5;:32::i;:::-;36814:163;;;:::o;39148:1696::-;39303:1;39291:8;:13;39287:44;;;39313:18;;;;;;;;;;;;;;39287:44;39414:20;39437:13;;39414:36;;39465:11;39494:8;39479:12;:23;;;;:::i;:::-;39465:37;;39587:12;39569:6;39561:39;;;;:::i;:::-;39519:11;:26;39531:13;;39519:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;39645:216;39671:14;39696:12;39671:38;;39793:14;;;;;;39784:6;39774;39766:24;39737:71;;39754:1;39737:71;;;;;;;;;;;;39648:184;39856:3;39840:12;:19;;39645:216;;39927:8;39910:13;;:25;;;;;;;:::i;:::-;;;;;;;;39218:1626;;39148:1696;:::o;37365:1775::-;37504:20;37527:13;;37504:36;;37569:1;37555:16;;:2;:16;;;37551:48;;;37580:19;;;;;;;;;;;;;;37551:48;37626:1;37614:8;:13;37610:44;;;37636:18;;;;;;;;;;;;;;37610:44;37667:61;37697:1;37701:2;37705:12;37719:8;37667:21;:61::i;:::-;38040:8;38005:12;:16;38018:2;38005:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38104:8;38064:12;:16;38077:2;38064:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38163:2;38130:11;:25;38142:12;38130:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38230:15;38180:11;:25;38192:12;38180:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38263:20;38286:12;38263:35;;38313:11;38342:8;38327:12;:23;38313:37;;38371:4;:23;;;;;38379:15;:2;:13;;;:15::i;:::-;38371:23;38367:641;;;38415:314;38471:12;38467:2;38446:38;;38463:1;38446:38;;;;;;;;;;;;38512:69;38551:1;38555:2;38559:14;;;;;;38575:5;38512:30;:69::i;:::-;38507:174;;38617:40;;;;;;;;;;;;;;38507:174;38724:3;38708:12;:19;;38415:314;;38810:12;38793:13;;:29;38789:43;;38824:8;;;38789:43;38367:641;;;38873:120;38929:14;;;;;;38925:2;38904:40;;38921:1;38904:40;;;;;;;;;;;;38988:3;38972:12;:19;;38873:120;;38367:641;39038:12;39022:13;:28;;;;37980:1082;;39072:60;39101:1;39105:2;39109:12;39123:8;39072:20;:60::i;:::-;37493:1647;37365:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:365::-;9905:3;9926:66;9990:1;9985:3;9926:66;:::i;:::-;9919:73;;10001:93;10090:3;10001:93;:::i;:::-;10119:2;10114:3;10110:12;10103:19;;9763:365;;;:::o;10134:366::-;10276:3;10297:67;10361:2;10356:3;10297:67;:::i;:::-;10290:74;;10373:93;10462:3;10373:93;:::i;:::-;10491:2;10486:3;10482:12;10475:19;;10134:366;;;:::o;10506:::-;10648:3;10669:67;10733:2;10728:3;10669:67;:::i;:::-;10662:74;;10745:93;10834:3;10745:93;:::i;:::-;10863:2;10858:3;10854:12;10847:19;;10506:366;;;:::o;10878:365::-;11020:3;11041:66;11105:1;11100:3;11041:66;:::i;:::-;11034:73;;11116:93;11205:3;11116:93;:::i;:::-;11234:2;11229:3;11225:12;11218:19;;10878:365;;;:::o;11249:366::-;11391:3;11412:67;11476:2;11471:3;11412:67;:::i;:::-;11405:74;;11488:93;11577:3;11488:93;:::i;:::-;11606:2;11601:3;11597:12;11590:19;;11249:366;;;:::o;11621:::-;11763:3;11784:67;11848:2;11843:3;11784:67;:::i;:::-;11777:74;;11860:93;11949:3;11860:93;:::i;:::-;11978:2;11973:3;11969:12;11962:19;;11621:366;;;:::o;11993:398::-;12152:3;12173:83;12254:1;12249:3;12173:83;:::i;:::-;12166:90;;12265:93;12354:3;12265:93;:::i;:::-;12383:1;12378:3;12374:11;12367:18;;11993:398;;;:::o;12397:118::-;12484:24;12502:5;12484:24;:::i;:::-;12479:3;12472:37;12397:118;;:::o;12521:115::-;12606:23;12623:5;12606:23;:::i;:::-;12601:3;12594:36;12521:115;;:::o;12642:589::-;12867:3;12889:95;12980:3;12971:6;12889:95;:::i;:::-;12882:102;;13001:95;13092:3;13083:6;13001:95;:::i;:::-;12994:102;;13113:92;13201:3;13192:6;13113:92;:::i;:::-;13106:99;;13222:3;13215:10;;12642:589;;;;;;:::o;13237:379::-;13421:3;13443:147;13586:3;13443:147;:::i;:::-;13436:154;;13607:3;13600:10;;13237:379;;;:::o;13622:222::-;13715:4;13753:2;13742:9;13738:18;13730:26;;13766:71;13834:1;13823:9;13819:17;13810:6;13766:71;:::i;:::-;13622:222;;;;:::o;13850:640::-;14045:4;14083:3;14072:9;14068:19;14060:27;;14097:71;14165:1;14154:9;14150:17;14141:6;14097:71;:::i;:::-;14178:72;14246:2;14235:9;14231:18;14222:6;14178:72;:::i;:::-;14260;14328:2;14317:9;14313:18;14304:6;14260:72;:::i;:::-;14379:9;14373:4;14369:20;14364:2;14353:9;14349:18;14342:48;14407:76;14478:4;14469:6;14407:76;:::i;:::-;14399:84;;13850:640;;;;;;;:::o;14496:210::-;14583:4;14621:2;14610:9;14606:18;14598:26;;14634:65;14696:1;14685:9;14681:17;14672:6;14634:65;:::i;:::-;14496:210;;;;:::o;14712:313::-;14825:4;14863:2;14852:9;14848:18;14840:26;;14912:9;14906:4;14902:20;14898:1;14887:9;14883:17;14876:47;14940:78;15013:4;15004:6;14940:78;:::i;:::-;14932:86;;14712:313;;;;:::o;15031:419::-;15197:4;15235:2;15224:9;15220:18;15212:26;;15284:9;15278:4;15274:20;15270:1;15259:9;15255:17;15248:47;15312:131;15438:4;15312:131;:::i;:::-;15304:139;;15031:419;;;:::o;15456:::-;15622:4;15660:2;15649:9;15645:18;15637:26;;15709:9;15703:4;15699:20;15695:1;15684:9;15680:17;15673:47;15737:131;15863:4;15737:131;:::i;:::-;15729:139;;15456:419;;;:::o;15881:::-;16047:4;16085:2;16074:9;16070:18;16062:26;;16134:9;16128:4;16124:20;16120:1;16109:9;16105:17;16098:47;16162:131;16288:4;16162:131;:::i;:::-;16154:139;;15881:419;;;:::o;16306:::-;16472:4;16510:2;16499:9;16495:18;16487:26;;16559:9;16553:4;16549:20;16545:1;16534:9;16530:17;16523:47;16587:131;16713:4;16587:131;:::i;:::-;16579:139;;16306:419;;;:::o;16731:::-;16897:4;16935:2;16924:9;16920:18;16912:26;;16984:9;16978:4;16974:20;16970:1;16959:9;16955:17;16948:47;17012:131;17138:4;17012:131;:::i;:::-;17004:139;;16731:419;;;:::o;17156:::-;17322:4;17360:2;17349:9;17345:18;17337:26;;17409:9;17403:4;17399:20;17395:1;17384:9;17380:17;17373:47;17437:131;17563:4;17437:131;:::i;:::-;17429:139;;17156:419;;;:::o;17581:::-;17747:4;17785:2;17774:9;17770:18;17762:26;;17834:9;17828:4;17824:20;17820:1;17809:9;17805:17;17798:47;17862:131;17988:4;17862:131;:::i;:::-;17854:139;;17581:419;;;:::o;18006:222::-;18099:4;18137:2;18126:9;18122:18;18114:26;;18150:71;18218:1;18207:9;18203:17;18194:6;18150:71;:::i;:::-;18006:222;;;;:::o;18234:218::-;18325:4;18363:2;18352:9;18348:18;18340:26;;18376:69;18442:1;18431:9;18427:17;18418:6;18376:69;:::i;:::-;18234:218;;;;:::o;18458:129::-;18492:6;18519:20;;:::i;:::-;18509:30;;18548:33;18576:4;18568:6;18548:33;:::i;:::-;18458:129;;;:::o;18593:75::-;18626:6;18659:2;18653:9;18643:19;;18593:75;:::o;18674:307::-;18735:4;18825:18;18817:6;18814:30;18811:56;;;18847:18;;:::i;:::-;18811:56;18885:29;18907:6;18885:29;:::i;:::-;18877:37;;18969:4;18963;18959:15;18951:23;;18674:307;;;:::o;18987:308::-;19049:4;19139:18;19131:6;19128:30;19125:56;;;19161:18;;:::i;:::-;19125:56;19199:29;19221:6;19199:29;:::i;:::-;19191:37;;19283:4;19277;19273:15;19265:23;;18987:308;;;:::o;19301:141::-;19350:4;19373:3;19365:11;;19396:3;19393:1;19386:14;19430:4;19427:1;19417:18;19409:26;;19301:141;;;:::o;19448:98::-;19499:6;19533:5;19527:12;19517:22;;19448:98;;;:::o;19552:99::-;19604:6;19638:5;19632:12;19622:22;;19552:99;;;:::o;19657:168::-;19740:11;19774:6;19769:3;19762:19;19814:4;19809:3;19805:14;19790:29;;19657:168;;;;:::o;19831:147::-;19932:11;19969:3;19954:18;;19831:147;;;;:::o;19984:169::-;20068:11;20102:6;20097:3;20090:19;20142:4;20137:3;20133:14;20118:29;;19984:169;;;;:::o;20159:148::-;20261:11;20298:3;20283:18;;20159:148;;;;:::o;20313:281::-;20353:3;20372:20;20390:1;20372:20;:::i;:::-;20367:25;;20406:20;20424:1;20406:20;:::i;:::-;20401:25;;20536:1;20492:42;20488:50;20485:1;20482:57;20479:83;;;20542:18;;:::i;:::-;20479:83;20586:1;20583;20579:9;20572:16;;20313:281;;;;:::o;20600:305::-;20640:3;20659:20;20677:1;20659:20;:::i;:::-;20654:25;;20693:20;20711:1;20693:20;:::i;:::-;20688:25;;20847:1;20779:66;20775:74;20772:1;20769:81;20766:107;;;20853:18;;:::i;:::-;20766:107;20897:1;20894;20890:9;20883:16;;20600:305;;;;:::o;20911:185::-;20951:1;20968:20;20986:1;20968:20;:::i;:::-;20963:25;;21002:20;21020:1;21002:20;:::i;:::-;20997:25;;21041:1;21031:35;;21046:18;;:::i;:::-;21031:35;21088:1;21085;21081:9;21076:14;;20911:185;;;;:::o;21102:348::-;21142:7;21165:20;21183:1;21165:20;:::i;:::-;21160:25;;21199:20;21217:1;21199:20;:::i;:::-;21194:25;;21387:1;21319:66;21315:74;21312:1;21309:81;21304:1;21297:9;21290:17;21286:105;21283:131;;;21394:18;;:::i;:::-;21283:131;21442:1;21439;21435:9;21424:20;;21102:348;;;;:::o;21456:191::-;21496:4;21516:20;21534:1;21516:20;:::i;:::-;21511:25;;21550:20;21568:1;21550:20;:::i;:::-;21545:25;;21589:1;21586;21583:8;21580:34;;;21594:18;;:::i;:::-;21580:34;21639:1;21636;21632:9;21624:17;;21456:191;;;;:::o;21653:::-;21693:4;21713:20;21731:1;21713:20;:::i;:::-;21708:25;;21747:20;21765:1;21747:20;:::i;:::-;21742:25;;21786:1;21783;21780:8;21777:34;;;21791:18;;:::i;:::-;21777:34;21836:1;21833;21829:9;21821:17;;21653:191;;;;:::o;21850:96::-;21887:7;21916:24;21934:5;21916:24;:::i;:::-;21905:35;;21850:96;;;:::o;21952:90::-;21986:7;22029:5;22022:13;22015:21;22004:32;;21952:90;;;:::o;22048:149::-;22084:7;22124:66;22117:5;22113:78;22102:89;;22048:149;;;:::o;22203:126::-;22240:7;22280:42;22273:5;22269:54;22258:65;;22203:126;;;:::o;22335:77::-;22372:7;22401:5;22390:16;;22335:77;;;:::o;22418:93::-;22454:7;22494:10;22487:5;22483:22;22472:33;;22418:93;;;:::o;22517:154::-;22601:6;22596:3;22591;22578:30;22663:1;22654:6;22649:3;22645:16;22638:27;22517:154;;;:::o;22677:307::-;22745:1;22755:113;22769:6;22766:1;22763:13;22755:113;;;22854:1;22849:3;22845:11;22839:18;22835:1;22830:3;22826:11;22819:39;22791:2;22788:1;22784:10;22779:15;;22755:113;;;22886:6;22883:1;22880:13;22877:101;;;22966:1;22957:6;22952:3;22948:16;22941:27;22877:101;22726:258;22677:307;;;:::o;22990:320::-;23034:6;23071:1;23065:4;23061:12;23051:22;;23118:1;23112:4;23108:12;23139:18;23129:81;;23195:4;23187:6;23183:17;23173:27;;23129:81;23257:2;23249:6;23246:14;23226:18;23223:38;23220:84;;;23276:18;;:::i;:::-;23220:84;23041:269;22990:320;;;:::o;23316:281::-;23399:27;23421:4;23399:27;:::i;:::-;23391:6;23387:40;23529:6;23517:10;23514:22;23493:18;23481:10;23478:34;23475:62;23472:88;;;23540:18;;:::i;:::-;23472:88;23580:10;23576:2;23569:22;23359:238;23316:281;;:::o;23603:233::-;23642:3;23665:24;23683:5;23665:24;:::i;:::-;23656:33;;23711:66;23704:5;23701:77;23698:103;;;23781:18;;:::i;:::-;23698:103;23828:1;23821:5;23817:13;23810:20;;23603:233;;;:::o;23842:176::-;23874:1;23891:20;23909:1;23891:20;:::i;:::-;23886:25;;23925:20;23943:1;23925:20;:::i;:::-;23920:25;;23964:1;23954:35;;23969:18;;:::i;:::-;23954:35;24010:1;24007;24003:9;23998:14;;23842:176;;;;:::o;24024:180::-;24072:77;24069:1;24062:88;24169:4;24166:1;24159:15;24193:4;24190:1;24183:15;24210:180;24258:77;24255:1;24248:88;24355:4;24352:1;24345:15;24379:4;24376:1;24369:15;24396:180;24444:77;24441:1;24434:88;24541:4;24538:1;24531:15;24565:4;24562:1;24555:15;24582:180;24630:77;24627:1;24620:88;24727:4;24724:1;24717:15;24751:4;24748:1;24741:15;24768:180;24816:77;24813:1;24806:88;24913:4;24910:1;24903:15;24937:4;24934:1;24927:15;24954:117;25063:1;25060;25053:12;25077:117;25186:1;25183;25176:12;25200:117;25309:1;25306;25299:12;25323:117;25432:1;25429;25422:12;25446:102;25487:6;25538:2;25534:7;25529:2;25522:5;25518:14;25514:28;25504:38;;25446:102;;;:::o;25554:162::-;25694:14;25690:1;25682:6;25678:14;25671:38;25554:162;:::o;25722:159::-;25862:11;25858:1;25850:6;25846:14;25839:35;25722:159;:::o;25887:225::-;26027:34;26023:1;26015:6;26011:14;26004:58;26096:8;26091:2;26083:6;26079:15;26072:33;25887:225;:::o;26118:174::-;26258:26;26254:1;26246:6;26242:14;26235:50;26118:174;:::o;26298:158::-;26438:10;26434:1;26426:6;26422:14;26415:34;26298:158;:::o;26462:180::-;26602:32;26598:1;26590:6;26586:14;26579:56;26462:180;:::o;26648:182::-;26788:34;26784:1;26776:6;26772:14;26765:58;26648:182;:::o;26836:114::-;;:::o;26956:122::-;27029:24;27047:5;27029:24;:::i;:::-;27022:5;27019:35;27009:63;;27068:1;27065;27058:12;27009:63;26956:122;:::o;27084:116::-;27154:21;27169:5;27154:21;:::i;:::-;27147:5;27144:32;27134:60;;27190:1;27187;27180:12;27134:60;27084:116;:::o;27206:120::-;27278:23;27295:5;27278:23;:::i;:::-;27271:5;27268:34;27258:62;;27316:1;27313;27306:12;27258:62;27206:120;:::o;27332:122::-;27405:24;27423:5;27405:24;:::i;:::-;27398:5;27395:35;27385:63;;27444:1;27441;27434:12;27385:63;27332:122;:::o
Swarm Source
ipfs://e5305ea5caee0044311ad1d76880e2e011a6b6523b17a1dcfdc57e93a4bc3e1d
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.