ERC-721
Overview
Max Total Supply
732 PP
Holders
272
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PriendlyPigs
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ERC721A.sol"; contract PriendlyPigs is Ownable, ERC721A { uint256 public immutable maxPerAddress; uint256 public maxFree = 1; uint256 public maxPerTransaction = 20; uint256 public mintPrice = 0.01 ether; bool public mintActive = false; string private _baseTokenURI; uint256 public maxSupply = 5555; uint256 public startTime; constructor( uint256 maxBatchSize_, uint256 collectionSize_ ) ERC721A("Priendly Pigs", "PP", maxBatchSize_, collectionSize_) { maxPerAddress = maxBatchSize_; startTime = block.timestamp; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function freeMint(uint256 quantity) external callerIsUser { require(mintActive, "mint is not active"); require(totalSupply() + quantity <= maxSupply, "max supply has been reached"); require(quantity + numberMinted(msg.sender) <= maxFree, "max 1 free per wallet"); _safeMint(msg.sender, quantity); } function mint(uint256 quantity) external payable callerIsUser { require(mintActive, "mint is not active"); require(totalSupply() + quantity <= maxSupply, "max supply has been reached"); require( quantity <= maxPerTransaction, "max 20 per address"); require(msg.value >= mintPrice * quantity, "not enough eth sent"); _safeMint(msg.sender, quantity); } function batchMint(uint256 quantity) external onlyOwner { require(quantity % maxBatchSize == 0,"can only mint a multiple of the maxBatchSize"); require(totalSupply() + quantity <= maxSupply, "max supply has been reached"); uint256 numChunks = quantity / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(msg.sender, maxBatchSize); } } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner { require(address(this).balance > 0); payable(msg.sender).transfer(address(this).balance); } function setOwnersExplicit(uint256 quantity) external onlyOwner { _setOwnersExplicit(quantity); } function setPrice(uint256 _price) external onlyOwner { mintPrice = _price; } function toggleMintActive() external onlyOwner { mintActive = !mintActive; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external 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); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","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":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","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":[],"name":"toggleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
60e06040526000600155600060085560016009556014600a55662386f26fc10000600b556000600c60006101000a81548160ff0219169083151502179055506115b3600e553480156200005157600080fd5b506040516200557c3803806200557c833981810160405281019062000077919062000381565b6040518060400160405280600d81526020017f507269656e646c792050696773000000000000000000000000000000000000008152506040518060400160405280600281526020017f5050000000000000000000000000000000000000000000000000000000000000815250838362000105620000f9620001ee60201b60201c565b620001f660201b60201c565b600081116200014b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001429062000438565b60405180910390fd5b6000821162000191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001889062000416565b60405180910390fd5b8360029080519060200190620001a9929190620002ba565b508260039080519060200190620001c2929190620002ba565b508160a081815250508060808181525050505050508160c0818152505042600f81905550505062000597565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c89062000475565b90600052602060002090601f016020900481019282620002ec576000855562000338565b82601f106200030757805160ff191683800117855562000338565b8280016001018555821562000338579182015b82811115620003375782518255916020019190600101906200031a565b5b5090506200034791906200034b565b5090565b5b80821115620003665760008160009055506001016200034c565b5090565b6000815190506200037b816200057d565b92915050565b600080604083850312156200039b576200039a620004da565b5b6000620003ab858286016200036a565b9250506020620003be858286016200036a565b9150509250929050565b6000620003d76027836200045a565b9150620003e482620004df565b604082019050919050565b6000620003fe602e836200045a565b91506200040b826200052e565b604082019050919050565b600060208201905081810360008301526200043181620003c8565b9050919050565b600060208201905081810360008301526200045381620003ef565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200048e57607f821691505b60208210811415620004a557620004a4620004ab565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b62000588816200046b565b81146200059457600080fd5b50565b60805160a05160c051614f8b620005f16000396000610fff0152600081816113970152818161145c0152818161149901528181612759015281816127820152612f2b0152600081816124e101526125150152614f8b6000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107b0578063d7224ba0146107db578063dc33e68114610806578063e985e9c514610843578063f2fde38b146108805761021a565b8063a22cb465146106f3578063ac4460021461071c578063b88d4fde14610733578063c87b56dd1461075c578063d02c2bf2146107995761021a565b80638da5cb5b116100f25780638da5cb5b1461061b57806391b7f5ed146106465780639231ab2a1461066f57806395d89b41146106ac578063a0712d68146106d75761021a565b8063715018a61461058757806378e979251461059e5780637c928fe9146105c95780638467be0d146105f25761021a565b806342842e0e116101a657806355f804b31161017557806355f804b31461048e5780636352211e146104b7578063639814e0146104f45780636817c76c1461051f57806370a082311461054a5761021a565b806342842e0e146103d2578063485a68a3146103fb5780634b980d67146104265780634f6ccce7146104515761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd1461031857806325fd90f3146103415780632d20fb601461036c5780632f745c59146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061373b565b6108a9565b6040516102539190613dd1565b60405180910390f35b34801561026857600080fd5b506102716109f3565b60405161027e9190613dec565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906137e2565b610a85565b6040516102bb9190613d6a565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906136fb565b610b0a565b005b3480156102f957600080fd5b50610302610c23565b60405161030f91906141e9565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906135e5565b610c2d565b005b34801561034d57600080fd5b50610356610c3d565b6040516103639190613dd1565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906137e2565b610c50565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906136fb565b610cd8565b6040516103c991906141e9565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906135e5565b610ed6565b005b34801561040757600080fd5b50610410610ef6565b60405161041d91906141e9565b60405180910390f35b34801561043257600080fd5b5061043b610efc565b60405161044891906141e9565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906137e2565b610f02565b60405161048591906141e9565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190613795565b610f55565b005b3480156104c357600080fd5b506104de60048036038101906104d991906137e2565b610fe7565b6040516104eb9190613d6a565b60405180910390f35b34801561050057600080fd5b50610509610ffd565b60405161051691906141e9565b60405180910390f35b34801561052b57600080fd5b50610534611021565b60405161054191906141e9565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190613578565b611027565b60405161057e91906141e9565b60405180910390f35b34801561059357600080fd5b5061059c611110565b005b3480156105aa57600080fd5b506105b3611198565b6040516105c091906141e9565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb91906137e2565b61119e565b005b3480156105fe57600080fd5b50610619600480360381019061061491906137e2565b611317565b005b34801561062757600080fd5b506106306114d5565b60405161063d9190613d6a565b60405180910390f35b34801561065257600080fd5b5061066d600480360381019061066891906137e2565b6114fe565b005b34801561067b57600080fd5b50610696600480360381019061069191906137e2565b611584565b6040516106a391906141ce565b60405180910390f35b3480156106b857600080fd5b506106c161159c565b6040516106ce9190613dec565b60405180910390f35b6106f160048036038101906106ec91906137e2565b61162e565b005b3480156106ff57600080fd5b5061071a600480360381019061071591906136bb565b6117e4565b005b34801561072857600080fd5b50610731611965565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613638565b611a37565b005b34801561076857600080fd5b50610783600480360381019061077e91906137e2565b611a93565b6040516107909190613dec565b60405180910390f35b3480156107a557600080fd5b506107ae611b3a565b005b3480156107bc57600080fd5b506107c5611be2565b6040516107d291906141e9565b60405180910390f35b3480156107e757600080fd5b506107f0611be8565b6040516107fd91906141e9565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190613578565b611bee565b60405161083a91906141e9565b60405180910390f35b34801561084f57600080fd5b5061086a600480360381019061086591906135a5565b611c00565b6040516108779190613dd1565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613578565b611c94565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109dc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ec57506109eb82611d8c565b5b9050919050565b606060028054610a029061453c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e9061453c565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b6000610a9082611df6565b610acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac69061418e565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1582610fe7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061408e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba5611e04565b73ffffffffffffffffffffffffffffffffffffffff161480610bd45750610bd381610bce611e04565b611c00565b5b610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90613f0e565b60405180910390fd5b610c1e838383611e0c565b505050565b6000600154905090565b610c38838383611ebe565b505050565b600c60009054906101000a900460ff1681565b610c58611e04565b73ffffffffffffffffffffffffffffffffffffffff16610c766114d5565b73ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390613fee565b60405180910390fd5b610cd581612477565b50565b6000610ce383611027565b8210610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613e0e565b60405180910390fd5b6000610d2e610c23565b905060008060005b83811015610e94576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e2857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e805786841415610e71578195505050505050610ed0565b8380610e7c9061459f565b9450505b508080610e8c9061459f565b915050610d36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061410e565b60405180910390fd5b92915050565b610ef183838360405180602001604052806000815250611a37565b505050565b60095481565b600a5481565b6000610f0c610c23565b8210610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490613e8e565b60405180910390fd5b819050919050565b610f5d611e04565b73ffffffffffffffffffffffffffffffffffffffff16610f7b6114d5565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613fee565b60405180910390fd5b8181600d9190610fe292919061336c565b505050565b6000610ff282612705565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90613fae565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611118611e04565b73ffffffffffffffffffffffffffffffffffffffff166111366114d5565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390613fee565b60405180910390fd5b6111966000612908565b565b600f5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390613eee565b60405180910390fd5b600c60009054906101000a900460ff1661125b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112529061406e565b60405180910390fd5b600e5481611267610c23565b61127191906142e3565b11156112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990613f4e565b60405180910390fd5b6009546112be33611bee565b826112c991906142e3565b111561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613f8e565b60405180910390fd5b61131433826129cc565b50565b61131f611e04565b73ffffffffffffffffffffffffffffffffffffffff1661133d6114d5565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90613fee565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000826113c191906145e8565b14611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890613e6e565b60405180910390fd5b600e548161140d610c23565b61141791906142e3565b1115611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613f4e565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000826114869190614339565b905060005b818110156114d0576114bd337f00000000000000000000000000000000000000000000000000000000000000006129cc565b80806114c89061459f565b91505061148b565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611506611e04565b73ffffffffffffffffffffffffffffffffffffffff166115246114d5565b73ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190613fee565b60405180910390fd5b80600b8190555050565b61158c6133f2565b61159582612705565b9050919050565b6060600380546115ab9061453c565b80601f01602080910402602001604051908101604052809291908181526020018280546115d79061453c565b80156116245780601f106115f957610100808354040283529160200191611624565b820191906000526020600020905b81548152906001019060200180831161160757829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390613eee565b60405180910390fd5b600c60009054906101000a900460ff166116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e29061406e565b60405180910390fd5b600e54816116f7610c23565b61170191906142e3565b1115611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990613f4e565b60405180910390fd5b600a54811115611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90613f6e565b60405180910390fd5b80600b54611795919061436a565b3410156117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce9061414e565b60405180910390fd5b6117e133826129cc565b50565b6117ec611e04565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118519061402e565b60405180910390fd5b8060076000611867611e04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611914611e04565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119599190613dd1565b60405180910390a35050565b61196d611e04565b73ffffffffffffffffffffffffffffffffffffffff1661198b6114d5565b73ffffffffffffffffffffffffffffffffffffffff16146119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890613fee565b60405180910390fd5b600047116119ee57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a34573d6000803e3d6000fd5b50565b611a42848484611ebe565b611a4e848484846129ea565b611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a84906140ae565b60405180910390fd5b50505050565b6060611a9e82611df6565b611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad49061400e565b60405180910390fd5b6000611ae7612b81565b90506000815111611b075760405180602001604052806000815250611b32565b80611b1184612c13565b604051602001611b22929190613d46565b6040516020818303038152906040525b915050919050565b611b42611e04565b73ffffffffffffffffffffffffffffffffffffffff16611b606114d5565b73ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613fee565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b600e5481565b60085481565b6000611bf982612d74565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c9c611e04565b73ffffffffffffffffffffffffffffffffffffffff16611cba6114d5565b73ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790613fee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790613e2e565b60405180910390fd5b611d8981612908565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ec982612705565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ef0611e04565b73ffffffffffffffffffffffffffffffffffffffff161480611f4c5750611f15611e04565b73ffffffffffffffffffffffffffffffffffffffff16611f3484610a85565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f685750611f678260000151611f62611e04565b611c00565b5b905080611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa19061404e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201390613fce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561208c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208390613eae565b60405180910390fd5b6120998585856001612e5d565b6120a96000848460000151611e0c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661211791906143c4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121bb919061429d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122c191906142e3565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124075761233781611df6565b15612406576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246f8686866001612e63565b505050505050565b60006008549050600082116124c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b890613f2e565b60405180910390fd5b6000600183836124d191906142e3565b6124db91906143f8565b905060017f000000000000000000000000000000000000000000000000000000000000000061250a91906143f8565b8111156125415760017f000000000000000000000000000000000000000000000000000000000000000061253e91906143f8565b90505b61254a81611df6565b612589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125809061412e565b60405180910390fd5b60008290505b8181116126ec57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126d957600061260c82612705565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806126e49061459f565b91505061258f565b506001816126fa91906142e3565b600881905550505050565b61270d6133f2565b61271682611df6565b612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90613e4e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106127b95760017f0000000000000000000000000000000000000000000000000000000000000000846127ac91906143f8565b6127b691906142e3565b90505b60008390505b8181106128c7576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128b357809350505050612903565b5080806128bf90614512565b9150506127bf565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa9061416e565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129e6828260405180602001604052806000815250612e69565b5050565b6000612a0b8473ffffffffffffffffffffffffffffffffffffffff16613349565b15612b74578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a34611e04565b8786866040518563ffffffff1660e01b8152600401612a569493929190613d85565b602060405180830381600087803b158015612a7057600080fd5b505af1925050508015612aa157506040513d601f19601f82011682018060405250810190612a9e9190613768565b60015b612b24573d8060008114612ad1576040519150601f19603f3d011682016040523d82523d6000602084013e612ad6565b606091505b50600081511415612b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b13906140ae565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b79565b600190505b949350505050565b6060600d8054612b909061453c565b80601f0160208091040260200160405190810160405280929190818152602001828054612bbc9061453c565b8015612c095780601f10612bde57610100808354040283529160200191612c09565b820191906000526020600020905b815481529060010190602001808311612bec57829003601f168201915b5050505050905090565b60606000821415612c5b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d6f565b600082905060005b60008214612c8d578080612c769061459f565b915050600a82612c869190614339565b9150612c63565b60008167ffffffffffffffff811115612ca957612ca86146d5565b5b6040519080825280601f01601f191660200182016040528015612cdb5781602001600182028036833780820191505090505b5090505b60008514612d6857600182612cf491906143f8565b9150600a85612d0391906145e8565b6030612d0f91906142e3565b60f81b818381518110612d2557612d246146a6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d619190614339565b9450612cdf565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddc90613ece565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed7906140ee565b60405180910390fd5b612ee981611df6565b15612f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f20906140ce565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f83906141ae565b60405180910390fd5b612f996000858386612e5d565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613096919061429d565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130bd919061429d565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561332c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132cc60008884886129ea565b61330b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613302906140ae565b60405180910390fd5b81806133169061459f565b92505080806133249061459f565b91505061325b565b50806001819055506133416000878588612e63565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133789061453c565b90600052602060002090601f01602090048101928261339a57600085556133e1565b82601f106133b357803560ff19168380011785556133e1565b828001600101855582156133e1579182015b828111156133e05782358255916020019190600101906133c5565b5b5090506133ee919061342c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561344557600081600090555060010161342d565b5090565b600061345c61345784614229565b614204565b90508281526020810184848401111561347857613477614713565b5b6134838482856144d0565b509392505050565b60008135905061349a81614ef9565b92915050565b6000813590506134af81614f10565b92915050565b6000813590506134c481614f27565b92915050565b6000815190506134d981614f27565b92915050565b600082601f8301126134f4576134f3614709565b5b8135613504848260208601613449565b91505092915050565b60008083601f84011261352357613522614709565b5b8235905067ffffffffffffffff8111156135405761353f614704565b5b60208301915083600182028301111561355c5761355b61470e565b5b9250929050565b60008135905061357281614f3e565b92915050565b60006020828403121561358e5761358d61471d565b5b600061359c8482850161348b565b91505092915050565b600080604083850312156135bc576135bb61471d565b5b60006135ca8582860161348b565b92505060206135db8582860161348b565b9150509250929050565b6000806000606084860312156135fe576135fd61471d565b5b600061360c8682870161348b565b935050602061361d8682870161348b565b925050604061362e86828701613563565b9150509250925092565b600080600080608085870312156136525761365161471d565b5b60006136608782880161348b565b94505060206136718782880161348b565b935050604061368287828801613563565b925050606085013567ffffffffffffffff8111156136a3576136a2614718565b5b6136af878288016134df565b91505092959194509250565b600080604083850312156136d2576136d161471d565b5b60006136e08582860161348b565b92505060206136f1858286016134a0565b9150509250929050565b600080604083850312156137125761371161471d565b5b60006137208582860161348b565b925050602061373185828601613563565b9150509250929050565b6000602082840312156137515761375061471d565b5b600061375f848285016134b5565b91505092915050565b60006020828403121561377e5761377d61471d565b5b600061378c848285016134ca565b91505092915050565b600080602083850312156137ac576137ab61471d565b5b600083013567ffffffffffffffff8111156137ca576137c9614718565b5b6137d68582860161350d565b92509250509250929050565b6000602082840312156137f8576137f761471d565b5b600061380684828501613563565b91505092915050565b6138188161442c565b82525050565b6138278161442c565b82525050565b6138368161443e565b82525050565b60006138478261425a565b6138518185614270565b93506138618185602086016144df565b61386a81614722565b840191505092915050565b600061388082614265565b61388a8185614281565b935061389a8185602086016144df565b6138a381614722565b840191505092915050565b60006138b982614265565b6138c38185614292565b93506138d38185602086016144df565b80840191505092915050565b60006138ec602283614281565b91506138f782614733565b604082019050919050565b600061390f602683614281565b915061391a82614782565b604082019050919050565b6000613932602a83614281565b915061393d826147d1565b604082019050919050565b6000613955602c83614281565b915061396082614820565b604082019050919050565b6000613978602383614281565b91506139838261486f565b604082019050919050565b600061399b602583614281565b91506139a6826148be565b604082019050919050565b60006139be603183614281565b91506139c98261490d565b604082019050919050565b60006139e1601e83614281565b91506139ec8261495c565b602082019050919050565b6000613a04603983614281565b9150613a0f82614985565b604082019050919050565b6000613a27601883614281565b9150613a32826149d4565b602082019050919050565b6000613a4a601b83614281565b9150613a55826149fd565b602082019050919050565b6000613a6d601283614281565b9150613a7882614a26565b602082019050919050565b6000613a90601583614281565b9150613a9b82614a4f565b602082019050919050565b6000613ab3602b83614281565b9150613abe82614a78565b604082019050919050565b6000613ad6602683614281565b9150613ae182614ac7565b604082019050919050565b6000613af9602083614281565b9150613b0482614b16565b602082019050919050565b6000613b1c602f83614281565b9150613b2782614b3f565b604082019050919050565b6000613b3f601a83614281565b9150613b4a82614b8e565b602082019050919050565b6000613b62603283614281565b9150613b6d82614bb7565b604082019050919050565b6000613b85601283614281565b9150613b9082614c06565b602082019050919050565b6000613ba8602283614281565b9150613bb382614c2f565b604082019050919050565b6000613bcb603383614281565b9150613bd682614c7e565b604082019050919050565b6000613bee601d83614281565b9150613bf982614ccd565b602082019050919050565b6000613c11602183614281565b9150613c1c82614cf6565b604082019050919050565b6000613c34602e83614281565b9150613c3f82614d45565b604082019050919050565b6000613c57602683614281565b9150613c6282614d94565b604082019050919050565b6000613c7a601383614281565b9150613c8582614de3565b602082019050919050565b6000613c9d602f83614281565b9150613ca882614e0c565b604082019050919050565b6000613cc0602d83614281565b9150613ccb82614e5b565b604082019050919050565b6000613ce3602283614281565b9150613cee82614eaa565b604082019050919050565b604082016000820151613d0f600085018261380f565b506020820151613d226020850182613d37565b50505050565b613d31816144b2565b82525050565b613d40816144bc565b82525050565b6000613d5282856138ae565b9150613d5e82846138ae565b91508190509392505050565b6000602082019050613d7f600083018461381e565b92915050565b6000608082019050613d9a600083018761381e565b613da7602083018661381e565b613db46040830185613d28565b8181036060830152613dc6818461383c565b905095945050505050565b6000602082019050613de6600083018461382d565b92915050565b60006020820190508181036000830152613e068184613875565b905092915050565b60006020820190508181036000830152613e27816138df565b9050919050565b60006020820190508181036000830152613e4781613902565b9050919050565b60006020820190508181036000830152613e6781613925565b9050919050565b60006020820190508181036000830152613e8781613948565b9050919050565b60006020820190508181036000830152613ea78161396b565b9050919050565b60006020820190508181036000830152613ec78161398e565b9050919050565b60006020820190508181036000830152613ee7816139b1565b9050919050565b60006020820190508181036000830152613f07816139d4565b9050919050565b60006020820190508181036000830152613f27816139f7565b9050919050565b60006020820190508181036000830152613f4781613a1a565b9050919050565b60006020820190508181036000830152613f6781613a3d565b9050919050565b60006020820190508181036000830152613f8781613a60565b9050919050565b60006020820190508181036000830152613fa781613a83565b9050919050565b60006020820190508181036000830152613fc781613aa6565b9050919050565b60006020820190508181036000830152613fe781613ac9565b9050919050565b6000602082019050818103600083015261400781613aec565b9050919050565b6000602082019050818103600083015261402781613b0f565b9050919050565b6000602082019050818103600083015261404781613b32565b9050919050565b6000602082019050818103600083015261406781613b55565b9050919050565b6000602082019050818103600083015261408781613b78565b9050919050565b600060208201905081810360008301526140a781613b9b565b9050919050565b600060208201905081810360008301526140c781613bbe565b9050919050565b600060208201905081810360008301526140e781613be1565b9050919050565b6000602082019050818103600083015261410781613c04565b9050919050565b6000602082019050818103600083015261412781613c27565b9050919050565b6000602082019050818103600083015261414781613c4a565b9050919050565b6000602082019050818103600083015261416781613c6d565b9050919050565b6000602082019050818103600083015261418781613c90565b9050919050565b600060208201905081810360008301526141a781613cb3565b9050919050565b600060208201905081810360008301526141c781613cd6565b9050919050565b60006040820190506141e36000830184613cf9565b92915050565b60006020820190506141fe6000830184613d28565b92915050565b600061420e61421f565b905061421a828261456e565b919050565b6000604051905090565b600067ffffffffffffffff821115614244576142436146d5565b5b61424d82614722565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142a882614476565b91506142b383614476565b9250826fffffffffffffffffffffffffffffffff038211156142d8576142d7614619565b5b828201905092915050565b60006142ee826144b2565b91506142f9836144b2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432e5761432d614619565b5b828201905092915050565b6000614344826144b2565b915061434f836144b2565b92508261435f5761435e614648565b5b828204905092915050565b6000614375826144b2565b9150614380836144b2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143b9576143b8614619565b5b828202905092915050565b60006143cf82614476565b91506143da83614476565b9250828210156143ed576143ec614619565b5b828203905092915050565b6000614403826144b2565b915061440e836144b2565b92508282101561442157614420614619565b5b828203905092915050565b600061443782614492565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156144fd5780820151818401526020810190506144e2565b8381111561450c576000848401525b50505050565b600061451d826144b2565b9150600082141561453157614530614619565b5b600182039050919050565b6000600282049050600182168061455457607f821691505b6020821081141561456857614567614677565b5b50919050565b61457782614722565b810181811067ffffffffffffffff82111715614596576145956146d5565b5b80604052505050565b60006145aa826144b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145dd576145dc614619565b5b600182019050919050565b60006145f3826144b2565b91506145fe836144b2565b92508261460e5761460d614648565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f6d617820737570706c7920686173206265656e20726561636865640000000000600082015250565b7f6d61782032302070657220616464726573730000000000000000000000000000600082015250565b7f6d617820312066726565207065722077616c6c65740000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d696e74206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206574682073656e7400000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614f028161442c565b8114614f0d57600080fd5b50565b614f198161443e565b8114614f2457600080fd5b50565b614f308161444a565b8114614f3b57600080fd5b50565b614f47816144b2565b8114614f5257600080fd5b5056fea26469706673582212200fbf3e8ffb3b5ac79f3eb64518f676eac3171c8831f7495caff1a6d5fd18f5c664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000015b3
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107b0578063d7224ba0146107db578063dc33e68114610806578063e985e9c514610843578063f2fde38b146108805761021a565b8063a22cb465146106f3578063ac4460021461071c578063b88d4fde14610733578063c87b56dd1461075c578063d02c2bf2146107995761021a565b80638da5cb5b116100f25780638da5cb5b1461061b57806391b7f5ed146106465780639231ab2a1461066f57806395d89b41146106ac578063a0712d68146106d75761021a565b8063715018a61461058757806378e979251461059e5780637c928fe9146105c95780638467be0d146105f25761021a565b806342842e0e116101a657806355f804b31161017557806355f804b31461048e5780636352211e146104b7578063639814e0146104f45780636817c76c1461051f57806370a082311461054a5761021a565b806342842e0e146103d2578063485a68a3146103fb5780634b980d67146104265780634f6ccce7146104515761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd1461031857806325fd90f3146103415780632d20fb601461036c5780632f745c59146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061373b565b6108a9565b6040516102539190613dd1565b60405180910390f35b34801561026857600080fd5b506102716109f3565b60405161027e9190613dec565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906137e2565b610a85565b6040516102bb9190613d6a565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906136fb565b610b0a565b005b3480156102f957600080fd5b50610302610c23565b60405161030f91906141e9565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906135e5565b610c2d565b005b34801561034d57600080fd5b50610356610c3d565b6040516103639190613dd1565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906137e2565b610c50565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906136fb565b610cd8565b6040516103c991906141e9565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906135e5565b610ed6565b005b34801561040757600080fd5b50610410610ef6565b60405161041d91906141e9565b60405180910390f35b34801561043257600080fd5b5061043b610efc565b60405161044891906141e9565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906137e2565b610f02565b60405161048591906141e9565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190613795565b610f55565b005b3480156104c357600080fd5b506104de60048036038101906104d991906137e2565b610fe7565b6040516104eb9190613d6a565b60405180910390f35b34801561050057600080fd5b50610509610ffd565b60405161051691906141e9565b60405180910390f35b34801561052b57600080fd5b50610534611021565b60405161054191906141e9565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190613578565b611027565b60405161057e91906141e9565b60405180910390f35b34801561059357600080fd5b5061059c611110565b005b3480156105aa57600080fd5b506105b3611198565b6040516105c091906141e9565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb91906137e2565b61119e565b005b3480156105fe57600080fd5b50610619600480360381019061061491906137e2565b611317565b005b34801561062757600080fd5b506106306114d5565b60405161063d9190613d6a565b60405180910390f35b34801561065257600080fd5b5061066d600480360381019061066891906137e2565b6114fe565b005b34801561067b57600080fd5b50610696600480360381019061069191906137e2565b611584565b6040516106a391906141ce565b60405180910390f35b3480156106b857600080fd5b506106c161159c565b6040516106ce9190613dec565b60405180910390f35b6106f160048036038101906106ec91906137e2565b61162e565b005b3480156106ff57600080fd5b5061071a600480360381019061071591906136bb565b6117e4565b005b34801561072857600080fd5b50610731611965565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613638565b611a37565b005b34801561076857600080fd5b50610783600480360381019061077e91906137e2565b611a93565b6040516107909190613dec565b60405180910390f35b3480156107a557600080fd5b506107ae611b3a565b005b3480156107bc57600080fd5b506107c5611be2565b6040516107d291906141e9565b60405180910390f35b3480156107e757600080fd5b506107f0611be8565b6040516107fd91906141e9565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190613578565b611bee565b60405161083a91906141e9565b60405180910390f35b34801561084f57600080fd5b5061086a600480360381019061086591906135a5565b611c00565b6040516108779190613dd1565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613578565b611c94565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109dc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ec57506109eb82611d8c565b5b9050919050565b606060028054610a029061453c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e9061453c565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b6000610a9082611df6565b610acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac69061418e565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1582610fe7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061408e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba5611e04565b73ffffffffffffffffffffffffffffffffffffffff161480610bd45750610bd381610bce611e04565b611c00565b5b610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90613f0e565b60405180910390fd5b610c1e838383611e0c565b505050565b6000600154905090565b610c38838383611ebe565b505050565b600c60009054906101000a900460ff1681565b610c58611e04565b73ffffffffffffffffffffffffffffffffffffffff16610c766114d5565b73ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390613fee565b60405180910390fd5b610cd581612477565b50565b6000610ce383611027565b8210610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613e0e565b60405180910390fd5b6000610d2e610c23565b905060008060005b83811015610e94576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e2857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e805786841415610e71578195505050505050610ed0565b8380610e7c9061459f565b9450505b508080610e8c9061459f565b915050610d36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061410e565b60405180910390fd5b92915050565b610ef183838360405180602001604052806000815250611a37565b505050565b60095481565b600a5481565b6000610f0c610c23565b8210610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490613e8e565b60405180910390fd5b819050919050565b610f5d611e04565b73ffffffffffffffffffffffffffffffffffffffff16610f7b6114d5565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613fee565b60405180910390fd5b8181600d9190610fe292919061336c565b505050565b6000610ff282612705565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000001481565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90613fae565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611118611e04565b73ffffffffffffffffffffffffffffffffffffffff166111366114d5565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390613fee565b60405180910390fd5b6111966000612908565b565b600f5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390613eee565b60405180910390fd5b600c60009054906101000a900460ff1661125b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112529061406e565b60405180910390fd5b600e5481611267610c23565b61127191906142e3565b11156112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990613f4e565b60405180910390fd5b6009546112be33611bee565b826112c991906142e3565b111561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613f8e565b60405180910390fd5b61131433826129cc565b50565b61131f611e04565b73ffffffffffffffffffffffffffffffffffffffff1661133d6114d5565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90613fee565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000014826113c191906145e8565b14611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890613e6e565b60405180910390fd5b600e548161140d610c23565b61141791906142e3565b1115611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613f4e565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000014826114869190614339565b905060005b818110156114d0576114bd337f00000000000000000000000000000000000000000000000000000000000000146129cc565b80806114c89061459f565b91505061148b565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611506611e04565b73ffffffffffffffffffffffffffffffffffffffff166115246114d5565b73ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190613fee565b60405180910390fd5b80600b8190555050565b61158c6133f2565b61159582612705565b9050919050565b6060600380546115ab9061453c565b80601f01602080910402602001604051908101604052809291908181526020018280546115d79061453c565b80156116245780601f106115f957610100808354040283529160200191611624565b820191906000526020600020905b81548152906001019060200180831161160757829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390613eee565b60405180910390fd5b600c60009054906101000a900460ff166116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e29061406e565b60405180910390fd5b600e54816116f7610c23565b61170191906142e3565b1115611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990613f4e565b60405180910390fd5b600a54811115611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90613f6e565b60405180910390fd5b80600b54611795919061436a565b3410156117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce9061414e565b60405180910390fd5b6117e133826129cc565b50565b6117ec611e04565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118519061402e565b60405180910390fd5b8060076000611867611e04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611914611e04565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119599190613dd1565b60405180910390a35050565b61196d611e04565b73ffffffffffffffffffffffffffffffffffffffff1661198b6114d5565b73ffffffffffffffffffffffffffffffffffffffff16146119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890613fee565b60405180910390fd5b600047116119ee57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a34573d6000803e3d6000fd5b50565b611a42848484611ebe565b611a4e848484846129ea565b611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a84906140ae565b60405180910390fd5b50505050565b6060611a9e82611df6565b611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad49061400e565b60405180910390fd5b6000611ae7612b81565b90506000815111611b075760405180602001604052806000815250611b32565b80611b1184612c13565b604051602001611b22929190613d46565b6040516020818303038152906040525b915050919050565b611b42611e04565b73ffffffffffffffffffffffffffffffffffffffff16611b606114d5565b73ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613fee565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b600e5481565b60085481565b6000611bf982612d74565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c9c611e04565b73ffffffffffffffffffffffffffffffffffffffff16611cba6114d5565b73ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790613fee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790613e2e565b60405180910390fd5b611d8981612908565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ec982612705565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ef0611e04565b73ffffffffffffffffffffffffffffffffffffffff161480611f4c5750611f15611e04565b73ffffffffffffffffffffffffffffffffffffffff16611f3484610a85565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f685750611f678260000151611f62611e04565b611c00565b5b905080611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa19061404e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201390613fce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561208c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208390613eae565b60405180910390fd5b6120998585856001612e5d565b6120a96000848460000151611e0c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661211791906143c4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121bb919061429d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122c191906142e3565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124075761233781611df6565b15612406576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246f8686866001612e63565b505050505050565b60006008549050600082116124c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b890613f2e565b60405180910390fd5b6000600183836124d191906142e3565b6124db91906143f8565b905060017f00000000000000000000000000000000000000000000000000000000000015b361250a91906143f8565b8111156125415760017f00000000000000000000000000000000000000000000000000000000000015b361253e91906143f8565b90505b61254a81611df6565b612589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125809061412e565b60405180910390fd5b60008290505b8181116126ec57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126d957600061260c82612705565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806126e49061459f565b91505061258f565b506001816126fa91906142e3565b600881905550505050565b61270d6133f2565b61271682611df6565b612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90613e4e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106127b95760017f0000000000000000000000000000000000000000000000000000000000000014846127ac91906143f8565b6127b691906142e3565b90505b60008390505b8181106128c7576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128b357809350505050612903565b5080806128bf90614512565b9150506127bf565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa9061416e565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129e6828260405180602001604052806000815250612e69565b5050565b6000612a0b8473ffffffffffffffffffffffffffffffffffffffff16613349565b15612b74578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a34611e04565b8786866040518563ffffffff1660e01b8152600401612a569493929190613d85565b602060405180830381600087803b158015612a7057600080fd5b505af1925050508015612aa157506040513d601f19601f82011682018060405250810190612a9e9190613768565b60015b612b24573d8060008114612ad1576040519150601f19603f3d011682016040523d82523d6000602084013e612ad6565b606091505b50600081511415612b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b13906140ae565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b79565b600190505b949350505050565b6060600d8054612b909061453c565b80601f0160208091040260200160405190810160405280929190818152602001828054612bbc9061453c565b8015612c095780601f10612bde57610100808354040283529160200191612c09565b820191906000526020600020905b815481529060010190602001808311612bec57829003601f168201915b5050505050905090565b60606000821415612c5b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d6f565b600082905060005b60008214612c8d578080612c769061459f565b915050600a82612c869190614339565b9150612c63565b60008167ffffffffffffffff811115612ca957612ca86146d5565b5b6040519080825280601f01601f191660200182016040528015612cdb5781602001600182028036833780820191505090505b5090505b60008514612d6857600182612cf491906143f8565b9150600a85612d0391906145e8565b6030612d0f91906142e3565b60f81b818381518110612d2557612d246146a6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d619190614339565b9450612cdf565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddc90613ece565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed7906140ee565b60405180910390fd5b612ee981611df6565b15612f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f20906140ce565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f83906141ae565b60405180910390fd5b612f996000858386612e5d565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613096919061429d565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130bd919061429d565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561332c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132cc60008884886129ea565b61330b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613302906140ae565b60405180910390fd5b81806133169061459f565b92505080806133249061459f565b91505061325b565b50806001819055506133416000878588612e63565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133789061453c565b90600052602060002090601f01602090048101928261339a57600085556133e1565b82601f106133b357803560ff19168380011785556133e1565b828001600101855582156133e1579182015b828111156133e05782358255916020019190600101906133c5565b5b5090506133ee919061342c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561344557600081600090555060010161342d565b5090565b600061345c61345784614229565b614204565b90508281526020810184848401111561347857613477614713565b5b6134838482856144d0565b509392505050565b60008135905061349a81614ef9565b92915050565b6000813590506134af81614f10565b92915050565b6000813590506134c481614f27565b92915050565b6000815190506134d981614f27565b92915050565b600082601f8301126134f4576134f3614709565b5b8135613504848260208601613449565b91505092915050565b60008083601f84011261352357613522614709565b5b8235905067ffffffffffffffff8111156135405761353f614704565b5b60208301915083600182028301111561355c5761355b61470e565b5b9250929050565b60008135905061357281614f3e565b92915050565b60006020828403121561358e5761358d61471d565b5b600061359c8482850161348b565b91505092915050565b600080604083850312156135bc576135bb61471d565b5b60006135ca8582860161348b565b92505060206135db8582860161348b565b9150509250929050565b6000806000606084860312156135fe576135fd61471d565b5b600061360c8682870161348b565b935050602061361d8682870161348b565b925050604061362e86828701613563565b9150509250925092565b600080600080608085870312156136525761365161471d565b5b60006136608782880161348b565b94505060206136718782880161348b565b935050604061368287828801613563565b925050606085013567ffffffffffffffff8111156136a3576136a2614718565b5b6136af878288016134df565b91505092959194509250565b600080604083850312156136d2576136d161471d565b5b60006136e08582860161348b565b92505060206136f1858286016134a0565b9150509250929050565b600080604083850312156137125761371161471d565b5b60006137208582860161348b565b925050602061373185828601613563565b9150509250929050565b6000602082840312156137515761375061471d565b5b600061375f848285016134b5565b91505092915050565b60006020828403121561377e5761377d61471d565b5b600061378c848285016134ca565b91505092915050565b600080602083850312156137ac576137ab61471d565b5b600083013567ffffffffffffffff8111156137ca576137c9614718565b5b6137d68582860161350d565b92509250509250929050565b6000602082840312156137f8576137f761471d565b5b600061380684828501613563565b91505092915050565b6138188161442c565b82525050565b6138278161442c565b82525050565b6138368161443e565b82525050565b60006138478261425a565b6138518185614270565b93506138618185602086016144df565b61386a81614722565b840191505092915050565b600061388082614265565b61388a8185614281565b935061389a8185602086016144df565b6138a381614722565b840191505092915050565b60006138b982614265565b6138c38185614292565b93506138d38185602086016144df565b80840191505092915050565b60006138ec602283614281565b91506138f782614733565b604082019050919050565b600061390f602683614281565b915061391a82614782565b604082019050919050565b6000613932602a83614281565b915061393d826147d1565b604082019050919050565b6000613955602c83614281565b915061396082614820565b604082019050919050565b6000613978602383614281565b91506139838261486f565b604082019050919050565b600061399b602583614281565b91506139a6826148be565b604082019050919050565b60006139be603183614281565b91506139c98261490d565b604082019050919050565b60006139e1601e83614281565b91506139ec8261495c565b602082019050919050565b6000613a04603983614281565b9150613a0f82614985565b604082019050919050565b6000613a27601883614281565b9150613a32826149d4565b602082019050919050565b6000613a4a601b83614281565b9150613a55826149fd565b602082019050919050565b6000613a6d601283614281565b9150613a7882614a26565b602082019050919050565b6000613a90601583614281565b9150613a9b82614a4f565b602082019050919050565b6000613ab3602b83614281565b9150613abe82614a78565b604082019050919050565b6000613ad6602683614281565b9150613ae182614ac7565b604082019050919050565b6000613af9602083614281565b9150613b0482614b16565b602082019050919050565b6000613b1c602f83614281565b9150613b2782614b3f565b604082019050919050565b6000613b3f601a83614281565b9150613b4a82614b8e565b602082019050919050565b6000613b62603283614281565b9150613b6d82614bb7565b604082019050919050565b6000613b85601283614281565b9150613b9082614c06565b602082019050919050565b6000613ba8602283614281565b9150613bb382614c2f565b604082019050919050565b6000613bcb603383614281565b9150613bd682614c7e565b604082019050919050565b6000613bee601d83614281565b9150613bf982614ccd565b602082019050919050565b6000613c11602183614281565b9150613c1c82614cf6565b604082019050919050565b6000613c34602e83614281565b9150613c3f82614d45565b604082019050919050565b6000613c57602683614281565b9150613c6282614d94565b604082019050919050565b6000613c7a601383614281565b9150613c8582614de3565b602082019050919050565b6000613c9d602f83614281565b9150613ca882614e0c565b604082019050919050565b6000613cc0602d83614281565b9150613ccb82614e5b565b604082019050919050565b6000613ce3602283614281565b9150613cee82614eaa565b604082019050919050565b604082016000820151613d0f600085018261380f565b506020820151613d226020850182613d37565b50505050565b613d31816144b2565b82525050565b613d40816144bc565b82525050565b6000613d5282856138ae565b9150613d5e82846138ae565b91508190509392505050565b6000602082019050613d7f600083018461381e565b92915050565b6000608082019050613d9a600083018761381e565b613da7602083018661381e565b613db46040830185613d28565b8181036060830152613dc6818461383c565b905095945050505050565b6000602082019050613de6600083018461382d565b92915050565b60006020820190508181036000830152613e068184613875565b905092915050565b60006020820190508181036000830152613e27816138df565b9050919050565b60006020820190508181036000830152613e4781613902565b9050919050565b60006020820190508181036000830152613e6781613925565b9050919050565b60006020820190508181036000830152613e8781613948565b9050919050565b60006020820190508181036000830152613ea78161396b565b9050919050565b60006020820190508181036000830152613ec78161398e565b9050919050565b60006020820190508181036000830152613ee7816139b1565b9050919050565b60006020820190508181036000830152613f07816139d4565b9050919050565b60006020820190508181036000830152613f27816139f7565b9050919050565b60006020820190508181036000830152613f4781613a1a565b9050919050565b60006020820190508181036000830152613f6781613a3d565b9050919050565b60006020820190508181036000830152613f8781613a60565b9050919050565b60006020820190508181036000830152613fa781613a83565b9050919050565b60006020820190508181036000830152613fc781613aa6565b9050919050565b60006020820190508181036000830152613fe781613ac9565b9050919050565b6000602082019050818103600083015261400781613aec565b9050919050565b6000602082019050818103600083015261402781613b0f565b9050919050565b6000602082019050818103600083015261404781613b32565b9050919050565b6000602082019050818103600083015261406781613b55565b9050919050565b6000602082019050818103600083015261408781613b78565b9050919050565b600060208201905081810360008301526140a781613b9b565b9050919050565b600060208201905081810360008301526140c781613bbe565b9050919050565b600060208201905081810360008301526140e781613be1565b9050919050565b6000602082019050818103600083015261410781613c04565b9050919050565b6000602082019050818103600083015261412781613c27565b9050919050565b6000602082019050818103600083015261414781613c4a565b9050919050565b6000602082019050818103600083015261416781613c6d565b9050919050565b6000602082019050818103600083015261418781613c90565b9050919050565b600060208201905081810360008301526141a781613cb3565b9050919050565b600060208201905081810360008301526141c781613cd6565b9050919050565b60006040820190506141e36000830184613cf9565b92915050565b60006020820190506141fe6000830184613d28565b92915050565b600061420e61421f565b905061421a828261456e565b919050565b6000604051905090565b600067ffffffffffffffff821115614244576142436146d5565b5b61424d82614722565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142a882614476565b91506142b383614476565b9250826fffffffffffffffffffffffffffffffff038211156142d8576142d7614619565b5b828201905092915050565b60006142ee826144b2565b91506142f9836144b2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432e5761432d614619565b5b828201905092915050565b6000614344826144b2565b915061434f836144b2565b92508261435f5761435e614648565b5b828204905092915050565b6000614375826144b2565b9150614380836144b2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143b9576143b8614619565b5b828202905092915050565b60006143cf82614476565b91506143da83614476565b9250828210156143ed576143ec614619565b5b828203905092915050565b6000614403826144b2565b915061440e836144b2565b92508282101561442157614420614619565b5b828203905092915050565b600061443782614492565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156144fd5780820151818401526020810190506144e2565b8381111561450c576000848401525b50505050565b600061451d826144b2565b9150600082141561453157614530614619565b5b600182039050919050565b6000600282049050600182168061455457607f821691505b6020821081141561456857614567614677565b5b50919050565b61457782614722565b810181811067ffffffffffffffff82111715614596576145956146d5565b5b80604052505050565b60006145aa826144b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145dd576145dc614619565b5b600182019050919050565b60006145f3826144b2565b91506145fe836144b2565b92508261460e5761460d614648565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f6d617820737570706c7920686173206265656e20726561636865640000000000600082015250565b7f6d61782032302070657220616464726573730000000000000000000000000000600082015250565b7f6d617820312066726565207065722077616c6c65740000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d696e74206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206574682073656e7400000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614f028161442c565b8114614f0d57600080fd5b50565b614f198161443e565b8114614f2457600080fd5b50565b614f308161444a565b8114614f3b57600080fd5b50565b614f47816144b2565b8114614f5257600080fd5b5056fea26469706673582212200fbf3e8ffb3b5ac79f3eb64518f676eac3171c8831f7495caff1a6d5fd18f5c664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000015b3
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 20
Arg [1] : collectionSize_ (uint256): 5555
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [1] : 00000000000000000000000000000000000000000000000000000000000015b3
Deployed Bytecode Sourcemap
114:2727:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3963:370:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5689:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7214:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6777:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2524:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8064:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;332:30:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2287:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3155:744:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8277:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;210:26:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;243:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2687:177:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2026:100:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5512:118:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;163:38:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;288:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4389:211:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:9;;;;;;;;;;;;;:::i;:::-;;442:24:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;810:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1521:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1063:87:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2398:84:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2691:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5844:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1137:378:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7482:274:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2132:149:10;;;;;;;;;;;;;:::i;:::-;;8499:319:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6005:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2488:84:10;;;;;;;;;;;;;:::i;:::-;;404:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12922:43:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2578:107:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7819:186:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3963:370:3;4090:4;4135:25;4120:40;;;:11;:40;;;;:99;;;;4186:33;4171:48;;;:11;:48;;;;4120:99;:160;;;;4245:35;4230:50;;;:11;:50;;;;4120:160;:207;;;;4291:36;4315:11;4291:23;:36::i;:::-;4120:207;4106:221;;3963:370;;;:::o;5689:94::-;5743:13;5772:5;5765:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5689:94;:::o;7214:204::-;7282:7;7306:16;7314:7;7306;:16::i;:::-;7298:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7388:15;:24;7404:7;7388:24;;;;;;;;;;;;;;;;;;;;;7381:31;;7214:204;;;:::o;6777:379::-;6846:13;6862:24;6878:7;6862:15;:24::i;:::-;6846:40;;6907:5;6901:11;;:2;:11;;;;6893:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;6992:5;6976:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7001:37;7018:5;7025:12;:10;:12::i;:::-;7001:16;:37::i;:::-;6976:62;6960:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7122:28;7131:2;7135:7;7144:5;7122:8;:28::i;:::-;6839:317;6777:379;;:::o;2524:94::-;2577:7;2600:12;;2593:19;;2524:94;:::o;8064:150::-;8180:28;8190:4;8196:2;8200:7;8180:9;:28::i;:::-;8064:150;;;:::o;332:30:10:-;;;;;;;;;;;;;:::o;2287:105::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2358:28:10::1;2377:8;2358:18;:28::i;:::-;2287:105:::0;:::o;3155:744:3:-;3264:7;3299:16;3309:5;3299:9;:16::i;:::-;3291:5;:24;3283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3361:22;3386:13;:11;:13::i;:::-;3361:38;;3406:19;3436:25;3486:9;3481:350;3505:14;3501:1;:18;3481:350;;;3535:31;3569:11;:14;3581:1;3569:14;;;;;;;;;;;3535:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3622:1;3596:28;;:9;:14;;;:28;;;3592:89;;3657:9;:14;;;3637:34;;3592:89;3714:5;3693:26;;:17;:26;;;3689:135;;;3751:5;3736:11;:20;3732:59;;;3778:1;3771:8;;;;;;;;;3732:59;3801:13;;;;;:::i;:::-;;;;3689:135;3526:305;3521:3;;;;;:::i;:::-;;;;3481:350;;;;3837:56;;;;;;;;;;:::i;:::-;;;;;;;;3155:744;;;;;:::o;8277:159::-;8391:39;8408:4;8414:2;8418:7;8391:39;;;;;;;;;;;;:16;:39::i;:::-;8277:159;;;:::o;210:26:10:-;;;;:::o;243:37::-;;;;:::o;2687:177:3:-;2754:7;2786:13;:11;:13::i;:::-;2778:5;:21;2770:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2853:5;2846:12;;2687:177;;;:::o;2026:100:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2113:7:10::1;;2097:13;:23;;;;;;;:::i;:::-;;2026:100:::0;;:::o;5512:118:3:-;5576:7;5599:20;5611:7;5599:11;:20::i;:::-;:25;;;5592:32;;5512:118;;;:::o;163:38:10:-;;;:::o;288:37::-;;;;:::o;4389:211:3:-;4453:7;4494:1;4477:19;;:5;:19;;;;4469:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4566:12;:19;4579:5;4566:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4558:36;;4551:43;;4389:211;;;:::o;1714:103:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;442:24:10:-;;;;:::o;810:321::-;745:10;732:23;;:9;:23;;;724:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;883:10:::1;;;;;;;;;;;875:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;959:9;;947:8;931:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;923:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;1054:7;;1026:24;1039:10;1026:12;:24::i;:::-;1015:8;:35;;;;:::i;:::-;:46;;1007:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;1094:31;1104:10;1116:8;1094:9;:31::i;:::-;810:321:::0;:::o;1521:385::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1619:1:10::1;1603:12;1592:8;:23;;;;:::i;:::-;:28;1584:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;1711:9;;1699:8;1683:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;1675:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;1759:17;1790:12;1779:8;:23;;;;:::i;:::-;1759:43;;1814:9;1809:92;1833:9;1829:1;:13;1809:92;;;1858:35;1868:10;1880:12;1858:9;:35::i;:::-;1844:3;;;;;:::i;:::-;;;;1809:92;;;;1577:329;1521:385:::0;:::o;1063:87:9:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;2398:84:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2470:6:10::1;2458:9;:18;;;;2398:84:::0;:::o;2691:147::-;2772:21;;:::i;:::-;2812:20;2824:7;2812:11;:20::i;:::-;2805:27;;2691:147;;;:::o;5844:98:3:-;5900:13;5929:7;5922:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5844:98;:::o;1137:378:10:-;745:10;732:23;;:9;:23;;;724:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1214:10:::1;;;;;;;;;;;1206:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1290:9;;1278:8;1262:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;1254:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:17;;1347:8;:29;;1338:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1439:8;1427:9;;:20;;;;:::i;:::-;1414:9;:33;;1406:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;1478:31;1488:10;1500:8;1478:9;:31::i;:::-;1137:378:::0;:::o;7482:274:3:-;7585:12;:10;:12::i;:::-;7573:24;;:8;:24;;;;7565:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7682:8;7637:18;:32;7656:12;:10;:12::i;:::-;7637:32;;;;;;;;;;;;;;;:42;7670:8;7637:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;7731:8;7702:48;;7717:12;:10;:12::i;:::-;7702:48;;;7741:8;7702:48;;;;;;:::i;:::-;;;;;;;;7482:274;;:::o;2132:149:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2215:1:10::1;2191:21;:25;2183:34;;;::::0;::::1;;2232:10;2224:28;;:51;2253:21;2224:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2132:149::o:0;8499:319:3:-;8644:28;8654:4;8660:2;8664:7;8644:9;:28::i;:::-;8695:48;8718:4;8724:2;8728:7;8737:5;8695:22;:48::i;:::-;8679:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8499:319;;;;:::o;6005:394::-;6103:13;6144:16;6152:7;6144;:16::i;:::-;6128:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;6234:21;6258:10;:8;:10::i;:::-;6234:34;;6313:1;6295:7;6289:21;:25;:104;;;;;;;;;;;;;;;;;6350:7;6359:18;:7;:16;:18::i;:::-;6333:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6289:104;6275:118;;;6005:394;;;:::o;2488:84:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2556:10:10::1;;;;;;;;;;;2555:11;2542:10;;:24;;;;;;;;;;;;;;;;;;2488:84::o:0;404:31::-;;;;:::o;12922:43:3:-;;;;:::o;2578:107:10:-;2636:7;2659:20;2673:5;2659:13;:20::i;:::-;2652:27;;2578:107;;;:::o;7819:186:3:-;7941:4;7964:18;:25;7983:5;7964:25;;;;;;;;;;;;;;;:35;7990:8;7964:35;;;;;;;;;;;;;;;;;;;;;;;;;7957:42;;7819:186;;;;:::o;1972:201:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;9057:105:3:-;9114:4;9144:12;;9134:7;:22;9127:29;;9057:105;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;12744:172:3:-;12868:2;12841:15;:24;12857:7;12841:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12902:7;12898:2;12882:28;;12891:5;12882:28;;;;;;;;;;;;12744:172;;;:::o;11109:1529::-;11206:35;11244:20;11256:7;11244:11;:20::i;:::-;11206:58;;11273:22;11315:13;:18;;;11299:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11368:12;:10;:12::i;:::-;11344:36;;:20;11356:7;11344:11;:20::i;:::-;:36;;;11299:81;:142;;;;11391:50;11408:13;:18;;;11428:12;:10;:12::i;:::-;11391:16;:50::i;:::-;11299:142;11273:169;;11467:17;11451:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11599:4;11577:26;;:13;:18;;;:26;;;11561:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11688:1;11674:16;;:2;:16;;;;11666:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;11741:43;11763:4;11769:2;11773:7;11782:1;11741:21;:43::i;:::-;11841:49;11858:1;11862:7;11871:13;:18;;;11841:8;:49::i;:::-;11929:1;11899:12;:18;11912:4;11899:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11965:1;11937:12;:16;11950:2;11937:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11996:43;;;;;;;;12011:2;11996:43;;;;;;12022:15;11996:43;;;;;11973:11;:20;11985:7;11973:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12267:19;12299:1;12289:7;:11;;;;:::i;:::-;12267:33;;12352:1;12311:43;;:11;:24;12323:11;12311:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12307:236;;;12369:20;12377:11;12369:7;:20::i;:::-;12365:171;;;12429:97;;;;;;;;12456:13;:18;;;12429:97;;;;;;12487:13;:28;;;12429:97;;;;;12402:11;:24;12414:11;12402:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12365:171;12307:236;12575:7;12571:2;12556:27;;12565:4;12556:27;;;;;;;;;;;;12590:42;12611:4;12617:2;12621:7;12630:1;12590:20;:42::i;:::-;11199:1439;;;11109:1529;;;:::o;13070:846::-;13132:25;13160:24;;13132:52;;13210:1;13199:8;:12;13191:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;13247:16;13297:1;13286:8;13266:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;13247:51;;13337:1;13320:14;:18;;;;:::i;:::-;13309:8;:29;13305:81;;;13377:1;13360:14;:18;;;;:::i;:::-;13349:29;;13305:81;13501:17;13509:8;13501:7;:17::i;:::-;13493:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13573:9;13585:17;13573:29;;13568:297;13609:8;13604:1;:13;13568:297;;13668:1;13637:33;;:11;:14;13649:1;13637:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;13633:225;;;13683:31;13717:14;13729:1;13717:11;:14::i;:::-;13683:48;;13759:89;;;;;;;;13786:9;:14;;;13759:89;;;;;;13813:9;:24;;;13759:89;;;;;13742:11;:14;13754:1;13742:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13672:186;13633:225;13619:3;;;;;:::i;:::-;;;;13568:297;;;;13909:1;13898:8;:12;;;;:::i;:::-;13871:24;:39;;;;13125:791;;13070:846;:::o;4852:606::-;4928:21;;:::i;:::-;4969:16;4977:7;4969;:16::i;:::-;4961:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5041:26;5089:12;5078:7;:23;5074:93;;5158:1;5143:12;5133:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5112:47;;5074:93;5180:12;5195:7;5180:22;;5175:212;5212:18;5204:4;:26;5175:212;;5249:31;5283:11;:17;5295:4;5283:17;;;;;;;;;;;5249:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5339:1;5313:28;;:9;:14;;;:28;;;5309:71;;5361:9;5354:16;;;;;;;5309:71;5240:147;5232:6;;;;;:::i;:::-;;;;5175:212;;;;5395:57;;;;;;;;;;:::i;:::-;;;;;;;;4852:606;;;;:::o;2333:191:9:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;9168:98:3:-;9233:27;9243:2;9247:8;9233:27;;;;;;;;;;;;:9;:27::i;:::-;9168:98;;:::o;14459:690::-;14596:4;14613:15;:2;:13;;;:15::i;:::-;14609:535;;;14668:2;14652:36;;;14689:12;:10;:12::i;:::-;14703:4;14709:7;14718:5;14652:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14639:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14900:1;14883:6;:13;:18;14879:215;;;14916:61;;;;;;;;;;:::i;:::-;;;;;;;;14879:215;15062:6;15056:13;15047:6;15043:2;15039:15;15032:38;14639:464;14784:45;;;14774:55;;;:6;:55;;;;14767:62;;;;;14609:535;15132:4;15125:11;;14459:690;;;;;;;:::o;1912:108:10:-;1972:13;2001;1994:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1912:108;:::o;342:723:11:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;4606:240:3:-;4667:7;4716:1;4699:19;;:5;:19;;;;4683:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;4807:12;:19;4820:5;4807:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;4799:41;;4792:48;;4606:240;;;:::o;15611:141::-;;;;;:::o;16138:140::-;;;;;:::o;9605:1272::-;9710:20;9733:12;;9710:35;;9774:1;9760:16;;:2;:16;;;;9752:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;9951:21;9959:12;9951:7;:21::i;:::-;9950:22;9942:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10033:12;10021:8;:24;;10013:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10093:61;10123:1;10127:2;10131:12;10145:8;10093:21;:61::i;:::-;10163:30;10196:12;:16;10209:2;10196:16;;;;;;;;;;;;;;;10163:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10238:119;;;;;;;;10288:8;10258:11;:19;;;:39;;;;:::i;:::-;10238:119;;;;;;10341:8;10306:11;:24;;;:44;;;;:::i;:::-;10238:119;;;;;10219:12;:16;10232:2;10219:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10392:43;;;;;;;;10407:2;10392:43;;;;;;10418:15;10392:43;;;;;10364:11;:25;10376:12;10364:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10444:20;10467:12;10444:35;;10493:9;10488:281;10512:8;10508:1;:12;10488:281;;;10566:12;10562:2;10541:38;;10558:1;10541:38;;;;;;;;;;;;10606:59;10637:1;10641:2;10645:12;10659:5;10606:22;:59::i;:::-;10588:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;10747:14;;;;;:::i;:::-;;;;10522:3;;;;;:::i;:::-;;;;10488:281;;;;10792:12;10777;:27;;;;10811:60;10840:1;10844:2;10848:12;10862:8;10811:20;:60::i;:::-;9703:1174;;;9605:1272;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:12:-;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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:::-;12679:3;12700:67;12764:2;12759:3;12700:67;:::i;:::-;12693:74;;12776:93;12865:3;12776:93;:::i;:::-;12894:2;12889:3;12885:12;12878:19;;12537:366;;;:::o;12909:::-;13051:3;13072:67;13136:2;13131:3;13072:67;:::i;:::-;13065:74;;13148:93;13237:3;13148:93;:::i;:::-;13266:2;13261:3;13257:12;13250:19;;12909:366;;;:::o;13281:::-;13423:3;13444:67;13508:2;13503:3;13444:67;:::i;:::-;13437:74;;13520:93;13609:3;13520:93;:::i;:::-;13638:2;13633:3;13629:12;13622:19;;13281:366;;;:::o;13653:::-;13795:3;13816:67;13880:2;13875:3;13816:67;:::i;:::-;13809:74;;13892:93;13981:3;13892:93;:::i;:::-;14010:2;14005:3;14001:12;13994:19;;13653:366;;;:::o;14025:::-;14167:3;14188:67;14252:2;14247:3;14188:67;:::i;:::-;14181:74;;14264:93;14353:3;14264:93;:::i;:::-;14382:2;14377:3;14373:12;14366:19;;14025:366;;;:::o;14397:::-;14539:3;14560:67;14624:2;14619:3;14560:67;:::i;:::-;14553:74;;14636:93;14725:3;14636:93;:::i;:::-;14754:2;14749:3;14745:12;14738:19;;14397:366;;;:::o;14769:::-;14911:3;14932:67;14996:2;14991:3;14932:67;:::i;:::-;14925:74;;15008:93;15097:3;15008:93;:::i;:::-;15126:2;15121:3;15117:12;15110:19;;14769:366;;;:::o;15141:::-;15283:3;15304:67;15368:2;15363:3;15304:67;:::i;:::-;15297:74;;15380:93;15469:3;15380:93;:::i;:::-;15498:2;15493:3;15489:12;15482:19;;15141:366;;;:::o;15513:::-;15655:3;15676:67;15740:2;15735:3;15676:67;:::i;:::-;15669:74;;15752:93;15841:3;15752:93;:::i;:::-;15870:2;15865:3;15861:12;15854:19;;15513:366;;;:::o;15885:::-;16027:3;16048:67;16112:2;16107:3;16048:67;:::i;:::-;16041:74;;16124:93;16213:3;16124:93;:::i;:::-;16242:2;16237:3;16233:12;16226:19;;15885:366;;;:::o;16257:::-;16399:3;16420:67;16484:2;16479:3;16420:67;:::i;:::-;16413:74;;16496:93;16585:3;16496:93;:::i;:::-;16614:2;16609:3;16605:12;16598:19;;16257:366;;;:::o;16629:::-;16771:3;16792:67;16856:2;16851:3;16792:67;:::i;:::-;16785:74;;16868:93;16957:3;16868:93;:::i;:::-;16986:2;16981:3;16977:12;16970:19;;16629:366;;;:::o;17001:::-;17143:3;17164:67;17228:2;17223:3;17164:67;:::i;:::-;17157:74;;17240:93;17329:3;17240:93;:::i;:::-;17358:2;17353:3;17349:12;17342:19;;17001:366;;;:::o;17373:::-;17515:3;17536:67;17600:2;17595:3;17536:67;:::i;:::-;17529:74;;17612:93;17701:3;17612:93;:::i;:::-;17730:2;17725:3;17721:12;17714:19;;17373:366;;;:::o;17745:::-;17887:3;17908:67;17972:2;17967:3;17908:67;:::i;:::-;17901:74;;17984:93;18073:3;17984:93;:::i;:::-;18102:2;18097:3;18093:12;18086:19;;17745:366;;;:::o;18117:::-;18259:3;18280:67;18344:2;18339:3;18280:67;:::i;:::-;18273:74;;18356:93;18445:3;18356:93;:::i;:::-;18474:2;18469:3;18465:12;18458:19;;18117:366;;;:::o;18489:::-;18631:3;18652:67;18716:2;18711:3;18652:67;:::i;:::-;18645:74;;18728:93;18817:3;18728:93;:::i;:::-;18846:2;18841:3;18837:12;18830:19;;18489:366;;;:::o;18861:::-;19003:3;19024:67;19088:2;19083:3;19024:67;:::i;:::-;19017:74;;19100:93;19189:3;19100:93;:::i;:::-;19218:2;19213:3;19209:12;19202:19;;18861:366;;;:::o;19233:::-;19375:3;19396:67;19460:2;19455:3;19396:67;:::i;:::-;19389:74;;19472:93;19561:3;19472:93;:::i;:::-;19590:2;19585:3;19581:12;19574:19;;19233:366;;;:::o;19675:527::-;19834:4;19829:3;19825:14;19921:4;19914:5;19910:16;19904:23;19940:63;19997:4;19992:3;19988:14;19974:12;19940:63;:::i;:::-;19849:164;20105:4;20098:5;20094:16;20088:23;20124:61;20179:4;20174:3;20170:14;20156:12;20124:61;:::i;:::-;20023:172;19803:399;19675:527;;:::o;20208:118::-;20295:24;20313:5;20295:24;:::i;:::-;20290:3;20283:37;20208:118;;:::o;20332:105::-;20407:23;20424:5;20407:23;:::i;:::-;20402:3;20395:36;20332:105;;:::o;20443:435::-;20623:3;20645:95;20736:3;20727:6;20645:95;:::i;:::-;20638:102;;20757:95;20848:3;20839:6;20757:95;:::i;:::-;20750:102;;20869:3;20862:10;;20443:435;;;;;:::o;20884:222::-;20977:4;21015:2;21004:9;21000:18;20992:26;;21028:71;21096:1;21085:9;21081:17;21072:6;21028:71;:::i;:::-;20884:222;;;;:::o;21112:640::-;21307:4;21345:3;21334:9;21330:19;21322:27;;21359:71;21427:1;21416:9;21412:17;21403:6;21359:71;:::i;:::-;21440:72;21508:2;21497:9;21493:18;21484:6;21440:72;:::i;:::-;21522;21590:2;21579:9;21575:18;21566:6;21522:72;:::i;:::-;21641:9;21635:4;21631:20;21626:2;21615:9;21611:18;21604:48;21669:76;21740:4;21731:6;21669:76;:::i;:::-;21661:84;;21112:640;;;;;;;:::o;21758:210::-;21845:4;21883:2;21872:9;21868:18;21860:26;;21896:65;21958:1;21947:9;21943:17;21934:6;21896:65;:::i;:::-;21758:210;;;;:::o;21974:313::-;22087:4;22125:2;22114:9;22110:18;22102:26;;22174:9;22168:4;22164:20;22160:1;22149:9;22145:17;22138:47;22202:78;22275:4;22266:6;22202:78;:::i;:::-;22194:86;;21974:313;;;;:::o;22293:419::-;22459:4;22497:2;22486:9;22482:18;22474:26;;22546:9;22540:4;22536:20;22532:1;22521:9;22517:17;22510:47;22574:131;22700:4;22574:131;:::i;:::-;22566:139;;22293:419;;;:::o;22718:::-;22884:4;22922:2;22911:9;22907:18;22899:26;;22971:9;22965:4;22961:20;22957:1;22946:9;22942:17;22935:47;22999:131;23125:4;22999:131;:::i;:::-;22991:139;;22718:419;;;:::o;23143:::-;23309:4;23347:2;23336:9;23332:18;23324:26;;23396:9;23390:4;23386:20;23382:1;23371:9;23367:17;23360:47;23424:131;23550:4;23424:131;:::i;:::-;23416:139;;23143:419;;;:::o;23568:::-;23734:4;23772:2;23761:9;23757:18;23749:26;;23821:9;23815:4;23811:20;23807:1;23796:9;23792:17;23785:47;23849:131;23975:4;23849:131;:::i;:::-;23841:139;;23568:419;;;:::o;23993:::-;24159:4;24197:2;24186:9;24182:18;24174:26;;24246:9;24240:4;24236:20;24232:1;24221:9;24217:17;24210:47;24274:131;24400:4;24274:131;:::i;:::-;24266:139;;23993:419;;;:::o;24418:::-;24584:4;24622:2;24611:9;24607:18;24599:26;;24671:9;24665:4;24661:20;24657:1;24646:9;24642:17;24635:47;24699:131;24825:4;24699:131;:::i;:::-;24691:139;;24418:419;;;:::o;24843:::-;25009:4;25047:2;25036:9;25032:18;25024:26;;25096:9;25090:4;25086:20;25082:1;25071:9;25067:17;25060:47;25124:131;25250:4;25124:131;:::i;:::-;25116:139;;24843:419;;;:::o;25268:::-;25434:4;25472:2;25461:9;25457:18;25449:26;;25521:9;25515:4;25511:20;25507:1;25496:9;25492:17;25485:47;25549:131;25675:4;25549:131;:::i;:::-;25541:139;;25268:419;;;:::o;25693:::-;25859:4;25897:2;25886:9;25882:18;25874:26;;25946:9;25940:4;25936:20;25932:1;25921:9;25917:17;25910:47;25974:131;26100:4;25974:131;:::i;:::-;25966:139;;25693:419;;;:::o;26118:::-;26284:4;26322:2;26311:9;26307:18;26299:26;;26371:9;26365:4;26361:20;26357:1;26346:9;26342:17;26335:47;26399:131;26525:4;26399:131;:::i;:::-;26391:139;;26118:419;;;:::o;26543:::-;26709:4;26747:2;26736:9;26732:18;26724:26;;26796:9;26790:4;26786:20;26782:1;26771:9;26767:17;26760:47;26824:131;26950:4;26824:131;:::i;:::-;26816:139;;26543:419;;;:::o;26968:::-;27134:4;27172:2;27161:9;27157:18;27149:26;;27221:9;27215:4;27211:20;27207:1;27196:9;27192:17;27185:47;27249:131;27375:4;27249:131;:::i;:::-;27241:139;;26968:419;;;:::o;27393:::-;27559:4;27597:2;27586:9;27582:18;27574:26;;27646:9;27640:4;27636:20;27632:1;27621:9;27617:17;27610:47;27674:131;27800:4;27674:131;:::i;:::-;27666:139;;27393:419;;;:::o;27818:::-;27984:4;28022:2;28011:9;28007:18;27999:26;;28071:9;28065:4;28061:20;28057:1;28046:9;28042:17;28035:47;28099:131;28225:4;28099:131;:::i;:::-;28091:139;;27818:419;;;:::o;28243:::-;28409:4;28447:2;28436:9;28432:18;28424:26;;28496:9;28490:4;28486:20;28482:1;28471:9;28467:17;28460:47;28524:131;28650:4;28524:131;:::i;:::-;28516:139;;28243:419;;;:::o;28668:::-;28834:4;28872:2;28861:9;28857:18;28849:26;;28921:9;28915:4;28911:20;28907:1;28896:9;28892:17;28885:47;28949:131;29075:4;28949:131;:::i;:::-;28941:139;;28668:419;;;:::o;29093:::-;29259:4;29297:2;29286:9;29282:18;29274:26;;29346:9;29340:4;29336:20;29332:1;29321:9;29317:17;29310:47;29374:131;29500:4;29374:131;:::i;:::-;29366:139;;29093:419;;;:::o;29518:::-;29684:4;29722:2;29711:9;29707:18;29699:26;;29771:9;29765:4;29761:20;29757:1;29746:9;29742:17;29735:47;29799:131;29925:4;29799:131;:::i;:::-;29791:139;;29518:419;;;:::o;29943:::-;30109:4;30147:2;30136:9;30132:18;30124:26;;30196:9;30190:4;30186:20;30182:1;30171:9;30167:17;30160:47;30224:131;30350:4;30224:131;:::i;:::-;30216:139;;29943:419;;;:::o;30368:::-;30534:4;30572:2;30561:9;30557:18;30549:26;;30621:9;30615:4;30611:20;30607:1;30596:9;30592:17;30585:47;30649:131;30775:4;30649:131;:::i;:::-;30641:139;;30368:419;;;:::o;30793:::-;30959:4;30997:2;30986:9;30982:18;30974:26;;31046:9;31040:4;31036:20;31032:1;31021:9;31017:17;31010:47;31074:131;31200:4;31074:131;:::i;:::-;31066:139;;30793:419;;;:::o;31218:::-;31384:4;31422:2;31411:9;31407:18;31399:26;;31471:9;31465:4;31461:20;31457:1;31446:9;31442:17;31435:47;31499:131;31625:4;31499:131;:::i;:::-;31491:139;;31218:419;;;:::o;31643:::-;31809:4;31847:2;31836:9;31832:18;31824:26;;31896:9;31890:4;31886:20;31882:1;31871:9;31867:17;31860:47;31924:131;32050:4;31924:131;:::i;:::-;31916:139;;31643:419;;;:::o;32068:::-;32234:4;32272:2;32261:9;32257:18;32249:26;;32321:9;32315:4;32311:20;32307:1;32296:9;32292:17;32285:47;32349:131;32475:4;32349:131;:::i;:::-;32341:139;;32068:419;;;:::o;32493:::-;32659:4;32697:2;32686:9;32682:18;32674:26;;32746:9;32740:4;32736:20;32732:1;32721:9;32717:17;32710:47;32774:131;32900:4;32774:131;:::i;:::-;32766:139;;32493:419;;;:::o;32918:::-;33084:4;33122:2;33111:9;33107:18;33099:26;;33171:9;33165:4;33161:20;33157:1;33146:9;33142:17;33135:47;33199:131;33325:4;33199:131;:::i;:::-;33191:139;;32918:419;;;:::o;33343:::-;33509:4;33547:2;33536:9;33532:18;33524:26;;33596:9;33590:4;33586:20;33582:1;33571:9;33567:17;33560:47;33624:131;33750:4;33624:131;:::i;:::-;33616:139;;33343:419;;;:::o;33768:::-;33934:4;33972:2;33961:9;33957:18;33949:26;;34021:9;34015:4;34011:20;34007:1;33996:9;33992:17;33985:47;34049:131;34175:4;34049:131;:::i;:::-;34041:139;;33768:419;;;:::o;34193:::-;34359:4;34397:2;34386:9;34382:18;34374:26;;34446:9;34440:4;34436:20;34432:1;34421:9;34417:17;34410:47;34474:131;34600:4;34474:131;:::i;:::-;34466:139;;34193:419;;;:::o;34618:::-;34784:4;34822:2;34811:9;34807:18;34799:26;;34871:9;34865:4;34861:20;34857:1;34846:9;34842:17;34835:47;34899:131;35025:4;34899:131;:::i;:::-;34891:139;;34618:419;;;:::o;35043:346::-;35198:4;35236:2;35225:9;35221:18;35213:26;;35249:133;35379:1;35368:9;35364:17;35355:6;35249:133;:::i;:::-;35043:346;;;;:::o;35395:222::-;35488:4;35526:2;35515:9;35511:18;35503:26;;35539:71;35607:1;35596:9;35592:17;35583:6;35539:71;:::i;:::-;35395:222;;;;:::o;35623:129::-;35657:6;35684:20;;:::i;:::-;35674:30;;35713:33;35741:4;35733:6;35713:33;:::i;:::-;35623:129;;;:::o;35758:75::-;35791:6;35824:2;35818:9;35808:19;;35758:75;:::o;35839:307::-;35900:4;35990:18;35982:6;35979:30;35976:56;;;36012:18;;:::i;:::-;35976:56;36050:29;36072:6;36050:29;:::i;:::-;36042:37;;36134:4;36128;36124:15;36116:23;;35839:307;;;:::o;36152:98::-;36203:6;36237:5;36231:12;36221:22;;36152:98;;;:::o;36256:99::-;36308:6;36342:5;36336:12;36326:22;;36256:99;;;:::o;36361:168::-;36444:11;36478:6;36473:3;36466:19;36518:4;36513:3;36509:14;36494:29;;36361:168;;;;:::o;36535:169::-;36619:11;36653:6;36648:3;36641:19;36693:4;36688:3;36684:14;36669:29;;36535:169;;;;:::o;36710:148::-;36812:11;36849:3;36834:18;;36710:148;;;;:::o;36864:273::-;36904:3;36923:20;36941:1;36923:20;:::i;:::-;36918:25;;36957:20;36975:1;36957:20;:::i;:::-;36952:25;;37079:1;37043:34;37039:42;37036:1;37033:49;37030:75;;;37085:18;;:::i;:::-;37030:75;37129:1;37126;37122:9;37115:16;;36864:273;;;;:::o;37143:305::-;37183:3;37202:20;37220:1;37202:20;:::i;:::-;37197:25;;37236:20;37254:1;37236:20;:::i;:::-;37231:25;;37390:1;37322:66;37318:74;37315:1;37312:81;37309:107;;;37396:18;;:::i;:::-;37309:107;37440:1;37437;37433:9;37426:16;;37143:305;;;;:::o;37454:185::-;37494:1;37511:20;37529:1;37511:20;:::i;:::-;37506:25;;37545:20;37563:1;37545:20;:::i;:::-;37540:25;;37584:1;37574:35;;37589:18;;:::i;:::-;37574:35;37631:1;37628;37624:9;37619:14;;37454:185;;;;:::o;37645:348::-;37685:7;37708:20;37726:1;37708:20;:::i;:::-;37703:25;;37742:20;37760:1;37742:20;:::i;:::-;37737:25;;37930:1;37862:66;37858:74;37855:1;37852:81;37847:1;37840:9;37833:17;37829:105;37826:131;;;37937:18;;:::i;:::-;37826:131;37985:1;37982;37978:9;37967:20;;37645:348;;;;:::o;37999:191::-;38039:4;38059:20;38077:1;38059:20;:::i;:::-;38054:25;;38093:20;38111:1;38093:20;:::i;:::-;38088:25;;38132:1;38129;38126:8;38123:34;;;38137:18;;:::i;:::-;38123:34;38182:1;38179;38175:9;38167:17;;37999:191;;;;:::o;38196:::-;38236:4;38256:20;38274:1;38256:20;:::i;:::-;38251:25;;38290:20;38308:1;38290:20;:::i;:::-;38285:25;;38329:1;38326;38323:8;38320:34;;;38334:18;;:::i;:::-;38320:34;38379:1;38376;38372:9;38364:17;;38196:191;;;;:::o;38393:96::-;38430:7;38459:24;38477:5;38459:24;:::i;:::-;38448:35;;38393:96;;;:::o;38495:90::-;38529:7;38572:5;38565:13;38558:21;38547:32;;38495:90;;;:::o;38591:149::-;38627:7;38667:66;38660:5;38656:78;38645:89;;38591:149;;;:::o;38746:118::-;38783:7;38823:34;38816:5;38812:46;38801:57;;38746:118;;;:::o;38870:126::-;38907:7;38947:42;38940:5;38936:54;38925:65;;38870:126;;;:::o;39002:77::-;39039:7;39068:5;39057:16;;39002:77;;;:::o;39085:101::-;39121:7;39161:18;39154:5;39150:30;39139:41;;39085:101;;;:::o;39192:154::-;39276:6;39271:3;39266;39253:30;39338:1;39329:6;39324:3;39320:16;39313:27;39192:154;;;:::o;39352:307::-;39420:1;39430:113;39444:6;39441:1;39438:13;39430:113;;;39529:1;39524:3;39520:11;39514:18;39510:1;39505:3;39501:11;39494:39;39466:2;39463:1;39459:10;39454:15;;39430:113;;;39561:6;39558:1;39555:13;39552:101;;;39641:1;39632:6;39627:3;39623:16;39616:27;39552:101;39401:258;39352:307;;;:::o;39665:171::-;39704:3;39727:24;39745:5;39727:24;:::i;:::-;39718:33;;39773:4;39766:5;39763:15;39760:41;;;39781:18;;:::i;:::-;39760:41;39828:1;39821:5;39817:13;39810:20;;39665:171;;;:::o;39842:320::-;39886:6;39923:1;39917:4;39913:12;39903:22;;39970:1;39964:4;39960:12;39991:18;39981:81;;40047:4;40039:6;40035:17;40025:27;;39981:81;40109:2;40101:6;40098:14;40078:18;40075:38;40072:84;;;40128:18;;:::i;:::-;40072:84;39893:269;39842:320;;;:::o;40168:281::-;40251:27;40273:4;40251:27;:::i;:::-;40243:6;40239:40;40381:6;40369:10;40366:22;40345:18;40333:10;40330:34;40327:62;40324:88;;;40392:18;;:::i;:::-;40324:88;40432:10;40428:2;40421:22;40211:238;40168:281;;:::o;40455:233::-;40494:3;40517:24;40535:5;40517:24;:::i;:::-;40508:33;;40563:66;40556:5;40553:77;40550:103;;;40633:18;;:::i;:::-;40550:103;40680:1;40673:5;40669:13;40662:20;;40455:233;;;:::o;40694:176::-;40726:1;40743:20;40761:1;40743:20;:::i;:::-;40738:25;;40777:20;40795:1;40777:20;:::i;:::-;40772:25;;40816:1;40806:35;;40821:18;;:::i;:::-;40806:35;40862:1;40859;40855:9;40850:14;;40694:176;;;;:::o;40876:180::-;40924:77;40921:1;40914:88;41021:4;41018:1;41011:15;41045:4;41042:1;41035:15;41062:180;41110:77;41107:1;41100:88;41207:4;41204:1;41197:15;41231:4;41228:1;41221:15;41248:180;41296:77;41293:1;41286:88;41393:4;41390:1;41383:15;41417:4;41414:1;41407:15;41434:180;41482:77;41479:1;41472:88;41579:4;41576:1;41569:15;41603:4;41600:1;41593:15;41620:180;41668:77;41665:1;41658:88;41765:4;41762:1;41755:15;41789:4;41786:1;41779:15;41806:117;41915:1;41912;41905:12;41929:117;42038:1;42035;42028:12;42052:117;42161:1;42158;42151:12;42175:117;42284:1;42281;42274:12;42298:117;42407:1;42404;42397:12;42421:117;42530:1;42527;42520:12;42544:102;42585:6;42636:2;42632:7;42627:2;42620:5;42616:14;42612:28;42602:38;;42544:102;;;:::o;42652:221::-;42792:34;42788:1;42780:6;42776:14;42769:58;42861:4;42856:2;42848:6;42844:15;42837:29;42652:221;:::o;42879:225::-;43019:34;43015:1;43007:6;43003:14;42996:58;43088:8;43083:2;43075:6;43071:15;43064:33;42879:225;:::o;43110:229::-;43250:34;43246:1;43238:6;43234:14;43227:58;43319:12;43314:2;43306:6;43302:15;43295:37;43110:229;:::o;43345:231::-;43485:34;43481:1;43473:6;43469:14;43462:58;43554:14;43549:2;43541:6;43537:15;43530:39;43345:231;:::o;43582:222::-;43722:34;43718:1;43710:6;43706:14;43699:58;43791:5;43786:2;43778:6;43774:15;43767:30;43582:222;:::o;43810:224::-;43950:34;43946:1;43938:6;43934:14;43927:58;44019:7;44014:2;44006:6;44002:15;43995:32;43810:224;:::o;44040:236::-;44180:34;44176:1;44168:6;44164:14;44157:58;44249:19;44244:2;44236:6;44232:15;44225:44;44040:236;:::o;44282:180::-;44422:32;44418:1;44410:6;44406:14;44399:56;44282:180;:::o;44468:244::-;44608:34;44604:1;44596:6;44592:14;44585:58;44677:27;44672:2;44664:6;44660:15;44653:52;44468:244;:::o;44718:174::-;44858:26;44854:1;44846:6;44842:14;44835:50;44718:174;:::o;44898:177::-;45038:29;45034:1;45026:6;45022:14;45015:53;44898:177;:::o;45081:168::-;45221:20;45217:1;45209:6;45205:14;45198:44;45081:168;:::o;45255:171::-;45395:23;45391:1;45383:6;45379:14;45372:47;45255:171;:::o;45432:230::-;45572:34;45568:1;45560:6;45556:14;45549:58;45641:13;45636:2;45628:6;45624:15;45617:38;45432:230;:::o;45668:225::-;45808:34;45804:1;45796:6;45792:14;45785:58;45877:8;45872:2;45864:6;45860:15;45853:33;45668:225;:::o;45899:182::-;46039:34;46035:1;46027:6;46023:14;46016:58;45899:182;:::o;46087:234::-;46227:34;46223:1;46215:6;46211:14;46204:58;46296:17;46291:2;46283:6;46279:15;46272:42;46087:234;:::o;46327:176::-;46467:28;46463:1;46455:6;46451:14;46444:52;46327:176;:::o;46509:237::-;46649:34;46645:1;46637:6;46633:14;46626:58;46718:20;46713:2;46705:6;46701:15;46694:45;46509:237;:::o;46752:168::-;46892:20;46888:1;46880:6;46876:14;46869:44;46752:168;:::o;46926:221::-;47066:34;47062:1;47054:6;47050:14;47043:58;47135:4;47130:2;47122:6;47118:15;47111:29;46926:221;:::o;47153:238::-;47293:34;47289:1;47281:6;47277:14;47270:58;47362:21;47357:2;47349:6;47345:15;47338:46;47153:238;:::o;47397:179::-;47537:31;47533:1;47525:6;47521:14;47514:55;47397:179;:::o;47582:220::-;47722:34;47718:1;47710:6;47706:14;47699:58;47791:3;47786:2;47778:6;47774:15;47767:28;47582:220;:::o;47808:233::-;47948:34;47944:1;47936:6;47932:14;47925:58;48017:16;48012:2;48004:6;48000:15;47993:41;47808:233;:::o;48047:225::-;48187:34;48183:1;48175:6;48171:14;48164:58;48256:8;48251:2;48243:6;48239:15;48232:33;48047:225;:::o;48278:169::-;48418:21;48414:1;48406:6;48402:14;48395:45;48278:169;:::o;48453:234::-;48593:34;48589:1;48581:6;48577:14;48570:58;48662:17;48657:2;48649:6;48645:15;48638:42;48453:234;:::o;48693:232::-;48833:34;48829:1;48821:6;48817:14;48810:58;48902:15;48897:2;48889:6;48885:15;48878:40;48693:232;:::o;48931:221::-;49071:34;49067:1;49059:6;49055:14;49048:58;49140:4;49135:2;49127:6;49123:15;49116:29;48931:221;:::o;49158:122::-;49231:24;49249:5;49231:24;:::i;:::-;49224:5;49221:35;49211:63;;49270:1;49267;49260:12;49211:63;49158:122;:::o;49286:116::-;49356:21;49371:5;49356:21;:::i;:::-;49349:5;49346:32;49336:60;;49392:1;49389;49382:12;49336:60;49286:116;:::o;49408:120::-;49480:23;49497:5;49480:23;:::i;:::-;49473:5;49470:34;49460:62;;49518:1;49515;49508:12;49460:62;49408:120;:::o;49534:122::-;49607:24;49625:5;49607:24;:::i;:::-;49600:5;49597:35;49587:63;;49646:1;49643;49636:12;49587:63;49534:122;:::o
Swarm Source
ipfs://0fbf3e8ffb3b5ac79f3eb64518f676eac3171c8831f7495caff1a6d5fd18f5c6
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.