ERC-721
Overview
Max Total Supply
5,000 CD
Holders
1,433
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 CDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CatdogsClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-16 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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/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: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: CatDogs.sol pragma solidity ^0.8.0; contract CatdogsClub is ERC721A, Ownable { using Strings for uint256; mapping(address => uint256) public publicClaimed; string public baseURI; string public baseExtension = ".json"; bool public paused = true; uint256 public maxPublic = 2; uint256 public maxSupply = 10000; constructor(string memory _initBaseURI) ERC721A("Catdogs Club", "CD") { setBaseURI(_initBaseURI); } // public mint function mint(uint256 quantity) external payable { uint256 supply = totalSupply(); require(!paused, "The contract is paused!"); require(quantity > 0, "Quantity Must Be Higher Than Zero!"); require(supply + quantity <= maxSupply, "Max Supply Reached!"); if (msg.sender != owner()) { require( publicClaimed[msg.sender] + quantity <= maxPublic, "You're not allowed to mint this Much!" ); require( quantity <= maxPublic, "You're Not Allowed To Mint more than maxMint Amount" ); } publicClaimed[msg.sender] += quantity; _safeMint(msg.sender, quantity); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } function setMax(uint256 _public) public onlyOwner { maxPublic = _public; } function airdropNFT(uint256 quantity, address _address) public onlyOwner { require(!paused, "The contract is paused!"); _safeMint(_address, quantity); } function setMaxSupply(uint256 _amount) public onlyOwner { maxSupply = _amount; } function flipSaleState() public onlyOwner { paused = !paused; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function withdraw() public onlyOwner { (bool ts, ) = payable(owner()).call{value: address(this).balance}(""); require(ts); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airdropNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_public","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000345565b506001600c60006101000a81548160ff0219169083151502179055506002600d55612710600e553480156200008557600080fd5b5060405162004185380380620041858339818101604052810190620000ab919062000473565b6040518060400160405280600c81526020017f436174646f677320436c756200000000000000000000000000000000000000008152506040518060400160405280600281526020017f434400000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012f92919062000345565b5080600390805190602001906200014892919062000345565b50620001596200019960201b60201c565b60008190555050506200018162000175620001a260201b60201c565b620001aa60201b60201c565b62000192816200027060201b60201c565b50620006cb565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000280620001a260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a66200031b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f690620004eb565b60405180910390fd5b80600a90805190602001906200031792919062000345565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035390620005b3565b90600052602060002090601f016020900481019282620003775760008555620003c3565b82601f106200039257805160ff1916838001178555620003c3565b82800160010185558215620003c3579182015b82811115620003c2578251825591602001919060010190620003a5565b5b509050620003d29190620003d6565b5090565b5b80821115620003f1576000816000905550600101620003d7565b5090565b60006200040c620004068462000536565b6200050d565b9050828152602081018484840111156200042b576200042a62000682565b5b620004388482856200057d565b509392505050565b600082601f8301126200045857620004576200067d565b5b81516200046a848260208601620003f5565b91505092915050565b6000602082840312156200048c576200048b6200068c565b5b600082015167ffffffffffffffff811115620004ad57620004ac62000687565b5b620004bb8482850162000440565b91505092915050565b6000620004d36020836200056c565b9150620004e082620006a2565b602082019050919050565b600060208201905081810360008301526200050681620004c4565b9050919050565b6000620005196200052c565b9050620005278282620005e9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200055457620005536200064e565b5b6200055f8262000691565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200059d57808201518184015260208101905062000580565b83811115620005ad576000848401525b50505050565b60006002820490506001821680620005cc57607f821691505b60208210811415620005e357620005e26200061f565b5b50919050565b620005f48262000691565b810181811067ffffffffffffffff821117156200061657620006156200064e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613aaa80620006db6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063b5b1cd7c11610095578063d5abeb0111610064578063d5abeb0114610675578063da3ef23f146106a0578063e985e9c5146106c9578063f2fde38b14610706576101d8565b8063b5b1cd7c146105a7578063b88d4fde146105e4578063c66828621461060d578063c87b56dd14610638576101d8565b80638da5cb5b116100d15780638da5cb5b1461050c57806395d89b4114610537578063a0712d6814610562578063a22cb4651461057e576101d8565b806370a0823114610464578063715018a6146104a1578063780af7b8146104b85780637dc42975146104e1576101d8565b806334918dfd1161017a5780635c975abb116101495780635c975abb146103a85780636352211e146103d35780636c0360eb146104105780636f8b44b01461043b576101d8565b806334918dfd146103285780633ccfd60b1461033f57806342842e0e1461035657806355f804b31461037f576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab5780631fe9eabc146102d657806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612e28565b61072f565b604051610211919061326f565b60405180910390f35b34801561022657600080fd5b5061022f610811565b60405161023c919061328a565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612ecb565b6108a3565b6040516102799190613208565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612de8565b61091f565b005b3480156102b757600080fd5b506102c0610a2a565b6040516102cd91906133ac565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612ecb565b610a41565b005b34801561030b57600080fd5b5061032660048036038101906103219190612cd2565b610ac7565b005b34801561033457600080fd5b5061033d610ad7565b005b34801561034b57600080fd5b50610354610b7f565b005b34801561036257600080fd5b5061037d60048036038101906103789190612cd2565b610c7b565b005b34801561038b57600080fd5b506103a660048036038101906103a19190612e82565b610c9b565b005b3480156103b457600080fd5b506103bd610d31565b6040516103ca919061326f565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612ecb565b610d44565b6040516104079190613208565b60405180910390f35b34801561041c57600080fd5b50610425610d5a565b604051610432919061328a565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190612ecb565b610de8565b005b34801561047057600080fd5b5061048b60048036038101906104869190612c65565b610e6e565b60405161049891906133ac565b60405180910390f35b3480156104ad57600080fd5b506104b6610f3e565b005b3480156104c457600080fd5b506104df60048036038101906104da9190612ef8565b610fc6565b005b3480156104ed57600080fd5b506104f66110a0565b60405161050391906133ac565b60405180910390f35b34801561051857600080fd5b506105216110a6565b60405161052e9190613208565b60405180910390f35b34801561054357600080fd5b5061054c6110d0565b604051610559919061328a565b60405180910390f35b61057c60048036038101906105779190612ecb565b611162565b005b34801561058a57600080fd5b506105a560048036038101906105a09190612da8565b6113c4565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190612c65565b61153c565b6040516105db91906133ac565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612d25565b611554565b005b34801561061957600080fd5b506106226115d0565b60405161062f919061328a565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190612ecb565b61165e565b60405161066c919061328a565b60405180910390f35b34801561068157600080fd5b5061068a611708565b60405161069791906133ac565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612e82565b61170e565b005b3480156106d557600080fd5b506106f060048036038101906106eb9190612c92565b6117a4565b6040516106fd919061326f565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612c65565b611838565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080a575061080982611930565b5b9050919050565b60606002805461082090613622565b80601f016020809104026020016040519081016040528092919081815260200182805461084c90613622565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b60006108ae8261199a565b6108e4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092a82610d44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610992576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b16119e8565b73ffffffffffffffffffffffffffffffffffffffff16141580156109e357506109e1816109dc6119e8565b6117a4565b155b15610a1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a258383836119f0565b505050565b6000610a34611aa2565b6001546000540303905090565b610a496119e8565b73ffffffffffffffffffffffffffffffffffffffff16610a676110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab4906132ec565b60405180910390fd5b80600d8190555050565b610ad2838383611aab565b505050565b610adf6119e8565b73ffffffffffffffffffffffffffffffffffffffff16610afd6110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a906132ec565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610b876119e8565b73ffffffffffffffffffffffffffffffffffffffff16610ba56110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf2906132ec565b60405180910390fd5b6000610c056110a6565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c28906131f3565b60006040518083038185875af1925050503d8060008114610c65576040519150601f19603f3d011682016040523d82523d6000602084013e610c6a565b606091505b5050905080610c7857600080fd5b50565b610c9683838360405180602001604052806000815250611554565b505050565b610ca36119e8565b73ffffffffffffffffffffffffffffffffffffffff16610cc16110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e906132ec565b60405180910390fd5b80600a9080519060200190610d2d929190612a36565b5050565b600c60009054906101000a900460ff1681565b6000610d4f82611f61565b600001519050919050565b600a8054610d6790613622565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9390613622565b8015610de05780601f10610db557610100808354040283529160200191610de0565b820191906000526020600020905b815481529060010190602001808311610dc357829003601f168201915b505050505081565b610df06119e8565b73ffffffffffffffffffffffffffffffffffffffff16610e0e6110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b906132ec565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f466119e8565b73ffffffffffffffffffffffffffffffffffffffff16610f646110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906132ec565b60405180910390fd5b610fc460006121f0565b565b610fce6119e8565b73ffffffffffffffffffffffffffffffffffffffff16610fec6110a6565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611039906132ec565b60405180910390fd5b600c60009054906101000a900460ff1615611092576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110899061330c565b60405180910390fd5b61109c81836122b6565b5050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110df90613622565b80601f016020809104026020016040519081016040528092919081815260200182805461110b90613622565b80156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b5050505050905090565b600061116c610a2a565b9050600c60009054906101000a900460ff16156111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b59061330c565b60405180910390fd5b60008211611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f89061334c565b60405180910390fd5b600e54828261121091906134b1565b1115611251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112489061338c565b60405180910390fd5b6112596110a6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461136057600d5482600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d991906134b1565b111561131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906132ac565b60405180910390fd5b600d5482111561135f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113569061336c565b60405180910390fd5b5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113af91906134b1565b925050819055506113c033836122b6565b5050565b6113cc6119e8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611431576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061143e6119e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114eb6119e8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611530919061326f565b60405180910390a35050565b60096020528060005260406000206000915090505481565b61155f848484611aab565b61157e8373ffffffffffffffffffffffffffffffffffffffff166122d4565b80156115935750611591848484846122f7565b155b156115ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b80546115dd90613622565b80601f016020809104026020016040519081016040528092919081815260200182805461160990613622565b80156116565780601f1061162b57610100808354040283529160200191611656565b820191906000526020600020905b81548152906001019060200180831161163957829003601f168201915b505050505081565b60606116698261199a565b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f9061332c565b60405180910390fd5b60006116b2612457565b905060008151116116d25760405180602001604052806000815250611700565b806116dc846124e9565b600b6040516020016116f0939291906131c2565b6040516020818303038152906040525b915050919050565b600e5481565b6117166119e8565b73ffffffffffffffffffffffffffffffffffffffff166117346110a6565b73ffffffffffffffffffffffffffffffffffffffff161461178a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611781906132ec565b60405180910390fd5b80600b90805190602001906117a0929190612a36565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118406119e8565b73ffffffffffffffffffffffffffffffffffffffff1661185e6110a6565b73ffffffffffffffffffffffffffffffffffffffff16146118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab906132ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b906132cc565b60405180910390fd5b61192d816121f0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119a5611aa2565b111580156119b4575060005482105b80156119e1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ab682611f61565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b21576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b426119e8565b73ffffffffffffffffffffffffffffffffffffffff161480611b715750611b7085611b6b6119e8565b6117a4565b5b80611bb65750611b7f6119e8565b73ffffffffffffffffffffffffffffffffffffffff16611b9e846108a3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c56576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c63858585600161264a565b611c6f600084876119f0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611eef576000548214611eee57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f5a8585856001612650565b5050505050565b611f69612abc565b600082905080611f77611aa2565b11158015611f86575060005481105b156121b9576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516121b757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461209b5780925050506121eb565b5b6001156121b657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b15780925050506121eb565b61209c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122d0828260405180602001604052806000815250612656565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261231d6119e8565b8786866040518563ffffffff1660e01b815260040161233f9493929190613223565b602060405180830381600087803b15801561235957600080fd5b505af192505050801561238a57506040513d601f19601f820116820180604052508101906123879190612e55565b60015b612404573d80600081146123ba576040519150601f19603f3d011682016040523d82523d6000602084013e6123bf565b606091505b506000815114156123fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461246690613622565b80601f016020809104026020016040519081016040528092919081815260200182805461249290613622565b80156124df5780601f106124b4576101008083540402835291602001916124df565b820191906000526020600020905b8154815290600101906020018083116124c257829003601f168201915b5050505050905090565b60606000821415612531576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612645565b600082905060005b6000821461256357808061254c90613685565b915050600a8261255c9190613507565b9150612539565b60008167ffffffffffffffff81111561257f5761257e6137bb565b5b6040519080825280601f01601f1916602001820160405280156125b15781602001600182028036833780820191505090505b5090505b6000851461263e576001826125ca9190613538565b9150600a856125d991906136ce565b60306125e591906134b1565b60f81b8183815181106125fb576125fa61378c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126379190613507565b94506125b5565b8093505050505b919050565b50505050565b50505050565b6126638383836001612668565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126d5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612710576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271d600086838761264a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156128e757506128e68773ffffffffffffffffffffffffffffffffffffffff166122d4565b5b156129ad575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461295c60008884806001019550886122f7565b612992576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128ed5782600054146129a857600080fd5b612a19565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129ae575b816000819055505050612a2f6000868387612650565b5050505050565b828054612a4290613622565b90600052602060002090601f016020900481019282612a645760008555612aab565b82601f10612a7d57805160ff1916838001178555612aab565b82800160010185558215612aab579182015b82811115612aaa578251825591602001919060010190612a8f565b5b509050612ab89190612aff565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b18576000816000905550600101612b00565b5090565b6000612b2f612b2a846133ec565b6133c7565b905082815260208101848484011115612b4b57612b4a6137ef565b5b612b568482856135e0565b509392505050565b6000612b71612b6c8461341d565b6133c7565b905082815260208101848484011115612b8d57612b8c6137ef565b5b612b988482856135e0565b509392505050565b600081359050612baf81613a18565b92915050565b600081359050612bc481613a2f565b92915050565b600081359050612bd981613a46565b92915050565b600081519050612bee81613a46565b92915050565b600082601f830112612c0957612c086137ea565b5b8135612c19848260208601612b1c565b91505092915050565b600082601f830112612c3757612c366137ea565b5b8135612c47848260208601612b5e565b91505092915050565b600081359050612c5f81613a5d565b92915050565b600060208284031215612c7b57612c7a6137f9565b5b6000612c8984828501612ba0565b91505092915050565b60008060408385031215612ca957612ca86137f9565b5b6000612cb785828601612ba0565b9250506020612cc885828601612ba0565b9150509250929050565b600080600060608486031215612ceb57612cea6137f9565b5b6000612cf986828701612ba0565b9350506020612d0a86828701612ba0565b9250506040612d1b86828701612c50565b9150509250925092565b60008060008060808587031215612d3f57612d3e6137f9565b5b6000612d4d87828801612ba0565b9450506020612d5e87828801612ba0565b9350506040612d6f87828801612c50565b925050606085013567ffffffffffffffff811115612d9057612d8f6137f4565b5b612d9c87828801612bf4565b91505092959194509250565b60008060408385031215612dbf57612dbe6137f9565b5b6000612dcd85828601612ba0565b9250506020612dde85828601612bb5565b9150509250929050565b60008060408385031215612dff57612dfe6137f9565b5b6000612e0d85828601612ba0565b9250506020612e1e85828601612c50565b9150509250929050565b600060208284031215612e3e57612e3d6137f9565b5b6000612e4c84828501612bca565b91505092915050565b600060208284031215612e6b57612e6a6137f9565b5b6000612e7984828501612bdf565b91505092915050565b600060208284031215612e9857612e976137f9565b5b600082013567ffffffffffffffff811115612eb657612eb56137f4565b5b612ec284828501612c22565b91505092915050565b600060208284031215612ee157612ee06137f9565b5b6000612eef84828501612c50565b91505092915050565b60008060408385031215612f0f57612f0e6137f9565b5b6000612f1d85828601612c50565b9250506020612f2e85828601612ba0565b9150509250929050565b612f418161356c565b82525050565b612f508161357e565b82525050565b6000612f6182613463565b612f6b8185613479565b9350612f7b8185602086016135ef565b612f84816137fe565b840191505092915050565b6000612f9a8261346e565b612fa48185613495565b9350612fb48185602086016135ef565b612fbd816137fe565b840191505092915050565b6000612fd38261346e565b612fdd81856134a6565b9350612fed8185602086016135ef565b80840191505092915050565b6000815461300681613622565b61301081866134a6565b9450600182166000811461302b576001811461303c5761306f565b60ff1983168652818601935061306f565b6130458561344e565b60005b8381101561306757815481890152600182019150602081019050613048565b838801955050505b50505092915050565b6000613085602583613495565b91506130908261380f565b604082019050919050565b60006130a8602683613495565b91506130b38261385e565b604082019050919050565b60006130cb602083613495565b91506130d6826138ad565b602082019050919050565b60006130ee601783613495565b91506130f9826138d6565b602082019050919050565b6000613111602f83613495565b915061311c826138ff565b604082019050919050565b6000613134602283613495565b915061313f8261394e565b604082019050919050565b6000613157603383613495565b91506131628261399d565b604082019050919050565b600061317a60008361348a565b9150613185826139ec565b600082019050919050565b600061319d601383613495565b91506131a8826139ef565b602082019050919050565b6131bc816135d6565b82525050565b60006131ce8286612fc8565b91506131da8285612fc8565b91506131e68284612ff9565b9150819050949350505050565b60006131fe8261316d565b9150819050919050565b600060208201905061321d6000830184612f38565b92915050565b60006080820190506132386000830187612f38565b6132456020830186612f38565b61325260408301856131b3565b81810360608301526132648184612f56565b905095945050505050565b60006020820190506132846000830184612f47565b92915050565b600060208201905081810360008301526132a48184612f8f565b905092915050565b600060208201905081810360008301526132c581613078565b9050919050565b600060208201905081810360008301526132e58161309b565b9050919050565b60006020820190508181036000830152613305816130be565b9050919050565b60006020820190508181036000830152613325816130e1565b9050919050565b6000602082019050818103600083015261334581613104565b9050919050565b6000602082019050818103600083015261336581613127565b9050919050565b600060208201905081810360008301526133858161314a565b9050919050565b600060208201905081810360008301526133a581613190565b9050919050565b60006020820190506133c160008301846131b3565b92915050565b60006133d16133e2565b90506133dd8282613654565b919050565b6000604051905090565b600067ffffffffffffffff821115613407576134066137bb565b5b613410826137fe565b9050602081019050919050565b600067ffffffffffffffff821115613438576134376137bb565b5b613441826137fe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134bc826135d6565b91506134c7836135d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134fc576134fb6136ff565b5b828201905092915050565b6000613512826135d6565b915061351d836135d6565b92508261352d5761352c61372e565b5b828204905092915050565b6000613543826135d6565b915061354e836135d6565b925082821015613561576135606136ff565b5b828203905092915050565b6000613577826135b6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561360d5780820151818401526020810190506135f2565b8381111561361c576000848401525b50505050565b6000600282049050600182168061363a57607f821691505b6020821081141561364e5761364d61375d565b5b50919050565b61365d826137fe565b810181811067ffffffffffffffff8211171561367c5761367b6137bb565b5b80604052505050565b6000613690826135d6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136c3576136c26136ff565b5b600182019050919050565b60006136d9826135d6565b91506136e4836135d6565b9250826136f4576136f361372e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f72652060008201527f7468616e206d61784d696e7420416d6f756e7400000000000000000000000000602082015250565b50565b7f4d617820537570706c7920526561636865642100000000000000000000000000600082015250565b613a218161356c565b8114613a2c57600080fd5b50565b613a388161357e565b8114613a4357600080fd5b50565b613a4f8161358a565b8114613a5a57600080fd5b50565b613a66816135d6565b8114613a7157600080fd5b5056fea26469706673582212205298068af8ef7dc0c33d913137bc1dba3175f619aeadd49f3ed3b5d6c8f645a364736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d585241656f3441336a7058687152665657344533667656566d76596d507879343646507359786178783641772f00000000000000000000
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806370a0823111610102578063b5b1cd7c11610095578063d5abeb0111610064578063d5abeb0114610675578063da3ef23f146106a0578063e985e9c5146106c9578063f2fde38b14610706576101d8565b8063b5b1cd7c146105a7578063b88d4fde146105e4578063c66828621461060d578063c87b56dd14610638576101d8565b80638da5cb5b116100d15780638da5cb5b1461050c57806395d89b4114610537578063a0712d6814610562578063a22cb4651461057e576101d8565b806370a0823114610464578063715018a6146104a1578063780af7b8146104b85780637dc42975146104e1576101d8565b806334918dfd1161017a5780635c975abb116101495780635c975abb146103a85780636352211e146103d35780636c0360eb146104105780636f8b44b01461043b576101d8565b806334918dfd146103285780633ccfd60b1461033f57806342842e0e1461035657806355f804b31461037f576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab5780631fe9eabc146102d657806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612e28565b61072f565b604051610211919061326f565b60405180910390f35b34801561022657600080fd5b5061022f610811565b60405161023c919061328a565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612ecb565b6108a3565b6040516102799190613208565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612de8565b61091f565b005b3480156102b757600080fd5b506102c0610a2a565b6040516102cd91906133ac565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612ecb565b610a41565b005b34801561030b57600080fd5b5061032660048036038101906103219190612cd2565b610ac7565b005b34801561033457600080fd5b5061033d610ad7565b005b34801561034b57600080fd5b50610354610b7f565b005b34801561036257600080fd5b5061037d60048036038101906103789190612cd2565b610c7b565b005b34801561038b57600080fd5b506103a660048036038101906103a19190612e82565b610c9b565b005b3480156103b457600080fd5b506103bd610d31565b6040516103ca919061326f565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612ecb565b610d44565b6040516104079190613208565b60405180910390f35b34801561041c57600080fd5b50610425610d5a565b604051610432919061328a565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190612ecb565b610de8565b005b34801561047057600080fd5b5061048b60048036038101906104869190612c65565b610e6e565b60405161049891906133ac565b60405180910390f35b3480156104ad57600080fd5b506104b6610f3e565b005b3480156104c457600080fd5b506104df60048036038101906104da9190612ef8565b610fc6565b005b3480156104ed57600080fd5b506104f66110a0565b60405161050391906133ac565b60405180910390f35b34801561051857600080fd5b506105216110a6565b60405161052e9190613208565b60405180910390f35b34801561054357600080fd5b5061054c6110d0565b604051610559919061328a565b60405180910390f35b61057c60048036038101906105779190612ecb565b611162565b005b34801561058a57600080fd5b506105a560048036038101906105a09190612da8565b6113c4565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190612c65565b61153c565b6040516105db91906133ac565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612d25565b611554565b005b34801561061957600080fd5b506106226115d0565b60405161062f919061328a565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190612ecb565b61165e565b60405161066c919061328a565b60405180910390f35b34801561068157600080fd5b5061068a611708565b60405161069791906133ac565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612e82565b61170e565b005b3480156106d557600080fd5b506106f060048036038101906106eb9190612c92565b6117a4565b6040516106fd919061326f565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612c65565b611838565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080a575061080982611930565b5b9050919050565b60606002805461082090613622565b80601f016020809104026020016040519081016040528092919081815260200182805461084c90613622565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b60006108ae8261199a565b6108e4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092a82610d44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610992576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b16119e8565b73ffffffffffffffffffffffffffffffffffffffff16141580156109e357506109e1816109dc6119e8565b6117a4565b155b15610a1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a258383836119f0565b505050565b6000610a34611aa2565b6001546000540303905090565b610a496119e8565b73ffffffffffffffffffffffffffffffffffffffff16610a676110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab4906132ec565b60405180910390fd5b80600d8190555050565b610ad2838383611aab565b505050565b610adf6119e8565b73ffffffffffffffffffffffffffffffffffffffff16610afd6110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a906132ec565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610b876119e8565b73ffffffffffffffffffffffffffffffffffffffff16610ba56110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf2906132ec565b60405180910390fd5b6000610c056110a6565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c28906131f3565b60006040518083038185875af1925050503d8060008114610c65576040519150601f19603f3d011682016040523d82523d6000602084013e610c6a565b606091505b5050905080610c7857600080fd5b50565b610c9683838360405180602001604052806000815250611554565b505050565b610ca36119e8565b73ffffffffffffffffffffffffffffffffffffffff16610cc16110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e906132ec565b60405180910390fd5b80600a9080519060200190610d2d929190612a36565b5050565b600c60009054906101000a900460ff1681565b6000610d4f82611f61565b600001519050919050565b600a8054610d6790613622565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9390613622565b8015610de05780601f10610db557610100808354040283529160200191610de0565b820191906000526020600020905b815481529060010190602001808311610dc357829003601f168201915b505050505081565b610df06119e8565b73ffffffffffffffffffffffffffffffffffffffff16610e0e6110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b906132ec565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f466119e8565b73ffffffffffffffffffffffffffffffffffffffff16610f646110a6565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906132ec565b60405180910390fd5b610fc460006121f0565b565b610fce6119e8565b73ffffffffffffffffffffffffffffffffffffffff16610fec6110a6565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611039906132ec565b60405180910390fd5b600c60009054906101000a900460ff1615611092576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110899061330c565b60405180910390fd5b61109c81836122b6565b5050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110df90613622565b80601f016020809104026020016040519081016040528092919081815260200182805461110b90613622565b80156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b5050505050905090565b600061116c610a2a565b9050600c60009054906101000a900460ff16156111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b59061330c565b60405180910390fd5b60008211611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f89061334c565b60405180910390fd5b600e54828261121091906134b1565b1115611251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112489061338c565b60405180910390fd5b6112596110a6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461136057600d5482600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d991906134b1565b111561131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906132ac565b60405180910390fd5b600d5482111561135f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113569061336c565b60405180910390fd5b5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113af91906134b1565b925050819055506113c033836122b6565b5050565b6113cc6119e8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611431576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061143e6119e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114eb6119e8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611530919061326f565b60405180910390a35050565b60096020528060005260406000206000915090505481565b61155f848484611aab565b61157e8373ffffffffffffffffffffffffffffffffffffffff166122d4565b80156115935750611591848484846122f7565b155b156115ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b80546115dd90613622565b80601f016020809104026020016040519081016040528092919081815260200182805461160990613622565b80156116565780601f1061162b57610100808354040283529160200191611656565b820191906000526020600020905b81548152906001019060200180831161163957829003601f168201915b505050505081565b60606116698261199a565b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f9061332c565b60405180910390fd5b60006116b2612457565b905060008151116116d25760405180602001604052806000815250611700565b806116dc846124e9565b600b6040516020016116f0939291906131c2565b6040516020818303038152906040525b915050919050565b600e5481565b6117166119e8565b73ffffffffffffffffffffffffffffffffffffffff166117346110a6565b73ffffffffffffffffffffffffffffffffffffffff161461178a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611781906132ec565b60405180910390fd5b80600b90805190602001906117a0929190612a36565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118406119e8565b73ffffffffffffffffffffffffffffffffffffffff1661185e6110a6565b73ffffffffffffffffffffffffffffffffffffffff16146118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab906132ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b906132cc565b60405180910390fd5b61192d816121f0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119a5611aa2565b111580156119b4575060005482105b80156119e1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ab682611f61565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b21576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b426119e8565b73ffffffffffffffffffffffffffffffffffffffff161480611b715750611b7085611b6b6119e8565b6117a4565b5b80611bb65750611b7f6119e8565b73ffffffffffffffffffffffffffffffffffffffff16611b9e846108a3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c56576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c63858585600161264a565b611c6f600084876119f0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611eef576000548214611eee57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f5a8585856001612650565b5050505050565b611f69612abc565b600082905080611f77611aa2565b11158015611f86575060005481105b156121b9576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516121b757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461209b5780925050506121eb565b5b6001156121b657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b15780925050506121eb565b61209c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122d0828260405180602001604052806000815250612656565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261231d6119e8565b8786866040518563ffffffff1660e01b815260040161233f9493929190613223565b602060405180830381600087803b15801561235957600080fd5b505af192505050801561238a57506040513d601f19601f820116820180604052508101906123879190612e55565b60015b612404573d80600081146123ba576040519150601f19603f3d011682016040523d82523d6000602084013e6123bf565b606091505b506000815114156123fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461246690613622565b80601f016020809104026020016040519081016040528092919081815260200182805461249290613622565b80156124df5780601f106124b4576101008083540402835291602001916124df565b820191906000526020600020905b8154815290600101906020018083116124c257829003601f168201915b5050505050905090565b60606000821415612531576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612645565b600082905060005b6000821461256357808061254c90613685565b915050600a8261255c9190613507565b9150612539565b60008167ffffffffffffffff81111561257f5761257e6137bb565b5b6040519080825280601f01601f1916602001820160405280156125b15781602001600182028036833780820191505090505b5090505b6000851461263e576001826125ca9190613538565b9150600a856125d991906136ce565b60306125e591906134b1565b60f81b8183815181106125fb576125fa61378c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126379190613507565b94506125b5565b8093505050505b919050565b50505050565b50505050565b6126638383836001612668565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126d5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612710576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271d600086838761264a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156128e757506128e68773ffffffffffffffffffffffffffffffffffffffff166122d4565b5b156129ad575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461295c60008884806001019550886122f7565b612992576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128ed5782600054146129a857600080fd5b612a19565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129ae575b816000819055505050612a2f6000868387612650565b5050505050565b828054612a4290613622565b90600052602060002090601f016020900481019282612a645760008555612aab565b82601f10612a7d57805160ff1916838001178555612aab565b82800160010185558215612aab579182015b82811115612aaa578251825591602001919060010190612a8f565b5b509050612ab89190612aff565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b18576000816000905550600101612b00565b5090565b6000612b2f612b2a846133ec565b6133c7565b905082815260208101848484011115612b4b57612b4a6137ef565b5b612b568482856135e0565b509392505050565b6000612b71612b6c8461341d565b6133c7565b905082815260208101848484011115612b8d57612b8c6137ef565b5b612b988482856135e0565b509392505050565b600081359050612baf81613a18565b92915050565b600081359050612bc481613a2f565b92915050565b600081359050612bd981613a46565b92915050565b600081519050612bee81613a46565b92915050565b600082601f830112612c0957612c086137ea565b5b8135612c19848260208601612b1c565b91505092915050565b600082601f830112612c3757612c366137ea565b5b8135612c47848260208601612b5e565b91505092915050565b600081359050612c5f81613a5d565b92915050565b600060208284031215612c7b57612c7a6137f9565b5b6000612c8984828501612ba0565b91505092915050565b60008060408385031215612ca957612ca86137f9565b5b6000612cb785828601612ba0565b9250506020612cc885828601612ba0565b9150509250929050565b600080600060608486031215612ceb57612cea6137f9565b5b6000612cf986828701612ba0565b9350506020612d0a86828701612ba0565b9250506040612d1b86828701612c50565b9150509250925092565b60008060008060808587031215612d3f57612d3e6137f9565b5b6000612d4d87828801612ba0565b9450506020612d5e87828801612ba0565b9350506040612d6f87828801612c50565b925050606085013567ffffffffffffffff811115612d9057612d8f6137f4565b5b612d9c87828801612bf4565b91505092959194509250565b60008060408385031215612dbf57612dbe6137f9565b5b6000612dcd85828601612ba0565b9250506020612dde85828601612bb5565b9150509250929050565b60008060408385031215612dff57612dfe6137f9565b5b6000612e0d85828601612ba0565b9250506020612e1e85828601612c50565b9150509250929050565b600060208284031215612e3e57612e3d6137f9565b5b6000612e4c84828501612bca565b91505092915050565b600060208284031215612e6b57612e6a6137f9565b5b6000612e7984828501612bdf565b91505092915050565b600060208284031215612e9857612e976137f9565b5b600082013567ffffffffffffffff811115612eb657612eb56137f4565b5b612ec284828501612c22565b91505092915050565b600060208284031215612ee157612ee06137f9565b5b6000612eef84828501612c50565b91505092915050565b60008060408385031215612f0f57612f0e6137f9565b5b6000612f1d85828601612c50565b9250506020612f2e85828601612ba0565b9150509250929050565b612f418161356c565b82525050565b612f508161357e565b82525050565b6000612f6182613463565b612f6b8185613479565b9350612f7b8185602086016135ef565b612f84816137fe565b840191505092915050565b6000612f9a8261346e565b612fa48185613495565b9350612fb48185602086016135ef565b612fbd816137fe565b840191505092915050565b6000612fd38261346e565b612fdd81856134a6565b9350612fed8185602086016135ef565b80840191505092915050565b6000815461300681613622565b61301081866134a6565b9450600182166000811461302b576001811461303c5761306f565b60ff1983168652818601935061306f565b6130458561344e565b60005b8381101561306757815481890152600182019150602081019050613048565b838801955050505b50505092915050565b6000613085602583613495565b91506130908261380f565b604082019050919050565b60006130a8602683613495565b91506130b38261385e565b604082019050919050565b60006130cb602083613495565b91506130d6826138ad565b602082019050919050565b60006130ee601783613495565b91506130f9826138d6565b602082019050919050565b6000613111602f83613495565b915061311c826138ff565b604082019050919050565b6000613134602283613495565b915061313f8261394e565b604082019050919050565b6000613157603383613495565b91506131628261399d565b604082019050919050565b600061317a60008361348a565b9150613185826139ec565b600082019050919050565b600061319d601383613495565b91506131a8826139ef565b602082019050919050565b6131bc816135d6565b82525050565b60006131ce8286612fc8565b91506131da8285612fc8565b91506131e68284612ff9565b9150819050949350505050565b60006131fe8261316d565b9150819050919050565b600060208201905061321d6000830184612f38565b92915050565b60006080820190506132386000830187612f38565b6132456020830186612f38565b61325260408301856131b3565b81810360608301526132648184612f56565b905095945050505050565b60006020820190506132846000830184612f47565b92915050565b600060208201905081810360008301526132a48184612f8f565b905092915050565b600060208201905081810360008301526132c581613078565b9050919050565b600060208201905081810360008301526132e58161309b565b9050919050565b60006020820190508181036000830152613305816130be565b9050919050565b60006020820190508181036000830152613325816130e1565b9050919050565b6000602082019050818103600083015261334581613104565b9050919050565b6000602082019050818103600083015261336581613127565b9050919050565b600060208201905081810360008301526133858161314a565b9050919050565b600060208201905081810360008301526133a581613190565b9050919050565b60006020820190506133c160008301846131b3565b92915050565b60006133d16133e2565b90506133dd8282613654565b919050565b6000604051905090565b600067ffffffffffffffff821115613407576134066137bb565b5b613410826137fe565b9050602081019050919050565b600067ffffffffffffffff821115613438576134376137bb565b5b613441826137fe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134bc826135d6565b91506134c7836135d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134fc576134fb6136ff565b5b828201905092915050565b6000613512826135d6565b915061351d836135d6565b92508261352d5761352c61372e565b5b828204905092915050565b6000613543826135d6565b915061354e836135d6565b925082821015613561576135606136ff565b5b828203905092915050565b6000613577826135b6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561360d5780820151818401526020810190506135f2565b8381111561361c576000848401525b50505050565b6000600282049050600182168061363a57607f821691505b6020821081141561364e5761364d61375d565b5b50919050565b61365d826137fe565b810181811067ffffffffffffffff8211171561367c5761367b6137bb565b5b80604052505050565b6000613690826135d6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136c3576136c26136ff565b5b600182019050919050565b60006136d9826135d6565b91506136e4836135d6565b9250826136f4576136f361372e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f72652060008201527f7468616e206d61784d696e7420416d6f756e7400000000000000000000000000602082015250565b50565b7f4d617820537570706c7920526561636865642100000000000000000000000000600082015250565b613a218161356c565b8114613a2c57600080fd5b50565b613a388161357e565b8114613a4357600080fd5b50565b613a4f8161358a565b8114613a5a57600080fd5b50565b613a66816135d6565b8114613a7157600080fd5b5056fea26469706673582212205298068af8ef7dc0c33d913137bc1dba3175f619aeadd49f3ed3b5d6c8f645a364736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d585241656f3441336a7058687152665657344533667656566d76596d507879343646507359786178783641772f00000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmXRAeo4A3jpXhqRfVW4E3fvVVmvYmPxy46FPsYxaxx6Aw/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d585241656f3441336a7058687152665657344533667656
Arg [3] : 566d76596d507879343646507359786178783641772f00000000000000000000
Deployed Bytecode Sourcemap
44796:2882:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26992:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30105:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31608:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31171:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26241:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46791:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32473:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47172:77;;;;;;;;;;;;;:::i;:::-;;47528:147;;;;;;;;;;;;;:::i;:::-;;32714:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47257:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45005:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29913:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44933:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47070:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27361:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;46887:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45037:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30274:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45256:744;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31884:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44876:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32970:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44961:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46141:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45072:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47369:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32242:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26992:305;27094:4;27146:25;27131:40;;;:11;:40;;;;:105;;;;27203:33;27188:48;;;:11;:48;;;;27131:105;:158;;;;27253:36;27277:11;27253:23;:36::i;:::-;27131:158;27111:178;;26992:305;;;:::o;30105:100::-;30159:13;30192:5;30185:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30105:100;:::o;31608:204::-;31676:7;31701:16;31709:7;31701;:16::i;:::-;31696:64;;31726:34;;;;;;;;;;;;;;31696:64;31780:15;:24;31796:7;31780:24;;;;;;;;;;;;;;;;;;;;;31773:31;;31608:204;;;:::o;31171:371::-;31244:13;31260:24;31276:7;31260:15;:24::i;:::-;31244:40;;31305:5;31299:11;;:2;:11;;;31295:48;;;31319:24;;;;;;;;;;;;;;31295:48;31376:5;31360:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31386:37;31403:5;31410:12;:10;:12::i;:::-;31386:16;:37::i;:::-;31385:38;31360:63;31356:138;;;31447:35;;;;;;;;;;;;;;31356:138;31506:28;31515:2;31519:7;31528:5;31506:8;:28::i;:::-;31233:309;31171:371;;:::o;26241:303::-;26285:7;26510:15;:13;:15::i;:::-;26495:12;;26479:13;;:28;:46;26472:53;;26241:303;:::o;46791:88::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46864:7:::1;46852:9;:19;;;;46791:88:::0;:::o;32473:170::-;32607:28;32617:4;32623:2;32627:7;32607:9;:28::i;:::-;32473:170;;;:::o;47172:77::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47235:6:::1;;;;;;;;;;;47234:7;47225:6;;:16;;;;;;;;;;;;;;;;;;47172:77::o:0;47528:147::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47577:7:::1;47598;:5;:7::i;:::-;47590:21;;47619;47590:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47576:69;;;47664:2;47656:11;;;::::0;::::1;;47565:110;47528:147::o:0;32714:185::-;32852:39;32869:4;32875:2;32879:7;32852:39;;;;;;;;;;;;:16;:39::i;:::-;32714:185;;;:::o;47257:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47342:11:::1;47332:7;:21;;;;;;;;;;;;:::i;:::-;;47257:104:::0;:::o;45005:25::-;;;;;;;;;;;;;:::o;29913:125::-;29977:7;30004:21;30017:7;30004:12;:21::i;:::-;:26;;;29997:33;;29913:125;;;:::o;44933:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47070:94::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47149:7:::1;47137:9;:19;;;;47070:94:::0;:::o;27361:206::-;27425:7;27466:1;27449:19;;:5;:19;;;27445:60;;;27477:28;;;;;;;;;;;;;;27445:60;27531:12;:19;27544:5;27531:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27523:36;;27516:43;;27361:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;46887:175::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46980:6:::1;;;;;;;;;;;46979:7;46971:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;47025:29;47035:8;47045;47025:9;:29::i;:::-;46887:175:::0;;:::o;45037:28::-;;;;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;30274:104::-;30330:13;30363:7;30356:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30274:104;:::o;45256:744::-;45316:14;45333:13;:11;:13::i;:::-;45316:30;;45366:6;;;;;;;;;;;45365:7;45357:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;45430:1;45419:8;:12;45411:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45510:9;;45498:8;45489:6;:17;;;;:::i;:::-;:30;;45481:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45574:7;:5;:7::i;:::-;45560:21;;:10;:21;;;45556:347;;45660:9;;45648:8;45620:13;:25;45634:10;45620:25;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:49;;45598:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;45795:9;;45783:8;:21;;45757:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;45556:347;45942:8;45913:13;:25;45927:10;45913:25;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;45961:31;45971:10;45983:8;45961:9;:31::i;:::-;45305:695;45256:744;:::o;31884:287::-;31995:12;:10;:12::i;:::-;31983:24;;:8;:24;;;31979:54;;;32016:17;;;;;;;;;;;;;;31979:54;32091:8;32046:18;:32;32065:12;:10;:12::i;:::-;32046:32;;;;;;;;;;;;;;;:42;32079:8;32046:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32144:8;32115:48;;32130:12;:10;:12::i;:::-;32115:48;;;32154:8;32115:48;;;;;;:::i;:::-;;;;;;;;31884:287;;:::o;44876:48::-;;;;;;;;;;;;;;;;;:::o;32970:369::-;33137:28;33147:4;33153:2;33157:7;33137:9;:28::i;:::-;33180:15;:2;:13;;;:15::i;:::-;:76;;;;;33200:56;33231:4;33237:2;33241:7;33250:5;33200:30;:56::i;:::-;33199:57;33180:76;33176:156;;;33280:40;;;;;;;;;;;;;;33176:156;32970:369;;;;:::o;44961:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46141:642::-;46259:13;46312:16;46320:7;46312;:16::i;:::-;46290:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;46416:28;46447:10;:8;:10::i;:::-;46416:41;;46519:1;46494:14;46488:28;:32;:287;;;;;;;;;;;;;;;;;46612:14;46653:18;:7;:16;:18::i;:::-;46698:13;46569:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46488:287;46468:307;;;46141:642;;;:::o;45072:32::-;;;;:::o;47369:151::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47495:17:::1;47479:13;:33;;;;;;;;;;;;:::i;:::-;;47369:151:::0;:::o;32242:164::-;32339:4;32363:18;:25;32382:5;32363:25;;;;;;;;;;;;;;;:35;32389:8;32363:35;;;;;;;;;;;;;;;;;;;;;;;;;32356:42;;32242:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;33594:174::-;33651:4;33694:7;33675:15;:13;:15::i;:::-;:26;;:53;;;;;33715:13;;33705:7;:23;33675:53;:85;;;;;33733:11;:20;33745:7;33733:20;;;;;;;;;;;:27;;;;;;;;;;;;33732:28;33675:85;33668:92;;33594:174;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;41751:196::-;41893:2;41866:15;:24;41882:7;41866:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41931:7;41927:2;41911:28;;41920:5;41911:28;;;;;;;;;;;;41751:196;;;:::o;26015:92::-;26071:7;26098:1;26091:8;;26015:92;:::o;36694:2130::-;36809:35;36847:21;36860:7;36847:12;:21::i;:::-;36809:59;;36907:4;36885:26;;:13;:18;;;:26;;;36881:67;;36920:28;;;;;;;;;;;;;;36881:67;36961:22;37003:4;36987:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37024:36;37041:4;37047:12;:10;:12::i;:::-;37024:16;:36::i;:::-;36987:73;:126;;;;37101:12;:10;:12::i;:::-;37077:36;;:20;37089:7;37077:11;:20::i;:::-;:36;;;36987:126;36961:153;;37132:17;37127:66;;37158:35;;;;;;;;;;;;;;37127:66;37222:1;37208:16;;:2;:16;;;37204:52;;;37233:23;;;;;;;;;;;;;;37204:52;37269:43;37291:4;37297:2;37301:7;37310:1;37269:21;:43::i;:::-;37377:35;37394:1;37398:7;37407:4;37377:8;:35::i;:::-;37738:1;37708:12;:18;37721:4;37708:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37782:1;37754:12;:16;37767:2;37754:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37800:31;37834:11;:20;37846:7;37834:20;;;;;;;;;;;37800:54;;37885:2;37869:8;:13;;;:18;;;;;;;;;;;;;;;;;;37935:15;37902:8;:23;;;:49;;;;;;;;;;;;;;;;;;38203:19;38235:1;38225:7;:11;38203:33;;38251:31;38285:11;:24;38297:11;38285:24;;;;;;;;;;;38251:58;;38353:1;38328:27;;:8;:13;;;;;;;;;;;;:27;;;38324:384;;;38538:13;;38523:11;:28;38519:174;;38592:4;38576:8;:13;;;:20;;;;;;;;;;;;;;;;;;38645:13;:28;;;38619:8;:23;;;:54;;;;;;;;;;;;;;;;;;38519:174;38324:384;37683:1036;;;38755:7;38751:2;38736:27;;38745:4;38736:27;;;;;;;;;;;;38774:42;38795:4;38801:2;38805:7;38814:1;38774:20;:42::i;:::-;36798:2026;;36694:2130;;;:::o;28742:1109::-;28804:21;;:::i;:::-;28838:12;28853:7;28838:22;;28921:4;28902:15;:13;:15::i;:::-;:23;;:47;;;;;28936:13;;28929:4;:20;28902:47;28898:886;;;28970:31;29004:11;:17;29016:4;29004:17;;;;;;;;;;;28970:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29045:9;:16;;;29040:729;;29116:1;29090:28;;:9;:14;;;:28;;;29086:101;;29154:9;29147:16;;;;;;29086:101;29489:261;29496:4;29489:261;;;29529:6;;;;;;;;29574:11;:17;29586:4;29574:17;;;;;;;;;;;29562:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29648:1;29622:28;;:9;:14;;;:28;;;29618:109;;29690:9;29683:16;;;;;;29618:109;29489:261;;;29040:729;28951:833;28898:886;29812:31;;;;;;;;;;;;;;28742:1109;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;33776:104::-;33845:27;33855:2;33859:8;33845:27;;;;;;;;;;;;:9;:27::i;:::-;33776:104;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;42439:667::-;42602:4;42639:2;42623:36;;;42660:12;:10;:12::i;:::-;42674:4;42680:7;42689:5;42623:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42619:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42874:1;42857:6;:13;:18;42853:235;;;42903:40;;;;;;;;;;;;;;42853:235;43046:6;43040:13;43031:6;43027:2;43023:15;43016:38;42619:480;42752:45;;;42742:55;;;:6;:55;;;;42735:62;;;42439:667;;;;;;:::o;46025:108::-;46085:13;46118:7;46111:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46025:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;43754:159::-;;;;;:::o;44572:158::-;;;;;:::o;34243:163::-;34366:32;34372:2;34376:8;34386:5;34393:4;34366:5;:32::i;:::-;34243:163;;;:::o;34665:1775::-;34804:20;34827:13;;34804:36;;34869:1;34855:16;;:2;:16;;;34851:48;;;34880:19;;;;;;;;;;;;;;34851:48;34926:1;34914:8;:13;34910:44;;;34936:18;;;;;;;;;;;;;;34910:44;34967:61;34997:1;35001:2;35005:12;35019:8;34967:21;:61::i;:::-;35340:8;35305:12;:16;35318:2;35305:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35404:8;35364:12;:16;35377:2;35364:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35463:2;35430:11;:25;35442:12;35430:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35530:15;35480:11;:25;35492:12;35480:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35563:20;35586:12;35563:35;;35613:11;35642:8;35627:12;:23;35613:37;;35671:4;:23;;;;;35679:15;:2;:13;;;:15::i;:::-;35671:23;35667:641;;;35715:314;35771:12;35767:2;35746:38;;35763:1;35746:38;;;;;;;;;;;;35812:69;35851:1;35855:2;35859:14;;;;;;35875:5;35812:30;:69::i;:::-;35807:174;;35917:40;;;;;;;;;;;;;;35807:174;36024:3;36008:12;:19;;35715:314;;36110:12;36093:13;;:29;36089:43;;36124:8;;;36089:43;35667:641;;;36173:120;36229:14;;;;;;36225:2;36204:40;;36221:1;36204:40;;;;;;;;;;;;36288:3;36272:12;:19;;36173:120;;35667:641;36338:12;36322:13;:28;;;;35280:1082;;36372:60;36401:1;36405:2;36409:12;36423:8;36372:20;:60::i;:::-;34793:1647;34665: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:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:109::-;7843:21;7858:5;7843:21;:::i;:::-;7838:3;7831:34;7762:109;;:::o;7877:360::-;7963:3;7991:38;8023:5;7991:38;:::i;:::-;8045:70;8108:6;8103:3;8045:70;:::i;:::-;8038:77;;8124:52;8169:6;8164:3;8157:4;8150:5;8146:16;8124:52;:::i;:::-;8201:29;8223:6;8201:29;:::i;:::-;8196:3;8192:39;8185:46;;7967:270;7877:360;;;;:::o;8243:364::-;8331:3;8359:39;8392:5;8359:39;:::i;:::-;8414:71;8478:6;8473:3;8414:71;:::i;:::-;8407:78;;8494:52;8539:6;8534:3;8527:4;8520:5;8516:16;8494:52;:::i;:::-;8571:29;8593:6;8571:29;:::i;:::-;8566:3;8562:39;8555:46;;8335:272;8243:364;;;;:::o;8613:377::-;8719:3;8747:39;8780:5;8747:39;:::i;:::-;8802:89;8884:6;8879:3;8802:89;:::i;:::-;8795:96;;8900:52;8945:6;8940:3;8933:4;8926:5;8922:16;8900:52;:::i;:::-;8977:6;8972:3;8968:16;8961:23;;8723:267;8613:377;;;;:::o;9020:845::-;9123:3;9160:5;9154:12;9189:36;9215:9;9189:36;:::i;:::-;9241:89;9323:6;9318:3;9241:89;:::i;:::-;9234:96;;9361:1;9350:9;9346:17;9377:1;9372:137;;;;9523:1;9518:341;;;;9339:520;;9372:137;9456:4;9452:9;9441;9437:25;9432:3;9425:38;9492:6;9487:3;9483:16;9476:23;;9372:137;;9518:341;9585:38;9617:5;9585:38;:::i;:::-;9645:1;9659:154;9673:6;9670:1;9667:13;9659:154;;;9747:7;9741:14;9737:1;9732:3;9728:11;9721:35;9797:1;9788:7;9784:15;9773:26;;9695:4;9692:1;9688:12;9683:17;;9659:154;;;9842:6;9837:3;9833:16;9826:23;;9525:334;;9339:520;;9127:738;;9020:845;;;;:::o;9871:366::-;10013:3;10034:67;10098:2;10093:3;10034:67;:::i;:::-;10027:74;;10110:93;10199:3;10110:93;:::i;:::-;10228:2;10223:3;10219:12;10212:19;;9871:366;;;:::o;10243:::-;10385:3;10406:67;10470:2;10465:3;10406:67;:::i;:::-;10399:74;;10482:93;10571:3;10482:93;:::i;:::-;10600:2;10595:3;10591:12;10584:19;;10243:366;;;:::o;10615:::-;10757:3;10778:67;10842:2;10837:3;10778:67;:::i;:::-;10771:74;;10854:93;10943:3;10854:93;:::i;:::-;10972:2;10967:3;10963:12;10956:19;;10615:366;;;:::o;10987:::-;11129:3;11150:67;11214:2;11209:3;11150:67;:::i;:::-;11143:74;;11226:93;11315:3;11226:93;:::i;:::-;11344:2;11339:3;11335:12;11328:19;;10987:366;;;:::o;11359:::-;11501:3;11522:67;11586:2;11581:3;11522:67;:::i;:::-;11515:74;;11598:93;11687:3;11598:93;:::i;:::-;11716:2;11711:3;11707:12;11700:19;;11359:366;;;:::o;11731:::-;11873:3;11894:67;11958:2;11953:3;11894:67;:::i;:::-;11887:74;;11970:93;12059:3;11970:93;:::i;:::-;12088:2;12083:3;12079:12;12072:19;;11731:366;;;:::o;12103:::-;12245:3;12266:67;12330:2;12325:3;12266:67;:::i;:::-;12259:74;;12342:93;12431:3;12342:93;:::i;:::-;12460:2;12455:3;12451:12;12444:19;;12103:366;;;:::o;12475:398::-;12634:3;12655:83;12736:1;12731:3;12655:83;:::i;:::-;12648:90;;12747:93;12836:3;12747:93;:::i;:::-;12865:1;12860:3;12856:11;12849:18;;12475:398;;;:::o;12879:366::-;13021:3;13042:67;13106:2;13101:3;13042:67;:::i;:::-;13035:74;;13118:93;13207:3;13118:93;:::i;:::-;13236:2;13231:3;13227:12;13220:19;;12879:366;;;:::o;13251:118::-;13338:24;13356:5;13338:24;:::i;:::-;13333:3;13326:37;13251:118;;:::o;13375:589::-;13600:3;13622:95;13713:3;13704:6;13622:95;:::i;:::-;13615:102;;13734:95;13825:3;13816:6;13734:95;:::i;:::-;13727:102;;13846:92;13934:3;13925:6;13846:92;:::i;:::-;13839:99;;13955:3;13948:10;;13375:589;;;;;;:::o;13970:379::-;14154:3;14176:147;14319:3;14176:147;:::i;:::-;14169:154;;14340:3;14333:10;;13970:379;;;:::o;14355:222::-;14448:4;14486:2;14475:9;14471:18;14463:26;;14499:71;14567:1;14556:9;14552:17;14543:6;14499:71;:::i;:::-;14355:222;;;;:::o;14583:640::-;14778:4;14816:3;14805:9;14801:19;14793:27;;14830:71;14898:1;14887:9;14883:17;14874:6;14830:71;:::i;:::-;14911:72;14979:2;14968:9;14964:18;14955:6;14911:72;:::i;:::-;14993;15061:2;15050:9;15046:18;15037:6;14993:72;:::i;:::-;15112:9;15106:4;15102:20;15097:2;15086:9;15082:18;15075:48;15140:76;15211:4;15202:6;15140:76;:::i;:::-;15132:84;;14583:640;;;;;;;:::o;15229:210::-;15316:4;15354:2;15343:9;15339:18;15331:26;;15367:65;15429:1;15418:9;15414:17;15405:6;15367:65;:::i;:::-;15229:210;;;;:::o;15445:313::-;15558:4;15596:2;15585:9;15581:18;15573:26;;15645:9;15639:4;15635:20;15631:1;15620:9;15616:17;15609:47;15673:78;15746:4;15737:6;15673:78;:::i;:::-;15665:86;;15445:313;;;;:::o;15764:419::-;15930:4;15968:2;15957:9;15953:18;15945:26;;16017:9;16011:4;16007:20;16003:1;15992:9;15988:17;15981:47;16045:131;16171:4;16045:131;:::i;:::-;16037:139;;15764:419;;;:::o;16189:::-;16355:4;16393:2;16382:9;16378:18;16370:26;;16442:9;16436:4;16432:20;16428:1;16417:9;16413:17;16406:47;16470:131;16596:4;16470:131;:::i;:::-;16462:139;;16189:419;;;:::o;16614:::-;16780:4;16818:2;16807:9;16803:18;16795:26;;16867:9;16861:4;16857:20;16853:1;16842:9;16838:17;16831:47;16895:131;17021:4;16895:131;:::i;:::-;16887:139;;16614:419;;;:::o;17039:::-;17205:4;17243:2;17232:9;17228:18;17220:26;;17292:9;17286:4;17282:20;17278:1;17267:9;17263:17;17256:47;17320:131;17446:4;17320:131;:::i;:::-;17312:139;;17039:419;;;:::o;17464:::-;17630:4;17668:2;17657:9;17653:18;17645:26;;17717:9;17711:4;17707:20;17703:1;17692:9;17688:17;17681:47;17745:131;17871:4;17745:131;:::i;:::-;17737:139;;17464:419;;;:::o;17889:::-;18055:4;18093:2;18082:9;18078:18;18070:26;;18142:9;18136:4;18132:20;18128:1;18117:9;18113:17;18106:47;18170:131;18296:4;18170:131;:::i;:::-;18162:139;;17889:419;;;:::o;18314:::-;18480:4;18518:2;18507:9;18503:18;18495:26;;18567:9;18561:4;18557:20;18553:1;18542:9;18538:17;18531:47;18595:131;18721:4;18595:131;:::i;:::-;18587:139;;18314:419;;;:::o;18739:::-;18905:4;18943:2;18932:9;18928:18;18920:26;;18992:9;18986:4;18982:20;18978:1;18967:9;18963:17;18956:47;19020:131;19146:4;19020:131;:::i;:::-;19012:139;;18739:419;;;:::o;19164:222::-;19257:4;19295:2;19284:9;19280:18;19272:26;;19308:71;19376:1;19365:9;19361:17;19352:6;19308:71;:::i;:::-;19164:222;;;;:::o;19392:129::-;19426:6;19453:20;;:::i;:::-;19443:30;;19482:33;19510:4;19502:6;19482:33;:::i;:::-;19392:129;;;:::o;19527:75::-;19560:6;19593:2;19587:9;19577:19;;19527:75;:::o;19608:307::-;19669:4;19759:18;19751:6;19748:30;19745:56;;;19781:18;;:::i;:::-;19745:56;19819:29;19841:6;19819:29;:::i;:::-;19811:37;;19903:4;19897;19893:15;19885:23;;19608:307;;;:::o;19921:308::-;19983:4;20073:18;20065:6;20062:30;20059:56;;;20095:18;;:::i;:::-;20059:56;20133:29;20155:6;20133:29;:::i;:::-;20125:37;;20217:4;20211;20207:15;20199:23;;19921:308;;;:::o;20235:141::-;20284:4;20307:3;20299:11;;20330:3;20327:1;20320:14;20364:4;20361:1;20351:18;20343:26;;20235:141;;;:::o;20382:98::-;20433:6;20467:5;20461:12;20451:22;;20382:98;;;:::o;20486:99::-;20538:6;20572:5;20566:12;20556:22;;20486:99;;;:::o;20591:168::-;20674:11;20708:6;20703:3;20696:19;20748:4;20743:3;20739:14;20724:29;;20591:168;;;;:::o;20765:147::-;20866:11;20903:3;20888:18;;20765:147;;;;:::o;20918:169::-;21002:11;21036:6;21031:3;21024:19;21076:4;21071:3;21067:14;21052:29;;20918:169;;;;:::o;21093:148::-;21195:11;21232:3;21217:18;;21093:148;;;;:::o;21247:305::-;21287:3;21306:20;21324:1;21306:20;:::i;:::-;21301:25;;21340:20;21358:1;21340:20;:::i;:::-;21335:25;;21494:1;21426:66;21422:74;21419:1;21416:81;21413:107;;;21500:18;;:::i;:::-;21413:107;21544:1;21541;21537:9;21530:16;;21247:305;;;;:::o;21558:185::-;21598:1;21615:20;21633:1;21615:20;:::i;:::-;21610:25;;21649:20;21667:1;21649:20;:::i;:::-;21644:25;;21688:1;21678:35;;21693:18;;:::i;:::-;21678:35;21735:1;21732;21728:9;21723:14;;21558:185;;;;:::o;21749:191::-;21789:4;21809:20;21827:1;21809:20;:::i;:::-;21804:25;;21843:20;21861:1;21843:20;:::i;:::-;21838:25;;21882:1;21879;21876:8;21873:34;;;21887:18;;:::i;:::-;21873:34;21932:1;21929;21925:9;21917:17;;21749:191;;;;:::o;21946:96::-;21983:7;22012:24;22030:5;22012:24;:::i;:::-;22001:35;;21946:96;;;:::o;22048:90::-;22082:7;22125:5;22118:13;22111:21;22100:32;;22048:90;;;:::o;22144:149::-;22180:7;22220:66;22213:5;22209:78;22198:89;;22144:149;;;:::o;22299:126::-;22336:7;22376:42;22369:5;22365:54;22354:65;;22299:126;;;:::o;22431:77::-;22468:7;22497:5;22486:16;;22431:77;;;:::o;22514:154::-;22598:6;22593:3;22588;22575:30;22660:1;22651:6;22646:3;22642:16;22635:27;22514:154;;;:::o;22674:307::-;22742:1;22752:113;22766:6;22763:1;22760:13;22752:113;;;22851:1;22846:3;22842:11;22836:18;22832:1;22827:3;22823:11;22816:39;22788:2;22785:1;22781:10;22776:15;;22752:113;;;22883:6;22880:1;22877:13;22874:101;;;22963:1;22954:6;22949:3;22945:16;22938:27;22874:101;22723:258;22674:307;;;:::o;22987:320::-;23031:6;23068:1;23062:4;23058:12;23048:22;;23115:1;23109:4;23105:12;23136:18;23126:81;;23192:4;23184:6;23180:17;23170:27;;23126:81;23254:2;23246:6;23243:14;23223:18;23220:38;23217:84;;;23273:18;;:::i;:::-;23217:84;23038:269;22987:320;;;:::o;23313:281::-;23396:27;23418:4;23396:27;:::i;:::-;23388:6;23384:40;23526:6;23514:10;23511:22;23490:18;23478:10;23475:34;23472:62;23469:88;;;23537:18;;:::i;:::-;23469:88;23577:10;23573:2;23566:22;23356:238;23313:281;;:::o;23600:233::-;23639:3;23662:24;23680:5;23662:24;:::i;:::-;23653:33;;23708:66;23701:5;23698:77;23695:103;;;23778:18;;:::i;:::-;23695:103;23825:1;23818:5;23814:13;23807:20;;23600:233;;;:::o;23839:176::-;23871:1;23888:20;23906:1;23888:20;:::i;:::-;23883:25;;23922:20;23940:1;23922:20;:::i;:::-;23917:25;;23961:1;23951:35;;23966:18;;:::i;:::-;23951:35;24007:1;24004;24000:9;23995:14;;23839:176;;;;:::o;24021:180::-;24069:77;24066:1;24059:88;24166:4;24163:1;24156:15;24190:4;24187:1;24180:15;24207:180;24255:77;24252:1;24245:88;24352:4;24349:1;24342:15;24376:4;24373:1;24366:15;24393:180;24441:77;24438:1;24431:88;24538:4;24535:1;24528:15;24562:4;24559:1;24552:15;24579:180;24627:77;24624:1;24617:88;24724:4;24721:1;24714:15;24748:4;24745:1;24738:15;24765:180;24813:77;24810:1;24803:88;24910:4;24907:1;24900:15;24934:4;24931:1;24924:15;24951:117;25060:1;25057;25050:12;25074:117;25183:1;25180;25173:12;25197:117;25306:1;25303;25296:12;25320:117;25429:1;25426;25419:12;25443:102;25484:6;25535:2;25531:7;25526:2;25519:5;25515:14;25511:28;25501:38;;25443:102;;;:::o;25551:224::-;25691:34;25687:1;25679:6;25675:14;25668:58;25760:7;25755:2;25747:6;25743:15;25736:32;25551:224;:::o;25781:225::-;25921:34;25917:1;25909:6;25905:14;25898:58;25990:8;25985:2;25977:6;25973:15;25966:33;25781:225;:::o;26012:182::-;26152:34;26148:1;26140:6;26136:14;26129:58;26012:182;:::o;26200:173::-;26340:25;26336:1;26328:6;26324:14;26317:49;26200:173;:::o;26379:234::-;26519:34;26515:1;26507:6;26503:14;26496:58;26588:17;26583:2;26575:6;26571:15;26564:42;26379:234;:::o;26619:221::-;26759:34;26755:1;26747:6;26743:14;26736:58;26828:4;26823:2;26815:6;26811:15;26804:29;26619:221;:::o;26846:238::-;26986:34;26982:1;26974:6;26970:14;26963:58;27055:21;27050:2;27042:6;27038:15;27031:46;26846:238;:::o;27090:114::-;;:::o;27210:169::-;27350:21;27346:1;27338:6;27334:14;27327:45;27210:169;:::o;27385:122::-;27458:24;27476:5;27458:24;:::i;:::-;27451:5;27448:35;27438:63;;27497:1;27494;27487:12;27438:63;27385:122;:::o;27513:116::-;27583:21;27598:5;27583:21;:::i;:::-;27576:5;27573:32;27563:60;;27619:1;27616;27609:12;27563:60;27513:116;:::o;27635:120::-;27707:23;27724:5;27707:23;:::i;:::-;27700:5;27697:34;27687:62;;27745:1;27742;27735:12;27687:62;27635:120;:::o;27761:122::-;27834:24;27852:5;27834:24;:::i;:::-;27827:5;27824:35;27814:63;;27873:1;27870;27863:12;27814:63;27761:122;:::o
Swarm Source
ipfs://5298068af8ef7dc0c33d913137bc1dba3175f619aeadd49f3ed3b5d6c8f645a3
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.