ERC-721
Overview
Max Total Supply
333 JK
Holders
206
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 JKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Jeremy
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-12 */ /** *Submitted for verification at Etherscan.io on 2022-05-11 */ /** *Submitted for verification at Etherscan.io on 2022-05-09 */ /** *Submitted for verification at Etherscan.io on 2022-04-29 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; 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); } 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); } interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } 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); } 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); } } } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override 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) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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()) if(!_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; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 (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 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) 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; 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. delete _tokenApprovals[tokenId]; // 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 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. delete _tokenApprovals[tokenId]; // 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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } 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); } } interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } } // --------------------------------------------------// contract Jeremy is Ownable, ERC721A, ReentrancyGuard, ERC721ABurnable { using Strings for uint256; uint256 public PRICE = 0.075 ether; uint256 private constant TotalCollectionSize_ = 100000; // total number of nfts string private _baseTokenURI; uint public status = 2; //0-pause 2-public bool singleURI = true; constructor() ERC721A("Jeremy Knows","JK") { _baseTokenURI = "ipfs://QmdDoX1g8YFRGmes8aJFqtPxqZKqAFxZQtpRdzWWLVwa8j"; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function mint(uint256 quantity) external payable callerIsUser { require(status == 2 , "Public Sale is not Active"); require(totalSupply() + quantity <= TotalCollectionSize_ , "reached max supply"); require(msg.value >= PRICE * quantity, "Need to send more ETH."); _safeMint(msg.sender, quantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); if(singleURI) return bytes(baseURI).length > 0 ? baseURI : ""; else return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return _ownershipOf(tokenId); } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function changeMintPrice(uint256 _newPrice) external onlyOwner { PRICE = _newPrice; } function setStatus(uint256 status_)external onlyOwner{ status = status_; } function giveaway(address address_, uint quantity_)public onlyOwner{ // require(totalSupply() + quantity_ <= collectionSize, "reached max supply"); _safeMint(address_, quantity_); } function _startTokenId() internal view override returns (uint256){ return 1; } function setsingleURI(bool s) public onlyOwner{ singleURI = s; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changeMintPrice","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","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":[{"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status_","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"s","type":"bool"}],"name":"setsingleURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267010a741a46278000600a556002600c556001600d60006101000a81548160ff0219169083151502179055503480156200003d57600080fd5b506040518060400160405280600c81526020017f4a6572656d79204b6e6f777300000000000000000000000000000000000000008152506040518060400160405280600281526020017f4a4b000000000000000000000000000000000000000000000000000000000000815250620000ca620000be6200015460201b60201c565b6200015c60201b60201c565b8160039080519060200190620000e292919062000229565b508060049080519060200190620000fb92919062000229565b506200010c6200022060201b60201c565b600181905550505060016009819055506040518060600160405280603581526020016200402060359139600b90805190602001906200014d92919062000229565b506200033e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200023790620002d9565b90600052602060002090601f0160209004810192826200025b5760008555620002a7565b82601f106200027657805160ff1916838001178555620002a7565b82800160010185558215620002a7579182015b82811115620002a657825182559160200191906001019062000289565b5b509050620002b69190620002ba565b5090565b5b80821115620002d5576000816000905550600101620002bb565b5090565b60006002820490506001821680620002f257607f821691505b602082108114156200030957620003086200030f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613cd2806200034e6000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063cc5da9cc11610064578063cc5da9cc1461061b578063dc33e68114610644578063e985e9c514610681578063f2fde38b146106be576101c2565b8063a22cb46514610575578063ac4460021461059e578063b88d4fde146105b5578063c87b56dd146105de576101c2565b80638da5cb5b116100d15780638da5cb5b146104c65780639231ab2a146104f157806395d89b411461052e578063a0712d6814610559576101c2565b806370a0823114610447578063715018a6146104845780638d859f3e1461049b576101c2565b806323b872dd1161016457806342966c681161013e57806342966c681461038f57806355f804b3146103b85780636352211e146103e157806369ba1a751461041e576101c2565b806323b872dd146103145780633fd173661461033d57806342842e0e14610366576101c2565b8063081812fc116101a0578063081812fc14610258578063095ea7b31461029557806318160ddd146102be578063200d2ed2146102e9576101c2565b806301ffc9a7146101c7578063050225ea1461020457806306fdde031461022d575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061303f565b6106e7565b6040516101fb919061344c565b60405180910390f35b34801561021057600080fd5b5061022b60048036038101906102269190612fd2565b6107c9565b005b34801561023957600080fd5b50610242610853565b60405161024f9190613467565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a91906130e2565b6108e5565b60405161028c91906133e5565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612fd2565b610961565b005b3480156102ca57600080fd5b506102d3610b08565b6040516102e091906135c4565b60405180910390f35b3480156102f557600080fd5b506102fe610b1f565b60405161030b91906135c4565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612ebc565b610b25565b005b34801561034957600080fd5b50610364600480360381019061035f91906130e2565b610b35565b005b34801561037257600080fd5b5061038d60048036038101906103889190612ebc565b610bbb565b005b34801561039b57600080fd5b506103b660048036038101906103b191906130e2565b610bdb565b005b3480156103c457600080fd5b506103df60048036038101906103da9190613099565b610be9565b005b3480156103ed57600080fd5b50610408600480360381019061040391906130e2565b610c7f565b60405161041591906133e5565b60405180910390f35b34801561042a57600080fd5b50610445600480360381019061044091906130e2565b610c95565b005b34801561045357600080fd5b5061046e60048036038101906104699190612e4f565b610d1b565b60405161047b91906135c4565b60405180910390f35b34801561049057600080fd5b50610499610deb565b005b3480156104a757600080fd5b506104b0610e73565b6040516104bd91906135c4565b60405180910390f35b3480156104d257600080fd5b506104db610e79565b6040516104e891906133e5565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906130e2565b610ea2565b60405161052591906135a9565b60405180910390f35b34801561053a57600080fd5b50610543610eba565b6040516105509190613467565b60405180910390f35b610573600480360381019061056e91906130e2565b610f4c565b005b34801561058157600080fd5b5061059c60048036038101906105979190612f92565b6110b4565b005b3480156105aa57600080fd5b506105b361122c565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190612f0f565b6113ad565b005b3480156105ea57600080fd5b50610605600480360381019061060091906130e2565b611425565b6040516106129190613467565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190613012565b61150a565b005b34801561065057600080fd5b5061066b60048036038101906106669190612e4f565b6115a3565b60405161067891906135c4565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190612e7c565b6115b5565b6040516106b5919061344c565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190612e4f565b611649565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c257506107c182611741565b5b9050919050565b6107d16117ab565b73ffffffffffffffffffffffffffffffffffffffff166107ef610e79565b73ffffffffffffffffffffffffffffffffffffffff1614610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90613509565b60405180910390fd5b61084f82826117b3565b5050565b60606003805461086290613893565b80601f016020809104026020016040519081016040528092919081815260200182805461088e90613893565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b60006108f0826117d1565b610926576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096c82610c7f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f36117ab565b73ffffffffffffffffffffffffffffffffffffffff1614610a5657610a1f81610a1a6117ab565b6115b5565b610a55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b1261181f565b6002546001540303905090565b600c5481565b610b30838383611828565b505050565b610b3d6117ab565b73ffffffffffffffffffffffffffffffffffffffff16610b5b610e79565b73ffffffffffffffffffffffffffffffffffffffff1614610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890613509565b60405180910390fd5b80600a8190555050565b610bd6838383604051806020016040528060008152506113ad565b505050565b610be6816001611d08565b50565b610bf16117ab565b73ffffffffffffffffffffffffffffffffffffffff16610c0f610e79565b73ffffffffffffffffffffffffffffffffffffffff1614610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613509565b60405180910390fd5b80600b9080519060200190610c7b929190612c20565b5050565b6000610c8a82612122565b600001519050919050565b610c9d6117ab565b73ffffffffffffffffffffffffffffffffffffffff16610cbb610e79565b73ffffffffffffffffffffffffffffffffffffffff1614610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890613509565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d83576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610df36117ab565b73ffffffffffffffffffffffffffffffffffffffff16610e11610e79565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90613509565b60405180910390fd5b610e7160006123ad565b565b600a5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610eaa612ca6565b610eb382612122565b9050919050565b606060048054610ec990613893565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef590613893565b8015610f425780601f10610f1757610100808354040283529160200191610f42565b820191906000526020600020905b815481529060010190602001808311610f2557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906134a9565b60405180910390fd5b6002600c5414610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906134e9565b60405180910390fd5b620186a08161100c610b08565b61101691906136b4565b1115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e906134c9565b60405180910390fd5b80600a54611065919061373b565b3410156110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90613569565b60405180910390fd5b6110b133826117b3565b50565b6110bc6117ab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611121576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061112e6117ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111db6117ab565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611220919061344c565b60405180910390a35050565b6112346117ab565b73ffffffffffffffffffffffffffffffffffffffff16611252610e79565b73ffffffffffffffffffffffffffffffffffffffff16146112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90613509565b60405180910390fd5b600260095414156112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613589565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161131c906133d0565b60006040518083038185875af1925050503d8060008114611359576040519150601f19603f3d011682016040523d82523d6000602084013e61135e565b606091505b50509050806113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990613549565b60405180910390fd5b506001600981905550565b6113b8848484611828565b6113d78373ffffffffffffffffffffffffffffffffffffffff16612471565b1561141f576113e884848484612494565b61141e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611430826117d1565b61146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613529565b60405180910390fd5b60006114796125f4565b9050600d60009054906101000a900460ff16156114b85760008151116114ae57604051806020016040528060008152506114b0565b805b915050611505565b60008151116114d65760405180602001604052806000815250611501565b806114e084612686565b6040516020016114f19291906133ac565b6040516020818303038152906040525b9150505b919050565b6115126117ab565b73ffffffffffffffffffffffffffffffffffffffff16611530610e79565b73ffffffffffffffffffffffffffffffffffffffff1614611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90613509565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60006115ae826127e7565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116516117ab565b73ffffffffffffffffffffffffffffffffffffffff1661166f610e79565b73ffffffffffffffffffffffffffffffffffffffff16146116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613509565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90613489565b60405180910390fd5b61173e816123ad565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6117cd828260405180602001604052806000815250612851565b5050565b6000816117dc61181f565b111580156117eb575060015482105b8015611818575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b60006001905090565b600061183382612122565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461189e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118bf6117ab565b73ffffffffffffffffffffffffffffffffffffffff1614806118ee57506118ed856118e86117ab565b6115b5565b5b8061193357506118fc6117ab565b73ffffffffffffffffffffffffffffffffffffffff1661191b846108e5565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061196c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119d3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119e08585856001612c14565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c96576001548214611c9557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d018585856001612c1a565b5050505050565b6000611d1383612122565b90506000816000015190508215611df45760008173ffffffffffffffffffffffffffffffffffffffff16611d456117ab565b73ffffffffffffffffffffffffffffffffffffffff161480611d745750611d7382611d6e6117ab565b6115b5565b5b80611db95750611d826117ab565b73ffffffffffffffffffffffffffffffffffffffff16611da1866108e5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611df2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b611e02816000866001612c14565b6007600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561209c57600154821461209b57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461210a816000866001612c1a565b60026000815480929190600101919050555050505050565b61212a612ca6565b60008290508061213861181f565b1161237657600154811015612375576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161237357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122575780925050506123a8565b5b60011561237257818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461236d5780925050506123a8565b612258565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ba6117ab565b8786866040518563ffffffff1660e01b81526004016124dc9493929190613400565b602060405180830381600087803b1580156124f657600080fd5b505af192505050801561252757506040513d601f19601f82011682018060405250810190612524919061306c565b60015b6125a1573d8060008114612557576040519150601f19603f3d011682016040523d82523d6000602084013e61255c565b606091505b50600081511415612599576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461260390613893565b80601f016020809104026020016040519081016040528092919081815260200182805461262f90613893565b801561267c5780601f106126515761010080835404028352916020019161267c565b820191906000526020600020905b81548152906001019060200180831161265f57829003601f168201915b5050505050905090565b606060008214156126ce576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127e2565b600082905060005b600082146127005780806126e9906138f6565b915050600a826126f9919061370a565b91506126d6565b60008167ffffffffffffffff81111561271c5761271b613a2c565b5b6040519080825280601f01601f19166020018201604052801561274e5781602001600182028036833780820191505090505b5090505b600085146127db576001826127679190613795565b9150600a85612776919061393f565b603061278291906136b4565b60f81b818381518110612798576127976139fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127d4919061370a565b9450612752565b8093505050505b919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128bf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156128fa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129076000858386612c14565b82600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612ac88673ffffffffffffffffffffffffffffffffffffffff16612471565b15612b8d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b3d6000878480600101955087612494565b612b73576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612ace578260015414612b8857600080fd5b612bf8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612b8e575b816001819055505050612c0e6000858386612c1a565b50505050565b50505050565b50505050565b828054612c2c90613893565b90600052602060002090601f016020900481019282612c4e5760008555612c95565b82601f10612c6757805160ff1916838001178555612c95565b82800160010185558215612c95579182015b82811115612c94578251825591602001919060010190612c79565b5b509050612ca29190612ce9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d02576000816000905550600101612cea565b5090565b6000612d19612d1484613604565b6135df565b905082815260208101848484011115612d3557612d34613a60565b5b612d40848285613851565b509392505050565b6000612d5b612d5684613635565b6135df565b905082815260208101848484011115612d7757612d76613a60565b5b612d82848285613851565b509392505050565b600081359050612d9981613c40565b92915050565b600081359050612dae81613c57565b92915050565b600081359050612dc381613c6e565b92915050565b600081519050612dd881613c6e565b92915050565b600082601f830112612df357612df2613a5b565b5b8135612e03848260208601612d06565b91505092915050565b600082601f830112612e2157612e20613a5b565b5b8135612e31848260208601612d48565b91505092915050565b600081359050612e4981613c85565b92915050565b600060208284031215612e6557612e64613a6a565b5b6000612e7384828501612d8a565b91505092915050565b60008060408385031215612e9357612e92613a6a565b5b6000612ea185828601612d8a565b9250506020612eb285828601612d8a565b9150509250929050565b600080600060608486031215612ed557612ed4613a6a565b5b6000612ee386828701612d8a565b9350506020612ef486828701612d8a565b9250506040612f0586828701612e3a565b9150509250925092565b60008060008060808587031215612f2957612f28613a6a565b5b6000612f3787828801612d8a565b9450506020612f4887828801612d8a565b9350506040612f5987828801612e3a565b925050606085013567ffffffffffffffff811115612f7a57612f79613a65565b5b612f8687828801612dde565b91505092959194509250565b60008060408385031215612fa957612fa8613a6a565b5b6000612fb785828601612d8a565b9250506020612fc885828601612d9f565b9150509250929050565b60008060408385031215612fe957612fe8613a6a565b5b6000612ff785828601612d8a565b925050602061300885828601612e3a565b9150509250929050565b60006020828403121561302857613027613a6a565b5b600061303684828501612d9f565b91505092915050565b60006020828403121561305557613054613a6a565b5b600061306384828501612db4565b91505092915050565b60006020828403121561308257613081613a6a565b5b600061309084828501612dc9565b91505092915050565b6000602082840312156130af576130ae613a6a565b5b600082013567ffffffffffffffff8111156130cd576130cc613a65565b5b6130d984828501612e0c565b91505092915050565b6000602082840312156130f8576130f7613a6a565b5b600061310684828501612e3a565b91505092915050565b613118816137c9565b82525050565b613127816137c9565b82525050565b613136816137db565b82525050565b613145816137db565b82525050565b600061315682613666565b613160818561367c565b9350613170818560208601613860565b61317981613a6f565b840191505092915050565b600061318f82613671565b6131998185613698565b93506131a9818560208601613860565b6131b281613a6f565b840191505092915050565b60006131c882613671565b6131d281856136a9565b93506131e2818560208601613860565b80840191505092915050565b60006131fb602683613698565b915061320682613a80565b604082019050919050565b600061321e601e83613698565b915061322982613acf565b602082019050919050565b6000613241601283613698565b915061324c82613af8565b602082019050919050565b6000613264601983613698565b915061326f82613b21565b602082019050919050565b6000613287602083613698565b915061329282613b4a565b602082019050919050565b60006132aa602f83613698565b91506132b582613b73565b604082019050919050565b60006132cd60008361368d565b91506132d882613bc2565b600082019050919050565b60006132f0601083613698565b91506132fb82613bc5565b602082019050919050565b6000613313601683613698565b915061331e82613bee565b602082019050919050565b6000613336601f83613698565b915061334182613c17565b602082019050919050565b606082016000820151613362600085018261310f565b506020820151613375602085018261339d565b506040820151613388604085018261312d565b50505050565b61339781613833565b82525050565b6133a68161383d565b82525050565b60006133b882856131bd565b91506133c482846131bd565b91508190509392505050565b60006133db826132c0565b9150819050919050565b60006020820190506133fa600083018461311e565b92915050565b6000608082019050613415600083018761311e565b613422602083018661311e565b61342f604083018561338e565b8181036060830152613441818461314b565b905095945050505050565b6000602082019050613461600083018461313c565b92915050565b600060208201905081810360008301526134818184613184565b905092915050565b600060208201905081810360008301526134a2816131ee565b9050919050565b600060208201905081810360008301526134c281613211565b9050919050565b600060208201905081810360008301526134e281613234565b9050919050565b6000602082019050818103600083015261350281613257565b9050919050565b600060208201905081810360008301526135228161327a565b9050919050565b600060208201905081810360008301526135428161329d565b9050919050565b60006020820190508181036000830152613562816132e3565b9050919050565b6000602082019050818103600083015261358281613306565b9050919050565b600060208201905081810360008301526135a281613329565b9050919050565b60006060820190506135be600083018461334c565b92915050565b60006020820190506135d9600083018461338e565b92915050565b60006135e96135fa565b90506135f582826138c5565b919050565b6000604051905090565b600067ffffffffffffffff82111561361f5761361e613a2c565b5b61362882613a6f565b9050602081019050919050565b600067ffffffffffffffff8211156136505761364f613a2c565b5b61365982613a6f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136bf82613833565b91506136ca83613833565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136ff576136fe613970565b5b828201905092915050565b600061371582613833565b915061372083613833565b9250826137305761372f61399f565b5b828204905092915050565b600061374682613833565b915061375183613833565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561378a57613789613970565b5b828202905092915050565b60006137a082613833565b91506137ab83613833565b9250828210156137be576137bd613970565b5b828203905092915050565b60006137d482613813565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561387e578082015181840152602081019050613863565b8381111561388d576000848401525b50505050565b600060028204905060018216806138ab57607f821691505b602082108114156138bf576138be6139ce565b5b50919050565b6138ce82613a6f565b810181811067ffffffffffffffff821117156138ed576138ec613a2c565b5b80604052505050565b600061390182613833565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561393457613933613970565b5b600182019050919050565b600061394a82613833565b915061395583613833565b9250826139655761396461399f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f5075626c69632053616c65206973206e6f742041637469766500000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613c49816137c9565b8114613c5457600080fd5b50565b613c60816137db565b8114613c6b57600080fd5b50565b613c77816137e7565b8114613c8257600080fd5b50565b613c8e81613833565b8114613c9957600080fd5b5056fea26469706673582212204159edb81e743af080922c1d9a1ea66b3feb1311344409fec6665403108cacb164736f6c63430008070033697066733a2f2f516d64446f58316738594652476d657338614a4671745078715a4b714146785a51747052647a57574c567761386a
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063cc5da9cc11610064578063cc5da9cc1461061b578063dc33e68114610644578063e985e9c514610681578063f2fde38b146106be576101c2565b8063a22cb46514610575578063ac4460021461059e578063b88d4fde146105b5578063c87b56dd146105de576101c2565b80638da5cb5b116100d15780638da5cb5b146104c65780639231ab2a146104f157806395d89b411461052e578063a0712d6814610559576101c2565b806370a0823114610447578063715018a6146104845780638d859f3e1461049b576101c2565b806323b872dd1161016457806342966c681161013e57806342966c681461038f57806355f804b3146103b85780636352211e146103e157806369ba1a751461041e576101c2565b806323b872dd146103145780633fd173661461033d57806342842e0e14610366576101c2565b8063081812fc116101a0578063081812fc14610258578063095ea7b31461029557806318160ddd146102be578063200d2ed2146102e9576101c2565b806301ffc9a7146101c7578063050225ea1461020457806306fdde031461022d575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061303f565b6106e7565b6040516101fb919061344c565b60405180910390f35b34801561021057600080fd5b5061022b60048036038101906102269190612fd2565b6107c9565b005b34801561023957600080fd5b50610242610853565b60405161024f9190613467565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a91906130e2565b6108e5565b60405161028c91906133e5565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612fd2565b610961565b005b3480156102ca57600080fd5b506102d3610b08565b6040516102e091906135c4565b60405180910390f35b3480156102f557600080fd5b506102fe610b1f565b60405161030b91906135c4565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612ebc565b610b25565b005b34801561034957600080fd5b50610364600480360381019061035f91906130e2565b610b35565b005b34801561037257600080fd5b5061038d60048036038101906103889190612ebc565b610bbb565b005b34801561039b57600080fd5b506103b660048036038101906103b191906130e2565b610bdb565b005b3480156103c457600080fd5b506103df60048036038101906103da9190613099565b610be9565b005b3480156103ed57600080fd5b50610408600480360381019061040391906130e2565b610c7f565b60405161041591906133e5565b60405180910390f35b34801561042a57600080fd5b50610445600480360381019061044091906130e2565b610c95565b005b34801561045357600080fd5b5061046e60048036038101906104699190612e4f565b610d1b565b60405161047b91906135c4565b60405180910390f35b34801561049057600080fd5b50610499610deb565b005b3480156104a757600080fd5b506104b0610e73565b6040516104bd91906135c4565b60405180910390f35b3480156104d257600080fd5b506104db610e79565b6040516104e891906133e5565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906130e2565b610ea2565b60405161052591906135a9565b60405180910390f35b34801561053a57600080fd5b50610543610eba565b6040516105509190613467565b60405180910390f35b610573600480360381019061056e91906130e2565b610f4c565b005b34801561058157600080fd5b5061059c60048036038101906105979190612f92565b6110b4565b005b3480156105aa57600080fd5b506105b361122c565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190612f0f565b6113ad565b005b3480156105ea57600080fd5b50610605600480360381019061060091906130e2565b611425565b6040516106129190613467565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190613012565b61150a565b005b34801561065057600080fd5b5061066b60048036038101906106669190612e4f565b6115a3565b60405161067891906135c4565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190612e7c565b6115b5565b6040516106b5919061344c565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190612e4f565b611649565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c257506107c182611741565b5b9050919050565b6107d16117ab565b73ffffffffffffffffffffffffffffffffffffffff166107ef610e79565b73ffffffffffffffffffffffffffffffffffffffff1614610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90613509565b60405180910390fd5b61084f82826117b3565b5050565b60606003805461086290613893565b80601f016020809104026020016040519081016040528092919081815260200182805461088e90613893565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b60006108f0826117d1565b610926576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096c82610c7f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f36117ab565b73ffffffffffffffffffffffffffffffffffffffff1614610a5657610a1f81610a1a6117ab565b6115b5565b610a55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b1261181f565b6002546001540303905090565b600c5481565b610b30838383611828565b505050565b610b3d6117ab565b73ffffffffffffffffffffffffffffffffffffffff16610b5b610e79565b73ffffffffffffffffffffffffffffffffffffffff1614610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890613509565b60405180910390fd5b80600a8190555050565b610bd6838383604051806020016040528060008152506113ad565b505050565b610be6816001611d08565b50565b610bf16117ab565b73ffffffffffffffffffffffffffffffffffffffff16610c0f610e79565b73ffffffffffffffffffffffffffffffffffffffff1614610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613509565b60405180910390fd5b80600b9080519060200190610c7b929190612c20565b5050565b6000610c8a82612122565b600001519050919050565b610c9d6117ab565b73ffffffffffffffffffffffffffffffffffffffff16610cbb610e79565b73ffffffffffffffffffffffffffffffffffffffff1614610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890613509565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d83576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610df36117ab565b73ffffffffffffffffffffffffffffffffffffffff16610e11610e79565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90613509565b60405180910390fd5b610e7160006123ad565b565b600a5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610eaa612ca6565b610eb382612122565b9050919050565b606060048054610ec990613893565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef590613893565b8015610f425780601f10610f1757610100808354040283529160200191610f42565b820191906000526020600020905b815481529060010190602001808311610f2557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906134a9565b60405180910390fd5b6002600c5414610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906134e9565b60405180910390fd5b620186a08161100c610b08565b61101691906136b4565b1115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e906134c9565b60405180910390fd5b80600a54611065919061373b565b3410156110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90613569565b60405180910390fd5b6110b133826117b3565b50565b6110bc6117ab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611121576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061112e6117ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111db6117ab565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611220919061344c565b60405180910390a35050565b6112346117ab565b73ffffffffffffffffffffffffffffffffffffffff16611252610e79565b73ffffffffffffffffffffffffffffffffffffffff16146112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90613509565b60405180910390fd5b600260095414156112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613589565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161131c906133d0565b60006040518083038185875af1925050503d8060008114611359576040519150601f19603f3d011682016040523d82523d6000602084013e61135e565b606091505b50509050806113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990613549565b60405180910390fd5b506001600981905550565b6113b8848484611828565b6113d78373ffffffffffffffffffffffffffffffffffffffff16612471565b1561141f576113e884848484612494565b61141e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611430826117d1565b61146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613529565b60405180910390fd5b60006114796125f4565b9050600d60009054906101000a900460ff16156114b85760008151116114ae57604051806020016040528060008152506114b0565b805b915050611505565b60008151116114d65760405180602001604052806000815250611501565b806114e084612686565b6040516020016114f19291906133ac565b6040516020818303038152906040525b9150505b919050565b6115126117ab565b73ffffffffffffffffffffffffffffffffffffffff16611530610e79565b73ffffffffffffffffffffffffffffffffffffffff1614611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90613509565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60006115ae826127e7565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116516117ab565b73ffffffffffffffffffffffffffffffffffffffff1661166f610e79565b73ffffffffffffffffffffffffffffffffffffffff16146116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613509565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90613489565b60405180910390fd5b61173e816123ad565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6117cd828260405180602001604052806000815250612851565b5050565b6000816117dc61181f565b111580156117eb575060015482105b8015611818575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b60006001905090565b600061183382612122565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461189e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118bf6117ab565b73ffffffffffffffffffffffffffffffffffffffff1614806118ee57506118ed856118e86117ab565b6115b5565b5b8061193357506118fc6117ab565b73ffffffffffffffffffffffffffffffffffffffff1661191b846108e5565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061196c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119d3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119e08585856001612c14565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c96576001548214611c9557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d018585856001612c1a565b5050505050565b6000611d1383612122565b90506000816000015190508215611df45760008173ffffffffffffffffffffffffffffffffffffffff16611d456117ab565b73ffffffffffffffffffffffffffffffffffffffff161480611d745750611d7382611d6e6117ab565b6115b5565b5b80611db95750611d826117ab565b73ffffffffffffffffffffffffffffffffffffffff16611da1866108e5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611df2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b611e02816000866001612c14565b6007600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561209c57600154821461209b57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461210a816000866001612c1a565b60026000815480929190600101919050555050505050565b61212a612ca6565b60008290508061213861181f565b1161237657600154811015612375576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161237357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122575780925050506123a8565b5b60011561237257818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461236d5780925050506123a8565b612258565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ba6117ab565b8786866040518563ffffffff1660e01b81526004016124dc9493929190613400565b602060405180830381600087803b1580156124f657600080fd5b505af192505050801561252757506040513d601f19601f82011682018060405250810190612524919061306c565b60015b6125a1573d8060008114612557576040519150601f19603f3d011682016040523d82523d6000602084013e61255c565b606091505b50600081511415612599576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461260390613893565b80601f016020809104026020016040519081016040528092919081815260200182805461262f90613893565b801561267c5780601f106126515761010080835404028352916020019161267c565b820191906000526020600020905b81548152906001019060200180831161265f57829003601f168201915b5050505050905090565b606060008214156126ce576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127e2565b600082905060005b600082146127005780806126e9906138f6565b915050600a826126f9919061370a565b91506126d6565b60008167ffffffffffffffff81111561271c5761271b613a2c565b5b6040519080825280601f01601f19166020018201604052801561274e5781602001600182028036833780820191505090505b5090505b600085146127db576001826127679190613795565b9150600a85612776919061393f565b603061278291906136b4565b60f81b818381518110612798576127976139fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127d4919061370a565b9450612752565b8093505050505b919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128bf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156128fa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129076000858386612c14565b82600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612ac88673ffffffffffffffffffffffffffffffffffffffff16612471565b15612b8d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b3d6000878480600101955087612494565b612b73576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612ace578260015414612b8857600080fd5b612bf8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612b8e575b816001819055505050612c0e6000858386612c1a565b50505050565b50505050565b50505050565b828054612c2c90613893565b90600052602060002090601f016020900481019282612c4e5760008555612c95565b82601f10612c6757805160ff1916838001178555612c95565b82800160010185558215612c95579182015b82811115612c94578251825591602001919060010190612c79565b5b509050612ca29190612ce9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d02576000816000905550600101612cea565b5090565b6000612d19612d1484613604565b6135df565b905082815260208101848484011115612d3557612d34613a60565b5b612d40848285613851565b509392505050565b6000612d5b612d5684613635565b6135df565b905082815260208101848484011115612d7757612d76613a60565b5b612d82848285613851565b509392505050565b600081359050612d9981613c40565b92915050565b600081359050612dae81613c57565b92915050565b600081359050612dc381613c6e565b92915050565b600081519050612dd881613c6e565b92915050565b600082601f830112612df357612df2613a5b565b5b8135612e03848260208601612d06565b91505092915050565b600082601f830112612e2157612e20613a5b565b5b8135612e31848260208601612d48565b91505092915050565b600081359050612e4981613c85565b92915050565b600060208284031215612e6557612e64613a6a565b5b6000612e7384828501612d8a565b91505092915050565b60008060408385031215612e9357612e92613a6a565b5b6000612ea185828601612d8a565b9250506020612eb285828601612d8a565b9150509250929050565b600080600060608486031215612ed557612ed4613a6a565b5b6000612ee386828701612d8a565b9350506020612ef486828701612d8a565b9250506040612f0586828701612e3a565b9150509250925092565b60008060008060808587031215612f2957612f28613a6a565b5b6000612f3787828801612d8a565b9450506020612f4887828801612d8a565b9350506040612f5987828801612e3a565b925050606085013567ffffffffffffffff811115612f7a57612f79613a65565b5b612f8687828801612dde565b91505092959194509250565b60008060408385031215612fa957612fa8613a6a565b5b6000612fb785828601612d8a565b9250506020612fc885828601612d9f565b9150509250929050565b60008060408385031215612fe957612fe8613a6a565b5b6000612ff785828601612d8a565b925050602061300885828601612e3a565b9150509250929050565b60006020828403121561302857613027613a6a565b5b600061303684828501612d9f565b91505092915050565b60006020828403121561305557613054613a6a565b5b600061306384828501612db4565b91505092915050565b60006020828403121561308257613081613a6a565b5b600061309084828501612dc9565b91505092915050565b6000602082840312156130af576130ae613a6a565b5b600082013567ffffffffffffffff8111156130cd576130cc613a65565b5b6130d984828501612e0c565b91505092915050565b6000602082840312156130f8576130f7613a6a565b5b600061310684828501612e3a565b91505092915050565b613118816137c9565b82525050565b613127816137c9565b82525050565b613136816137db565b82525050565b613145816137db565b82525050565b600061315682613666565b613160818561367c565b9350613170818560208601613860565b61317981613a6f565b840191505092915050565b600061318f82613671565b6131998185613698565b93506131a9818560208601613860565b6131b281613a6f565b840191505092915050565b60006131c882613671565b6131d281856136a9565b93506131e2818560208601613860565b80840191505092915050565b60006131fb602683613698565b915061320682613a80565b604082019050919050565b600061321e601e83613698565b915061322982613acf565b602082019050919050565b6000613241601283613698565b915061324c82613af8565b602082019050919050565b6000613264601983613698565b915061326f82613b21565b602082019050919050565b6000613287602083613698565b915061329282613b4a565b602082019050919050565b60006132aa602f83613698565b91506132b582613b73565b604082019050919050565b60006132cd60008361368d565b91506132d882613bc2565b600082019050919050565b60006132f0601083613698565b91506132fb82613bc5565b602082019050919050565b6000613313601683613698565b915061331e82613bee565b602082019050919050565b6000613336601f83613698565b915061334182613c17565b602082019050919050565b606082016000820151613362600085018261310f565b506020820151613375602085018261339d565b506040820151613388604085018261312d565b50505050565b61339781613833565b82525050565b6133a68161383d565b82525050565b60006133b882856131bd565b91506133c482846131bd565b91508190509392505050565b60006133db826132c0565b9150819050919050565b60006020820190506133fa600083018461311e565b92915050565b6000608082019050613415600083018761311e565b613422602083018661311e565b61342f604083018561338e565b8181036060830152613441818461314b565b905095945050505050565b6000602082019050613461600083018461313c565b92915050565b600060208201905081810360008301526134818184613184565b905092915050565b600060208201905081810360008301526134a2816131ee565b9050919050565b600060208201905081810360008301526134c281613211565b9050919050565b600060208201905081810360008301526134e281613234565b9050919050565b6000602082019050818103600083015261350281613257565b9050919050565b600060208201905081810360008301526135228161327a565b9050919050565b600060208201905081810360008301526135428161329d565b9050919050565b60006020820190508181036000830152613562816132e3565b9050919050565b6000602082019050818103600083015261358281613306565b9050919050565b600060208201905081810360008301526135a281613329565b9050919050565b60006060820190506135be600083018461334c565b92915050565b60006020820190506135d9600083018461338e565b92915050565b60006135e96135fa565b90506135f582826138c5565b919050565b6000604051905090565b600067ffffffffffffffff82111561361f5761361e613a2c565b5b61362882613a6f565b9050602081019050919050565b600067ffffffffffffffff8211156136505761364f613a2c565b5b61365982613a6f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136bf82613833565b91506136ca83613833565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136ff576136fe613970565b5b828201905092915050565b600061371582613833565b915061372083613833565b9250826137305761372f61399f565b5b828204905092915050565b600061374682613833565b915061375183613833565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561378a57613789613970565b5b828202905092915050565b60006137a082613833565b91506137ab83613833565b9250828210156137be576137bd613970565b5b828203905092915050565b60006137d482613813565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561387e578082015181840152602081019050613863565b8381111561388d576000848401525b50505050565b600060028204905060018216806138ab57607f821691505b602082108114156138bf576138be6139ce565b5b50919050565b6138ce82613a6f565b810181811067ffffffffffffffff821117156138ed576138ec613a2c565b5b80604052505050565b600061390182613833565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561393457613933613970565b5b600182019050919050565b600061394a82613833565b915061395583613833565b9250826139655761396461399f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f5075626c69632053616c65206973206e6f742041637469766500000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613c49816137c9565b8114613c5457600080fd5b50565b613c60816137db565b8114613c6b57600080fd5b50565b613c77816137e7565b8114613c8257600080fd5b50565b613c8e81613833565b8114613c9957600080fd5b5056fea26469706673582212204159edb81e743af080922c1d9a1ea66b3feb1311344409fec6665403108cacb164736f6c63430008070033
Deployed Bytecode Sourcemap
45202:2568:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22281:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47405:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25396:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26945:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26462:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21521:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45465:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27810:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47215:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28051:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45044:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46553:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25204:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47317:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22650:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43714:103;;;;;;;;;;;;;:::i;:::-;;45309:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43063:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46878:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25565:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45787:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27221:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47030:181;;;;;;;;;;;;;:::i;:::-;;28307:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46117:432;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47693:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46767:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27579:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43972:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22281:305;22383:4;22435:25;22420:40;;;:11;:40;;;;:105;;;;22492:33;22477:48;;;:11;:48;;;;22420:105;:158;;;;22542:36;22566:11;22542:23;:36::i;:::-;22420:158;22400:178;;22281:305;;;:::o;47405:194::-;43294:12;:10;:12::i;:::-;43283:23;;:7;:5;:7::i;:::-;:23;;;43275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47563:30:::1;47573:8;47583:9;47563;:30::i;:::-;47405:194:::0;;:::o;25396:100::-;25450:13;25483:5;25476:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25396:100;:::o;26945:204::-;27013:7;27038:16;27046:7;27038;:16::i;:::-;27033:64;;27063:34;;;;;;;;;;;;;;27033:64;27117:15;:24;27133:7;27117:24;;;;;;;;;;;;;;;;;;;;;27110:31;;26945:204;;;:::o;26462:417::-;26535:13;26551:24;26567:7;26551:15;:24::i;:::-;26535:40;;26596:5;26590:11;;:2;:11;;;26586:48;;;26610:24;;;;;;;;;;;;;;26586:48;26667:5;26651:21;;:12;:10;:12::i;:::-;:21;;;26647:139;;26678:37;26695:5;26702:12;:10;:12::i;:::-;26678:16;:37::i;:::-;26674:112;;26739:35;;;;;;;;;;;;;;26674:112;26647:139;26825:2;26798:15;:24;26814:7;26798:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26863:7;26859:2;26843:28;;26852:5;26843:28;;;;;;;;;;;;26524:355;26462:417;;:::o;21521:312::-;21574:7;21799:15;:13;:15::i;:::-;21784:12;;21768:13;;:28;:46;21761:53;;21521:312;:::o;45465:22::-;;;;:::o;27810:170::-;27944:28;27954:4;27960:2;27964:7;27944:9;:28::i;:::-;27810:170;;;:::o;47215:98::-;43294:12;:10;:12::i;:::-;43283:23;;:7;:5;:7::i;:::-;:23;;;43275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47298:9:::1;47290:5;:17;;;;47215:98:::0;:::o;28051:185::-;28189:39;28206:4;28212:2;28216:7;28189:39;;;;;;;;;;;;:16;:39::i;:::-;28051:185;;;:::o;45044:94::-;45110:20;45116:7;45125:4;45110:5;:20::i;:::-;45044:94;:::o;46553:98::-;43294:12;:10;:12::i;:::-;43283:23;;:7;:5;:7::i;:::-;:23;;;43275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46638:7:::1;46622:13;:23;;;;;;;;;;;;:::i;:::-;;46553:98:::0;:::o;25204:125::-;25268:7;25295:21;25308:7;25295:12;:21::i;:::-;:26;;;25288:33;;25204:125;;;:::o;47317:84::-;43294:12;:10;:12::i;:::-;43283:23;;:7;:5;:7::i;:::-;:23;;;43275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47388:7:::1;47379:6;:16;;;;47317:84:::0;:::o;22650:206::-;22714:7;22755:1;22738:19;;:5;:19;;;22734:60;;;22766:28;;;;;;;;;;;;;;22734:60;22820:12;:19;22833:5;22820:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;22812:36;;22805:43;;22650:206;;;:::o;43714:103::-;43294:12;:10;:12::i;:::-;43283:23;;:7;:5;:7::i;:::-;:23;;;43275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43779:30:::1;43806:1;43779:18;:30::i;:::-;43714:103::o:0;45309:35::-;;;;:::o;43063:87::-;43109:7;43136:6;;;;;;;;;;;43129:13;;43063:87;:::o;46878:148::-;46959:21;;:::i;:::-;46999;47012:7;46999:12;:21::i;:::-;46992:28;;46878:148;;;:::o;25565:104::-;25621:13;25654:7;25647:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25565:104;:::o;45787:323::-;45724:10;45711:23;;:9;:23;;;45703:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45874:1:::1;45864:6;;:11;45856:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;45397:6;45937:8;45921:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:48;;45913:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;46029:8;46021:5;;:16;;;;:::i;:::-;46008:9;:29;;46000:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;46071:31;46081:10;46093:8;46071:9;:31::i;:::-;45787:323:::0;:::o;27221:287::-;27332:12;:10;:12::i;:::-;27320:24;;:8;:24;;;27316:54;;;27353:17;;;;;;;;;;;;;;27316:54;27428:8;27383:18;:32;27402:12;:10;:12::i;:::-;27383:32;;;;;;;;;;;;;;;:42;27416:8;27383:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27481:8;27452:48;;27467:12;:10;:12::i;:::-;27452:48;;;27491:8;27452:48;;;;;;:::i;:::-;;;;;;;;27221:287;;:::o;47030:181::-;43294:12;:10;:12::i;:::-;43283:23;;:7;:5;:7::i;:::-;:23;;;43275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41704:1:::1;42302:7;;:19;;42294:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41704:1;42435:7;:18;;;;47095:12:::2;47113:10;:15;;47136:21;47113:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47094:68;;;47177:7;47169:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;47087:124;41660:1:::1;42614:7;:22;;;;47030:181::o:0;28307:370::-;28474:28;28484:4;28490:2;28494:7;28474:9;:28::i;:::-;28517:15;:2;:13;;;:15::i;:::-;28513:157;;;28538:56;28569:4;28575:2;28579:7;28588:5;28538:30;:56::i;:::-;28534:136;;28618:40;;;;;;;;;;;;;;28534:136;28513:157;28307:370;;;;:::o;46117:432::-;46190:13;46220:16;46228:7;46220;:16::i;:::-;46212:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;46294:21;46318:10;:8;:10::i;:::-;46294:34;;46338:9;;;;;;;;;;;46335:208;;;46392:1;46374:7;46368:21;:25;:40;;;;;;;;;;;;;;;;;46396:7;46368:40;46354:54;;;;;46335:208;46463:1;46445:7;46439:21;:25;:104;;;;;;;;;;;;;;;;;46500:7;46509:18;:7;:16;:18::i;:::-;46483:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46439:104;46425:118;;;46117:432;;;;:::o;47693:74::-;43294:12;:10;:12::i;:::-;43283:23;;:7;:5;:7::i;:::-;:23;;;43275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47760:1:::1;47748:9;;:13;;;;;;;;;;;;;;;;;;47693:74:::0;:::o;46767:107::-;46825:7;46848:20;46862:5;46848:13;:20::i;:::-;46841:27;;46767:107;;;:::o;27579:164::-;27676:4;27700:18;:25;27719:5;27700:25;;;;;;;;;;;;;;;:35;27726:8;27700:35;;;;;;;;;;;;;;;;;;;;;;;;;27693:42;;27579:164;;;;:::o;43972:201::-;43294:12;:10;:12::i;:::-;43283:23;;:7;:5;:7::i;:::-;:23;;;43275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44081:1:::1;44061:22;;:8;:22;;;;44053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44137:28;44156:8;44137:18;:28::i;:::-;43972:201:::0;:::o;19907:157::-;19992:4;20031:25;20016:40;;;:11;:40;;;;20009:47;;19907:157;;;:::o;17638:98::-;17691:7;17718:10;17711:17;;17638:98;:::o;29190:104::-;29259:27;29269:2;29273:8;29259:27;;;;;;;;;;;;:9;:27::i;:::-;29190:104;;:::o;28932:174::-;28989:4;29032:7;29013:15;:13;:15::i;:::-;:26;;:53;;;;;29053:13;;29043:7;:23;29013:53;:85;;;;;29071:11;:20;29083:7;29071:20;;;;;;;;;;;:27;;;;;;;;;;;;29070:28;29013:85;29006:92;;28932:174;;;:::o;47603:86::-;47660:7;47682:1;47675:8;;47603:86;:::o;33102:2127::-;33217:35;33255:21;33268:7;33255:12;:21::i;:::-;33217:59;;33315:4;33293:26;;:13;:18;;;:26;;;33289:67;;33328:28;;;;;;;;;;;;;;33289:67;33369:22;33411:4;33395:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;33432:36;33449:4;33455:12;:10;:12::i;:::-;33432:16;:36::i;:::-;33395:73;:126;;;;33509:12;:10;:12::i;:::-;33485:36;;:20;33497:7;33485:11;:20::i;:::-;:36;;;33395:126;33369:153;;33540:17;33535:66;;33566:35;;;;;;;;;;;;;;33535:66;33630:1;33616:16;;:2;:16;;;33612:52;;;33641:23;;;;;;;;;;;;;;33612:52;33677:43;33699:4;33705:2;33709:7;33718:1;33677:21;:43::i;:::-;33793:15;:24;33809:7;33793:24;;;;;;;;;;;;33786:31;;;;;;;;;;;34143:1;34113:12;:18;34126:4;34113:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34187:1;34159:12;:16;34172:2;34159:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34205:31;34239:11;:20;34251:7;34239:20;;;;;;;;;;;34205:54;;34290:2;34274:8;:13;;;:18;;;;;;;;;;;;;;;;;;34340:15;34307:8;:23;;;:49;;;;;;;;;;;;;;;;;;34608:19;34640:1;34630:7;:11;34608:33;;34656:31;34690:11;:24;34702:11;34690:24;;;;;;;;;;;34656:58;;34758:1;34733:27;;:8;:13;;;;;;;;;;;;:27;;;34729:384;;;34943:13;;34928:11;:28;34924:174;;34997:4;34981:8;:13;;;:20;;;;;;;;;;;;;;;;;;35050:13;:28;;;35024:8;:23;;;:54;;;;;;;;;;;;;;;;;;34924:174;34729:384;34088:1036;;;35160:7;35156:2;35141:27;;35150:4;35141:27;;;;;;;;;;;;35179:42;35200:4;35206:2;35210:7;35219:1;35179:20;:42::i;:::-;33206:2023;;33102:2127;;;:::o;35625:2405::-;35705:35;35743:21;35756:7;35743:12;:21::i;:::-;35705:59;;35777:12;35792:13;:18;;;35777:33;;35827:13;35823:290;;;35857:22;35899:4;35883:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;35924:36;35941:4;35947:12;:10;:12::i;:::-;35924:16;:36::i;:::-;35883:77;:134;;;;36005:12;:10;:12::i;:::-;35981:36;;:20;35993:7;35981:11;:20::i;:::-;:36;;;35883:134;35857:161;;36040:17;36035:66;;36066:35;;;;;;;;;;;;;;36035:66;35842:271;35823:290;36125:51;36147:4;36161:1;36165:7;36174:1;36125:21;:51::i;:::-;36249:15;:24;36265:7;36249:24;;;;;;;;;;;;36242:31;;;;;;;;;;;36569;36603:12;:18;36616:4;36603:18;;;;;;;;;;;;;;;36569:52;;36659:1;36636:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36703:1;36675:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36803:31;36837:11;:20;36849:7;36837:20;;;;;;;;;;;36803:54;;36888:4;36872:8;:13;;;:20;;;;;;;;;;;;;;;;;;36940:15;36907:8;:23;;;:49;;;;;;;;;;;;;;;;;;36989:4;36971:8;:15;;;:22;;;;;;;;;;;;;;;;;;37241:19;37273:1;37263:7;:11;37241:33;;37289:31;37323:11;:24;37335:11;37323:24;;;;;;;;;;;37289:58;;37391:1;37366:27;;:8;:13;;;;;;;;;;;;:27;;;37362:384;;;37576:13;;37561:11;:28;37557:174;;37630:4;37614:8;:13;;;:20;;;;;;;;;;;;;;;;;;37683:13;:28;;;37657:8;:23;;;:54;;;;;;;;;;;;;;;;;;37557:174;37362:384;36544:1213;;;;37801:7;37797:1;37774:35;;37783:4;37774:35;;;;;;;;;;;;37820:50;37841:4;37855:1;37859:7;37868:1;37820:20;:50::i;:::-;37997:12;;:14;;;;;;;;;;;;;35694:2336;;35625:2405;;:::o;24031:1111::-;24093:21;;:::i;:::-;24127:12;24142:7;24127:22;;24210:4;24191:15;:13;:15::i;:::-;:23;24187:888;;24227:13;;24220:4;:20;24216:859;;;24261:31;24295:11;:17;24307:4;24295:17;;;;;;;;;;;24261:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24336:9;:16;;;24331:729;;24407:1;24381:28;;:9;:14;;;:28;;;24377:101;;24445:9;24438:16;;;;;;24377:101;24780:261;24787:4;24780:261;;;24820:6;;;;;;;;24865:11;:17;24877:4;24865:17;;;;;;;;;;;24853:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24939:1;24913:28;;:9;:14;;;:28;;;24909:109;;24981:9;24974:16;;;;;;24909:109;24780:261;;;24331:729;24242:833;24216:859;24187:888;25103:31;;;;;;;;;;;;;;24031:1111;;;;:::o;44333:191::-;44407:16;44426:6;;;;;;;;;;;44407:25;;44452:8;44443:6;;:17;;;;;;;;;;;;;;;;;;44507:8;44476:40;;44497:8;44476:40;;;;;;;;;;;;44396:128;44333:191;:::o;10335:326::-;10395:4;10652:1;10630:7;:19;;;:23;10623:30;;10335:326;;;:::o;38522:667::-;38685:4;38722:2;38706:36;;;38743:12;:10;:12::i;:::-;38757:4;38763:7;38772:5;38706:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38702:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38957:1;38940:6;:13;:18;38936:235;;;38986:40;;;;;;;;;;;;;;38936:235;39129:6;39123:13;39114:6;39110:2;39106:15;39099:38;38702:480;38835:45;;;38825:55;;;:6;:55;;;;38818:62;;;38522:667;;;;;;:::o;46655:108::-;46715:13;46744;46737:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46655:108;:::o;18040:723::-;18096:13;18326:1;18317:5;:10;18313:53;;;18344:10;;;;;;;;;;;;;;;;;;;;;18313:53;18376:12;18391:5;18376:20;;18407:14;18432:78;18447:1;18439:4;:9;18432:78;;18465:8;;;;;:::i;:::-;;;;18496:2;18488:10;;;;;:::i;:::-;;;18432:78;;;18520:19;18552:6;18542:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18520:39;;18570:154;18586:1;18577:5;:10;18570:154;;18614:1;18604:11;;;;;:::i;:::-;;;18681:2;18673:5;:10;;;;:::i;:::-;18660:2;:24;;;;:::i;:::-;18647:39;;18630:6;18637;18630:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18710:2;18701:11;;;;;:::i;:::-;;;18570:154;;;18748:6;18734:21;;;;;18040:723;;;;:::o;22938:137::-;22999:7;23034:12;:19;23047:5;23034:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;23026:41;;23019:48;;22938:137;;;:::o;29667:1749::-;29790:20;29813:13;;29790:36;;29855:1;29841:16;;:2;:16;;;29837:48;;;29866:19;;;;;;;;;;;;;;29837:48;29912:1;29900:8;:13;29896:44;;;29922:18;;;;;;;;;;;;;;29896:44;29953:61;29983:1;29987:2;29991:12;30005:8;29953:21;:61::i;:::-;30326:8;30291:12;:16;30304:2;30291:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30390:8;30350:12;:16;30363:2;30350:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30449:2;30416:11;:25;30428:12;30416:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;30516:15;30466:11;:25;30478:12;30466:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;30549:20;30572:12;30549:35;;30599:11;30628:8;30613:12;:23;30599:37;;30657:15;:2;:13;;;:15::i;:::-;30653:631;;;30693:313;30749:12;30745:2;30724:38;;30741:1;30724:38;;;;;;;;;;;;30790:69;30829:1;30833:2;30837:14;;;;;;30853:5;30790:30;:69::i;:::-;30785:174;;30895:40;;;;;;;;;;;;;;30785:174;31001:3;30986:12;:18;30693:313;;31087:12;31070:13;;:29;31066:43;;31101:8;;;31066:43;30653:631;;;31150:119;31206:14;;;;;;31202:2;31181:40;;31198:1;31181:40;;;;;;;;;;;;31264:3;31249:12;:18;31150:119;;30653:631;31314:12;31298:13;:28;;;;30266:1072;;31348:60;31377:1;31381:2;31385:12;31399:8;31348:20;:60::i;:::-;29779:1637;29667:1749;;;:::o;39837:159::-;;;;;:::o;40655:158::-;;;;;:::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:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:108::-;7564:24;7582:5;7564:24;:::i;:::-;7559:3;7552:37;7487:108;;:::o;7601:118::-;7688:24;7706:5;7688:24;:::i;:::-;7683:3;7676:37;7601:118;;:::o;7725:99::-;7796:21;7811:5;7796:21;:::i;:::-;7791:3;7784:34;7725:99;;:::o;7830:109::-;7911:21;7926:5;7911:21;:::i;:::-;7906:3;7899:34;7830:109;;:::o;7945:360::-;8031:3;8059:38;8091:5;8059:38;:::i;:::-;8113:70;8176:6;8171:3;8113:70;:::i;:::-;8106:77;;8192:52;8237:6;8232:3;8225:4;8218:5;8214:16;8192:52;:::i;:::-;8269:29;8291:6;8269:29;:::i;:::-;8264:3;8260:39;8253:46;;8035:270;7945:360;;;;:::o;8311:364::-;8399:3;8427:39;8460:5;8427:39;:::i;:::-;8482:71;8546:6;8541:3;8482:71;:::i;:::-;8475:78;;8562:52;8607:6;8602:3;8595:4;8588:5;8584:16;8562:52;:::i;:::-;8639:29;8661:6;8639:29;:::i;:::-;8634:3;8630:39;8623:46;;8403:272;8311:364;;;;:::o;8681:377::-;8787:3;8815:39;8848:5;8815:39;:::i;:::-;8870:89;8952:6;8947:3;8870:89;:::i;:::-;8863:96;;8968:52;9013:6;9008:3;9001:4;8994:5;8990:16;8968:52;:::i;:::-;9045:6;9040:3;9036:16;9029:23;;8791:267;8681:377;;;;:::o;9064:366::-;9206:3;9227:67;9291:2;9286:3;9227:67;:::i;:::-;9220:74;;9303:93;9392:3;9303:93;:::i;:::-;9421:2;9416:3;9412:12;9405:19;;9064:366;;;:::o;9436:::-;9578:3;9599:67;9663:2;9658:3;9599:67;:::i;:::-;9592:74;;9675:93;9764:3;9675:93;:::i;:::-;9793:2;9788:3;9784:12;9777:19;;9436:366;;;:::o;9808:::-;9950:3;9971:67;10035:2;10030:3;9971:67;:::i;:::-;9964:74;;10047:93;10136:3;10047:93;:::i;:::-;10165:2;10160:3;10156:12;10149:19;;9808:366;;;:::o;10180:::-;10322:3;10343:67;10407:2;10402:3;10343:67;:::i;:::-;10336:74;;10419:93;10508:3;10419:93;:::i;:::-;10537:2;10532:3;10528:12;10521:19;;10180:366;;;:::o;10552:::-;10694:3;10715:67;10779:2;10774:3;10715:67;:::i;:::-;10708:74;;10791:93;10880:3;10791:93;:::i;:::-;10909:2;10904:3;10900:12;10893:19;;10552:366;;;:::o;10924:::-;11066:3;11087:67;11151:2;11146:3;11087:67;:::i;:::-;11080:74;;11163:93;11252:3;11163:93;:::i;:::-;11281:2;11276:3;11272:12;11265:19;;10924:366;;;:::o;11296:398::-;11455:3;11476:83;11557:1;11552:3;11476:83;:::i;:::-;11469:90;;11568:93;11657:3;11568:93;:::i;:::-;11686:1;11681:3;11677:11;11670:18;;11296:398;;;:::o;11700:366::-;11842:3;11863:67;11927:2;11922:3;11863:67;:::i;:::-;11856:74;;11939:93;12028:3;11939:93;:::i;:::-;12057:2;12052:3;12048:12;12041:19;;11700:366;;;:::o;12072:::-;12214:3;12235:67;12299:2;12294:3;12235:67;:::i;:::-;12228:74;;12311:93;12400:3;12311:93;:::i;:::-;12429:2;12424:3;12420:12;12413:19;;12072:366;;;:::o;12444:::-;12586:3;12607:67;12671:2;12666:3;12607:67;:::i;:::-;12600:74;;12683:93;12772:3;12683:93;:::i;:::-;12801:2;12796:3;12792:12;12785:19;;12444:366;;;:::o;12888:697::-;13047:4;13042:3;13038:14;13134:4;13127:5;13123:16;13117:23;13153:63;13210:4;13205:3;13201:14;13187:12;13153:63;:::i;:::-;13062:164;13318:4;13311:5;13307:16;13301:23;13337:61;13392:4;13387:3;13383:14;13369:12;13337:61;:::i;:::-;13236:172;13492:4;13485:5;13481:16;13475:23;13511:57;13562:4;13557:3;13553:14;13539:12;13511:57;:::i;:::-;13418:160;13016:569;12888:697;;:::o;13591:118::-;13678:24;13696:5;13678:24;:::i;:::-;13673:3;13666:37;13591:118;;:::o;13715:105::-;13790:23;13807:5;13790:23;:::i;:::-;13785:3;13778:36;13715:105;;:::o;13826:435::-;14006:3;14028:95;14119:3;14110:6;14028:95;:::i;:::-;14021:102;;14140:95;14231:3;14222:6;14140:95;:::i;:::-;14133:102;;14252:3;14245:10;;13826:435;;;;;:::o;14267:379::-;14451:3;14473:147;14616:3;14473:147;:::i;:::-;14466:154;;14637:3;14630:10;;14267:379;;;:::o;14652:222::-;14745:4;14783:2;14772:9;14768:18;14760:26;;14796:71;14864:1;14853:9;14849:17;14840:6;14796:71;:::i;:::-;14652:222;;;;:::o;14880:640::-;15075:4;15113:3;15102:9;15098:19;15090:27;;15127:71;15195:1;15184:9;15180:17;15171:6;15127:71;:::i;:::-;15208:72;15276:2;15265:9;15261:18;15252:6;15208:72;:::i;:::-;15290;15358:2;15347:9;15343:18;15334:6;15290:72;:::i;:::-;15409:9;15403:4;15399:20;15394:2;15383:9;15379:18;15372:48;15437:76;15508:4;15499:6;15437:76;:::i;:::-;15429:84;;14880:640;;;;;;;:::o;15526:210::-;15613:4;15651:2;15640:9;15636:18;15628:26;;15664:65;15726:1;15715:9;15711:17;15702:6;15664:65;:::i;:::-;15526:210;;;;:::o;15742:313::-;15855:4;15893:2;15882:9;15878:18;15870:26;;15942:9;15936:4;15932:20;15928:1;15917:9;15913:17;15906:47;15970:78;16043:4;16034:6;15970:78;:::i;:::-;15962:86;;15742:313;;;;:::o;16061:419::-;16227:4;16265:2;16254:9;16250:18;16242:26;;16314:9;16308:4;16304:20;16300:1;16289:9;16285:17;16278:47;16342:131;16468:4;16342:131;:::i;:::-;16334:139;;16061:419;;;:::o;16486:::-;16652:4;16690:2;16679:9;16675:18;16667:26;;16739:9;16733:4;16729:20;16725:1;16714:9;16710:17;16703:47;16767:131;16893:4;16767:131;:::i;:::-;16759:139;;16486:419;;;:::o;16911:::-;17077:4;17115:2;17104:9;17100:18;17092:26;;17164:9;17158:4;17154:20;17150:1;17139:9;17135:17;17128:47;17192:131;17318:4;17192:131;:::i;:::-;17184:139;;16911:419;;;:::o;17336:::-;17502:4;17540:2;17529:9;17525:18;17517:26;;17589:9;17583:4;17579:20;17575:1;17564:9;17560:17;17553:47;17617:131;17743:4;17617:131;:::i;:::-;17609:139;;17336:419;;;:::o;17761:::-;17927:4;17965:2;17954:9;17950:18;17942:26;;18014:9;18008:4;18004:20;18000:1;17989:9;17985:17;17978:47;18042:131;18168:4;18042:131;:::i;:::-;18034:139;;17761:419;;;:::o;18186:::-;18352:4;18390:2;18379:9;18375:18;18367:26;;18439:9;18433:4;18429:20;18425:1;18414:9;18410:17;18403:47;18467:131;18593:4;18467:131;:::i;:::-;18459:139;;18186:419;;;:::o;18611:::-;18777:4;18815:2;18804:9;18800:18;18792:26;;18864:9;18858:4;18854:20;18850:1;18839:9;18835:17;18828:47;18892:131;19018:4;18892:131;:::i;:::-;18884:139;;18611:419;;;:::o;19036:::-;19202:4;19240:2;19229:9;19225:18;19217:26;;19289:9;19283:4;19279:20;19275:1;19264:9;19260:17;19253:47;19317:131;19443:4;19317:131;:::i;:::-;19309:139;;19036:419;;;:::o;19461:::-;19627:4;19665:2;19654:9;19650:18;19642:26;;19714:9;19708:4;19704:20;19700:1;19689:9;19685:17;19678:47;19742:131;19868:4;19742:131;:::i;:::-;19734:139;;19461:419;;;:::o;19886:346::-;20041:4;20079:2;20068:9;20064:18;20056:26;;20092:133;20222:1;20211:9;20207:17;20198:6;20092:133;:::i;:::-;19886:346;;;;:::o;20238:222::-;20331:4;20369:2;20358:9;20354:18;20346:26;;20382:71;20450:1;20439:9;20435:17;20426:6;20382:71;:::i;:::-;20238:222;;;;:::o;20466:129::-;20500:6;20527:20;;:::i;:::-;20517:30;;20556:33;20584:4;20576:6;20556:33;:::i;:::-;20466:129;;;:::o;20601:75::-;20634:6;20667:2;20661:9;20651:19;;20601:75;:::o;20682:307::-;20743:4;20833:18;20825:6;20822:30;20819:56;;;20855:18;;:::i;:::-;20819:56;20893:29;20915:6;20893:29;:::i;:::-;20885:37;;20977:4;20971;20967:15;20959:23;;20682:307;;;:::o;20995:308::-;21057:4;21147:18;21139:6;21136:30;21133:56;;;21169:18;;:::i;:::-;21133:56;21207:29;21229:6;21207:29;:::i;:::-;21199:37;;21291:4;21285;21281:15;21273:23;;20995:308;;;:::o;21309:98::-;21360:6;21394:5;21388:12;21378:22;;21309:98;;;:::o;21413:99::-;21465:6;21499:5;21493:12;21483:22;;21413:99;;;:::o;21518:168::-;21601:11;21635:6;21630:3;21623:19;21675:4;21670:3;21666:14;21651:29;;21518:168;;;;:::o;21692:147::-;21793:11;21830:3;21815:18;;21692:147;;;;:::o;21845:169::-;21929:11;21963:6;21958:3;21951:19;22003:4;21998:3;21994:14;21979:29;;21845:169;;;;:::o;22020:148::-;22122:11;22159:3;22144:18;;22020:148;;;;:::o;22174:305::-;22214:3;22233:20;22251:1;22233:20;:::i;:::-;22228:25;;22267:20;22285:1;22267:20;:::i;:::-;22262:25;;22421:1;22353:66;22349:74;22346:1;22343:81;22340:107;;;22427:18;;:::i;:::-;22340:107;22471:1;22468;22464:9;22457:16;;22174:305;;;;:::o;22485:185::-;22525:1;22542:20;22560:1;22542:20;:::i;:::-;22537:25;;22576:20;22594:1;22576:20;:::i;:::-;22571:25;;22615:1;22605:35;;22620:18;;:::i;:::-;22605:35;22662:1;22659;22655:9;22650:14;;22485:185;;;;:::o;22676:348::-;22716:7;22739:20;22757:1;22739:20;:::i;:::-;22734:25;;22773:20;22791:1;22773:20;:::i;:::-;22768:25;;22961:1;22893:66;22889:74;22886:1;22883:81;22878:1;22871:9;22864:17;22860:105;22857:131;;;22968:18;;:::i;:::-;22857:131;23016:1;23013;23009:9;22998:20;;22676:348;;;;:::o;23030:191::-;23070:4;23090:20;23108:1;23090:20;:::i;:::-;23085:25;;23124:20;23142:1;23124:20;:::i;:::-;23119:25;;23163:1;23160;23157:8;23154:34;;;23168:18;;:::i;:::-;23154:34;23213:1;23210;23206:9;23198:17;;23030:191;;;;:::o;23227:96::-;23264:7;23293:24;23311:5;23293:24;:::i;:::-;23282:35;;23227:96;;;:::o;23329:90::-;23363:7;23406:5;23399:13;23392:21;23381:32;;23329:90;;;:::o;23425:149::-;23461:7;23501:66;23494:5;23490:78;23479:89;;23425:149;;;:::o;23580:126::-;23617:7;23657:42;23650:5;23646:54;23635:65;;23580:126;;;:::o;23712:77::-;23749:7;23778:5;23767:16;;23712:77;;;:::o;23795:101::-;23831:7;23871:18;23864:5;23860:30;23849:41;;23795:101;;;:::o;23902:154::-;23986:6;23981:3;23976;23963:30;24048:1;24039:6;24034:3;24030:16;24023:27;23902:154;;;:::o;24062:307::-;24130:1;24140:113;24154:6;24151:1;24148:13;24140:113;;;24239:1;24234:3;24230:11;24224:18;24220:1;24215:3;24211:11;24204:39;24176:2;24173:1;24169:10;24164:15;;24140:113;;;24271:6;24268:1;24265:13;24262:101;;;24351:1;24342:6;24337:3;24333:16;24326:27;24262:101;24111:258;24062:307;;;:::o;24375:320::-;24419:6;24456:1;24450:4;24446:12;24436:22;;24503:1;24497:4;24493:12;24524:18;24514:81;;24580:4;24572:6;24568:17;24558:27;;24514:81;24642:2;24634:6;24631:14;24611:18;24608:38;24605:84;;;24661:18;;:::i;:::-;24605:84;24426:269;24375:320;;;:::o;24701:281::-;24784:27;24806:4;24784:27;:::i;:::-;24776:6;24772:40;24914:6;24902:10;24899:22;24878:18;24866:10;24863:34;24860:62;24857:88;;;24925:18;;:::i;:::-;24857:88;24965:10;24961:2;24954:22;24744:238;24701:281;;:::o;24988:233::-;25027:3;25050:24;25068:5;25050:24;:::i;:::-;25041:33;;25096:66;25089:5;25086:77;25083:103;;;25166:18;;:::i;:::-;25083:103;25213:1;25206:5;25202:13;25195:20;;24988:233;;;:::o;25227:176::-;25259:1;25276:20;25294:1;25276:20;:::i;:::-;25271:25;;25310:20;25328:1;25310:20;:::i;:::-;25305:25;;25349:1;25339:35;;25354:18;;:::i;:::-;25339:35;25395:1;25392;25388:9;25383:14;;25227:176;;;;:::o;25409:180::-;25457:77;25454:1;25447:88;25554:4;25551:1;25544:15;25578:4;25575:1;25568:15;25595:180;25643:77;25640:1;25633:88;25740:4;25737:1;25730:15;25764:4;25761:1;25754:15;25781:180;25829:77;25826:1;25819:88;25926:4;25923:1;25916:15;25950:4;25947:1;25940:15;25967:180;26015:77;26012:1;26005:88;26112:4;26109:1;26102:15;26136:4;26133:1;26126:15;26153:180;26201:77;26198:1;26191:88;26298:4;26295:1;26288:15;26322:4;26319:1;26312:15;26339:117;26448:1;26445;26438:12;26462:117;26571:1;26568;26561:12;26585:117;26694:1;26691;26684:12;26708:117;26817:1;26814;26807:12;26831:102;26872:6;26923:2;26919:7;26914:2;26907:5;26903:14;26899:28;26889:38;;26831:102;;;:::o;26939:225::-;27079:34;27075:1;27067:6;27063:14;27056:58;27148:8;27143:2;27135:6;27131:15;27124:33;26939:225;:::o;27170:180::-;27310:32;27306:1;27298:6;27294:14;27287:56;27170:180;:::o;27356:168::-;27496:20;27492:1;27484:6;27480:14;27473:44;27356:168;:::o;27530:175::-;27670:27;27666:1;27658:6;27654:14;27647:51;27530:175;:::o;27711:182::-;27851:34;27847:1;27839:6;27835:14;27828:58;27711:182;:::o;27899:234::-;28039:34;28035:1;28027:6;28023:14;28016:58;28108:17;28103:2;28095:6;28091:15;28084:42;27899:234;:::o;28139:114::-;;:::o;28259:166::-;28399:18;28395:1;28387:6;28383:14;28376:42;28259:166;:::o;28431:172::-;28571:24;28567:1;28559:6;28555:14;28548:48;28431:172;:::o;28609:181::-;28749:33;28745:1;28737:6;28733:14;28726:57;28609:181;:::o;28796:122::-;28869:24;28887:5;28869:24;:::i;:::-;28862:5;28859:35;28849:63;;28908:1;28905;28898:12;28849:63;28796:122;:::o;28924:116::-;28994:21;29009:5;28994:21;:::i;:::-;28987:5;28984:32;28974:60;;29030:1;29027;29020:12;28974:60;28924:116;:::o;29046:120::-;29118:23;29135:5;29118:23;:::i;:::-;29111:5;29108:34;29098:62;;29156:1;29153;29146:12;29098:62;29046:120;:::o;29172:122::-;29245:24;29263:5;29245:24;:::i;:::-;29238:5;29235:35;29225:63;;29284:1;29281;29274:12;29225:63;29172:122;:::o
Swarm Source
ipfs://4159edb81e743af080922c1d9a1ea66b3feb1311344409fec6665403108cacb1
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.