ERC-721
Overview
Max Total Supply
43 L0F1
Holders
36
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 L0F1Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
L0F1
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import './ERC721.sol'; import './ERC721Enumerable.sol'; import './Ownable.sol'; import './SafeMath.sol'; contract L0F1 is ERC721, ERC721Enumerable, Ownable { using Strings for uint; uint public availableSupply = 10000; bool public saleState = false; uint public price = 0.00777 ether; uint public maxBuy = 2; string public baseTokenURI; uint private nextIndexToAssign; bool public allAssigned = false; mapping (uint => bool) assignedTokenIds; modifier isMinteable() { _; require( !allAssigned, "Cannot mint more" ); require( availableSupply >= 0, "Out of tokens" ); } modifier isBuyeable(uint quantity) { _; require( saleState, "Sale closed" ); require( quantity > 0 && quantity <= maxBuy, "Mini 1 and {maxBuy} L0F1 per Tx" ); require( msg.value == price * quantity, "Should be {price} * {quantity}" ); } constructor() ERC721("L0F1", "L0F1") {} // Set the sale ON/OFF function setSaleState() external onlyOwner { saleState = (!saleState ? true : false); } // Get L0F1 function _mintL0F1(uint quantity, address to) private { uint i = 0; while (i < quantity) { uint tokenId = nextIndexToAssign; // if it is last {tokenID} then close minting by assigning // {allAssigned} to true if (tokenId == (availableSupply - 1)) { availableSupply--; allAssigned = true; _safeMint(to, tokenId); break; } // if {tokenId} is already assigned increment to next id if (assignedTokenIds[tokenId] == true) { nextIndexToAssign++; tokenId++; } availableSupply--; nextIndexToAssign++; assignedTokenIds[tokenId] = true; _safeMint(to, tokenId); i++; } } function buyL0F1(uint quantity) external payable isMinteable isBuyeable(quantity) { _mintL0F1(quantity, msg.sender); } function giftL0F1(address to, uint quantity) external onlyOwner isMinteable { _mintL0F1(quantity, to); } // Withdraw ETH balance of the contract function withdrawEquity() external onlyOwner { uint balance = address(this).balance; require(payable(msg.sender).send(balance)); } // Expose all token Ids held by the address parameter {owner} function exposeHeldIds(address owner) public view returns(uint[] memory) { uint tokenCount = balanceOf(owner); uint[] memory tokensId = new uint[](tokenCount); uint i = 0; while (i < tokenCount) { tokensId[i] = tokenOfOwnerByIndex(owner, i); i++; } return tokensId; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function _beforeTokenTransfer( address from, address to, uint tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 pragma solidity ^0.8.6; /** * @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 pragma solidity ^0.8.6; 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.6; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.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 extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * @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 pragma solidity ^0.8.6; 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 pragma solidity ^0.8.6; 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 tokenId); /** * @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 pragma solidity ^0.8.6; 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 pragma solidity ^0.8.6; /** * @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 pragma solidity ^0.8.6; 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * @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":[],"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":[],"name":"allAssigned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"buyL0F1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"exposeHeldIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giftL0F1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","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":"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"withdrawEquity","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612710600b556000600c60006101000a81548160ff021916908315150217905550661b9ac619e7a000600d556002600e556000601160006101000a81548160ff0219169083151502179055503480156200005d57600080fd5b506040518060400160405280600481526020017f4c304631000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c304631000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e2929190620001f2565b508060019080519060200190620000fb929190620001f2565b5050506200011e620001126200012460201b60201c565b6200012c60201b60201c565b62000307565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020090620002a2565b90600052602060002090601f01602090048101928262000224576000855562000270565b82601f106200023f57805160ff191683800117855562000270565b8280016001018555821562000270579182015b828111156200026f57825182559160200191906001019062000252565b5b5090506200027f919062000283565b5090565b5b808211156200029e57600081600090555060010162000284565b5090565b60006002820490506001821680620002bb57607f821691505b60208210811415620002d257620002d1620002d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61431e80620003176000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd1461068b578063d547cfb7146106c8578063e985e9c5146106f3578063f2fde38b14610730576101d8565b8063a035b1fe146105e3578063a22cb4651461060e578063a4a4bf5314610637578063b88d4fde14610662576101d8565b8063715018a6116100d1578063715018a61461054b5780637ecc2b56146105625780638da5cb5b1461058d57806395d89b41146105b8576101d8565b80636352211e1461046957806369013efa146104a657806370a08231146104e357806370db69d614610520576101d8565b806323b872dd1161017a5780634b423d02116101495780634b423d02146103c15780634f6ccce7146103d857806355f804b314610415578063603f4d521461043e576101d8565b806323b872dd146103165780632f745c591461033f5780633ce47f2a1461037c57806342842e0e14610398576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab5780631ed40559146102d657806321f76613146102ed576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612e86565b610759565b604051610211919061347d565b60405180910390f35b34801561022657600080fd5b5061022f61076b565b60405161023c9190613498565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612f29565b6107fd565b60405161027991906133f4565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612e46565b610882565b005b3480156102b757600080fd5b506102c061099a565b6040516102cd919061379a565b60405180910390f35b3480156102e257600080fd5b506102eb6109a7565b005b3480156102f957600080fd5b50610314600480360381019061030f9190612e46565b610a5d565b005b34801561032257600080fd5b5061033d60048036038101906103389190612d30565b610b7d565b005b34801561034b57600080fd5b5061036660048036038101906103619190612e46565b610bdd565b604051610373919061379a565b60405180910390f35b61039660048036038101906103919190612f29565b610c82565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612d30565b610e16565b005b3480156103cd57600080fd5b506103d6610e36565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190612f29565b610ef8565b60405161040c919061379a565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190612ee0565b610f69565b005b34801561044a57600080fd5b50610453610fff565b604051610460919061347d565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612f29565b611012565b60405161049d91906133f4565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612cc3565b6110c4565b6040516104da919061345b565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190612cc3565b611172565b604051610517919061379a565b60405180910390f35b34801561052c57600080fd5b5061053561122a565b604051610542919061379a565b60405180910390f35b34801561055757600080fd5b50610560611230565b005b34801561056e57600080fd5b506105776112b8565b604051610584919061379a565b60405180910390f35b34801561059957600080fd5b506105a26112be565b6040516105af91906133f4565b60405180910390f35b3480156105c457600080fd5b506105cd6112e8565b6040516105da9190613498565b60405180910390f35b3480156105ef57600080fd5b506105f861137a565b604051610605919061379a565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190612e06565b611380565b005b34801561064357600080fd5b5061064c611501565b604051610659919061347d565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190612d83565b611514565b005b34801561069757600080fd5b506106b260048036038101906106ad9190612f29565b611576565b6040516106bf9190613498565b60405180910390f35b3480156106d457600080fd5b506106dd61161d565b6040516106ea9190613498565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612cf0565b6116ab565b604051610727919061347d565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612cc3565b61173f565b005b600061076482611837565b9050919050565b60606000805461077a90613aad565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690613aad565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b6000610808826118b1565b610847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083e9061367a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088d82611012565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f59061371a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091d61191d565b73ffffffffffffffffffffffffffffffffffffffff16148061094c575061094b8161094661191d565b6116ab565b5b61098b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610982906135da565b60405180910390fd5b6109958383611925565b505050565b6000600880549050905090565b6109af61191d565b73ffffffffffffffffffffffffffffffffffffffff166109cd6112be565b73ffffffffffffffffffffffffffffffffffffffff1614610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a9061369a565b60405180910390fd5b600c60009054906101000a900460ff1615610a3f576000610a42565b60015b600c60006101000a81548160ff021916908315150217905550565b610a6561191d565b73ffffffffffffffffffffffffffffffffffffffff16610a836112be565b73ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad09061369a565b60405180910390fd5b610ae381836119de565b601160009054906101000a900460ff1615610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a906134ba565b60405180910390fd5b6000600b541015610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b709061375a565b60405180910390fd5b5050565b610b8e610b8861191d565b82611b1c565b610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc49061373a565b60405180910390fd5b610bd8838383611bfa565b505050565b6000610be883611172565b8210610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c20906134da565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b80610c8d82336119de565b600c60009054906101000a900460ff16610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd39061363a565b60405180910390fd5b600081118015610cee5750600e548111155b610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d24906136fa565b60405180910390fd5b80600d54610d3b919061393f565b3414610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d739061359a565b60405180910390fd5b50601160009054906101000a900460ff1615610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906134ba565b60405180910390fd5b6000600b541015610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a9061375a565b60405180910390fd5b50565b610e3183838360405180602001604052806000815250611514565b505050565b610e3e61191d565b73ffffffffffffffffffffffffffffffffffffffff16610e5c6112be565b73ffffffffffffffffffffffffffffffffffffffff1614610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea99061369a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610ef557600080fd5b50565b6000610f0261099a565b8210610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a9061377a565b60405180910390fd5b60088281548110610f5757610f56613c46565b5b90600052602060002001549050919050565b610f7161191d565b73ffffffffffffffffffffffffffffffffffffffff16610f8f6112be565b73ffffffffffffffffffffffffffffffffffffffff1614610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc9061369a565b60405180910390fd5b80600f9080519060200190610ffb929190612ad7565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b29061361a565b60405180910390fd5b80915050919050565b606060006110d183611172565b905060008167ffffffffffffffff8111156110ef576110ee613c75565b5b60405190808252806020026020018201604052801561111d5781602001602082028036833780820191505090505b50905060005b82811015611167576111358582610bdd565b82828151811061114857611147613c46565b5b602002602001018181525050808061115f90613b10565b915050611123565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da906135fa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b61123861191d565b73ffffffffffffffffffffffffffffffffffffffff166112566112be565b73ffffffffffffffffffffffffffffffffffffffff16146112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a39061369a565b60405180910390fd5b6112b66000611e56565b565b600b5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112f790613aad565b80601f016020809104026020016040519081016040528092919081815260200182805461132390613aad565b80156113705780601f1061134557610100808354040283529160200191611370565b820191906000526020600020905b81548152906001019060200180831161135357829003601f168201915b5050505050905090565b600d5481565b61138861191d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed9061357a565b60405180910390fd5b806005600061140361191d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b061191d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f5919061347d565b60405180910390a35050565b601160009054906101000a900460ff1681565b61152561151f61191d565b83611b1c565b611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b9061373a565b60405180910390fd5b61157084848484611f1c565b50505050565b6060611581826118b1565b6115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b7906136da565b60405180910390fd5b60006115ca611f78565b905060008151116115ea5760405180602001604052806000815250611615565b806115f48461200a565b6040516020016116059291906133d0565b6040516020818303038152906040525b915050919050565b600f805461162a90613aad565b80601f016020809104026020016040519081016040528092919081815260200182805461165690613aad565b80156116a35780601f10611678576101008083540402835291602001916116a3565b820191906000526020600020905b81548152906001019060200180831161168657829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61174761191d565b73ffffffffffffffffffffffffffffffffffffffff166117656112be565b73ffffffffffffffffffffffffffffffffffffffff16146117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b29061369a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118229061351a565b60405180910390fd5b61183481611e56565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118aa57506118a98261216b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661199883611012565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b82811015611b1757600060105490506001600b546119ff9190613999565b811415611a4957600b6000815480929190611a1990613a83565b91905055506001601160006101000a81548160ff021916908315150217905550611a43838261224d565b50611b17565b600115156012600083815260200190815260200160002060009054906101000a900460ff1615151415611a9d5760106000815480929190611a8990613b10565b91905055508080611a9990613b10565b9150505b600b6000815480929190611ab090613a83565b919050555060106000815480929190611ac890613b10565b919050555060016012600083815260200190815260200160002060006101000a81548160ff021916908315150217905550611b03838261224d565b8180611b0e90613b10565b925050506119e1565b505050565b6000611b27826118b1565b611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d906135ba565b60405180910390fd5b6000611b7183611012565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611be057508373ffffffffffffffffffffffffffffffffffffffff16611bc8846107fd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bf15750611bf081856116ab565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c1a82611012565b73ffffffffffffffffffffffffffffffffffffffff1614611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c67906136ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd79061355a565b60405180910390fd5b611ceb83838361226b565b611cf6600082611925565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d469190613999565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d9d91906138b8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f27848484611bfa565b611f338484848461227b565b611f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f69906134fa565b60405180910390fd5b50505050565b6060600f8054611f8790613aad565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb390613aad565b80156120005780601f10611fd557610100808354040283529160200191612000565b820191906000526020600020905b815481529060010190602001808311611fe357829003601f168201915b5050505050905090565b60606000821415612052576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612166565b600082905060005b6000821461208457808061206d90613b10565b915050600a8261207d919061390e565b915061205a565b60008167ffffffffffffffff8111156120a05761209f613c75565b5b6040519080825280601f01601f1916602001820160405280156120d25781602001600182028036833780820191505090505b5090505b6000851461215f576001826120eb9190613999565b9150600a856120fa9190613b59565b603061210691906138b8565b60f81b81838151811061211c5761211b613c46565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612158919061390e565b94506120d6565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061223657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612246575061224582612412565b5b9050919050565b61226782826040518060200160405280600081525061247c565b5050565b6122768383836124d7565b505050565b600061229c8473ffffffffffffffffffffffffffffffffffffffff166125eb565b15612405578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c561191d565b8786866040518563ffffffff1660e01b81526004016122e7949392919061340f565b602060405180830381600087803b15801561230157600080fd5b505af192505050801561233257506040513d601f19601f8201168201806040525081019061232f9190612eb3565b60015b6123b5573d8060008114612362576040519150601f19603f3d011682016040523d82523d6000602084013e612367565b606091505b506000815114156123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a4906134fa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061240a565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61248683836125fe565b612493600084848461227b565b6124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c9906134fa565b60405180910390fd5b505050565b6124e28383836127cc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561252557612520816127d1565b612564565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461256357612562838261281a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a7576125a281612987565b6125e6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125e5576125e48282612a58565b5b5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561266e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126659061365a565b60405180910390fd5b612677816118b1565b156126b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ae9061353a565b60405180910390fd5b6126c36000838361226b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271391906138b8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161282784611172565b6128319190613999565b9050600060076000848152602001908152602001600020549050818114612916576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061299b9190613999565b90506000600960008481526020019081526020016000205490506000600883815481106129cb576129ca613c46565b5b9060005260206000200154905080600883815481106129ed576129ec613c46565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a3c57612a3b613c17565b5b6001900381819060005260206000200160009055905550505050565b6000612a6383611172565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612ae390613aad565b90600052602060002090601f016020900481019282612b055760008555612b4c565b82601f10612b1e57805160ff1916838001178555612b4c565b82800160010185558215612b4c579182015b82811115612b4b578251825591602001919060010190612b30565b5b509050612b599190612b5d565b5090565b5b80821115612b76576000816000905550600101612b5e565b5090565b6000612b8d612b88846137da565b6137b5565b905082815260208101848484011115612ba957612ba8613ca9565b5b612bb4848285613a41565b509392505050565b6000612bcf612bca8461380b565b6137b5565b905082815260208101848484011115612beb57612bea613ca9565b5b612bf6848285613a41565b509392505050565b600081359050612c0d8161428c565b92915050565b600081359050612c22816142a3565b92915050565b600081359050612c37816142ba565b92915050565b600081519050612c4c816142ba565b92915050565b600082601f830112612c6757612c66613ca4565b5b8135612c77848260208601612b7a565b91505092915050565b600082601f830112612c9557612c94613ca4565b5b8135612ca5848260208601612bbc565b91505092915050565b600081359050612cbd816142d1565b92915050565b600060208284031215612cd957612cd8613cb3565b5b6000612ce784828501612bfe565b91505092915050565b60008060408385031215612d0757612d06613cb3565b5b6000612d1585828601612bfe565b9250506020612d2685828601612bfe565b9150509250929050565b600080600060608486031215612d4957612d48613cb3565b5b6000612d5786828701612bfe565b9350506020612d6886828701612bfe565b9250506040612d7986828701612cae565b9150509250925092565b60008060008060808587031215612d9d57612d9c613cb3565b5b6000612dab87828801612bfe565b9450506020612dbc87828801612bfe565b9350506040612dcd87828801612cae565b925050606085013567ffffffffffffffff811115612dee57612ded613cae565b5b612dfa87828801612c52565b91505092959194509250565b60008060408385031215612e1d57612e1c613cb3565b5b6000612e2b85828601612bfe565b9250506020612e3c85828601612c13565b9150509250929050565b60008060408385031215612e5d57612e5c613cb3565b5b6000612e6b85828601612bfe565b9250506020612e7c85828601612cae565b9150509250929050565b600060208284031215612e9c57612e9b613cb3565b5b6000612eaa84828501612c28565b91505092915050565b600060208284031215612ec957612ec8613cb3565b5b6000612ed784828501612c3d565b91505092915050565b600060208284031215612ef657612ef5613cb3565b5b600082013567ffffffffffffffff811115612f1457612f13613cae565b5b612f2084828501612c80565b91505092915050565b600060208284031215612f3f57612f3e613cb3565b5b6000612f4d84828501612cae565b91505092915050565b6000612f6283836133b2565b60208301905092915050565b612f77816139cd565b82525050565b6000612f888261384c565b612f92818561387a565b9350612f9d8361383c565b8060005b83811015612fce578151612fb58882612f56565b9750612fc08361386d565b925050600181019050612fa1565b5085935050505092915050565b612fe4816139df565b82525050565b6000612ff582613857565b612fff818561388b565b935061300f818560208601613a50565b61301881613cb8565b840191505092915050565b600061302e82613862565b613038818561389c565b9350613048818560208601613a50565b61305181613cb8565b840191505092915050565b600061306782613862565b61307181856138ad565b9350613081818560208601613a50565b80840191505092915050565b600061309a60108361389c565b91506130a582613cc9565b602082019050919050565b60006130bd602b8361389c565b91506130c882613cf2565b604082019050919050565b60006130e060328361389c565b91506130eb82613d41565b604082019050919050565b600061310360268361389c565b915061310e82613d90565b604082019050919050565b6000613126601c8361389c565b915061313182613ddf565b602082019050919050565b600061314960248361389c565b915061315482613e08565b604082019050919050565b600061316c60198361389c565b915061317782613e57565b602082019050919050565b600061318f601e8361389c565b915061319a82613e80565b602082019050919050565b60006131b2602c8361389c565b91506131bd82613ea9565b604082019050919050565b60006131d560388361389c565b91506131e082613ef8565b604082019050919050565b60006131f8602a8361389c565b915061320382613f47565b604082019050919050565b600061321b60298361389c565b915061322682613f96565b604082019050919050565b600061323e600b8361389c565b915061324982613fe5565b602082019050919050565b600061326160208361389c565b915061326c8261400e565b602082019050919050565b6000613284602c8361389c565b915061328f82614037565b604082019050919050565b60006132a760208361389c565b91506132b282614086565b602082019050919050565b60006132ca60298361389c565b91506132d5826140af565b604082019050919050565b60006132ed602f8361389c565b91506132f8826140fe565b604082019050919050565b6000613310601f8361389c565b915061331b8261414d565b602082019050919050565b600061333360218361389c565b915061333e82614176565b604082019050919050565b600061335660318361389c565b9150613361826141c5565b604082019050919050565b6000613379600d8361389c565b915061338482614214565b602082019050919050565b600061339c602c8361389c565b91506133a78261423d565b604082019050919050565b6133bb81613a37565b82525050565b6133ca81613a37565b82525050565b60006133dc828561305c565b91506133e8828461305c565b91508190509392505050565b60006020820190506134096000830184612f6e565b92915050565b60006080820190506134246000830187612f6e565b6134316020830186612f6e565b61343e60408301856133c1565b81810360608301526134508184612fea565b905095945050505050565b600060208201905081810360008301526134758184612f7d565b905092915050565b60006020820190506134926000830184612fdb565b92915050565b600060208201905081810360008301526134b28184613023565b905092915050565b600060208201905081810360008301526134d38161308d565b9050919050565b600060208201905081810360008301526134f3816130b0565b9050919050565b60006020820190508181036000830152613513816130d3565b9050919050565b60006020820190508181036000830152613533816130f6565b9050919050565b6000602082019050818103600083015261355381613119565b9050919050565b600060208201905081810360008301526135738161313c565b9050919050565b600060208201905081810360008301526135938161315f565b9050919050565b600060208201905081810360008301526135b381613182565b9050919050565b600060208201905081810360008301526135d3816131a5565b9050919050565b600060208201905081810360008301526135f3816131c8565b9050919050565b60006020820190508181036000830152613613816131eb565b9050919050565b600060208201905081810360008301526136338161320e565b9050919050565b6000602082019050818103600083015261365381613231565b9050919050565b6000602082019050818103600083015261367381613254565b9050919050565b6000602082019050818103600083015261369381613277565b9050919050565b600060208201905081810360008301526136b38161329a565b9050919050565b600060208201905081810360008301526136d3816132bd565b9050919050565b600060208201905081810360008301526136f3816132e0565b9050919050565b6000602082019050818103600083015261371381613303565b9050919050565b6000602082019050818103600083015261373381613326565b9050919050565b6000602082019050818103600083015261375381613349565b9050919050565b600060208201905081810360008301526137738161336c565b9050919050565b600060208201905081810360008301526137938161338f565b9050919050565b60006020820190506137af60008301846133c1565b92915050565b60006137bf6137d0565b90506137cb8282613adf565b919050565b6000604051905090565b600067ffffffffffffffff8211156137f5576137f4613c75565b5b6137fe82613cb8565b9050602081019050919050565b600067ffffffffffffffff82111561382657613825613c75565b5b61382f82613cb8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138c382613a37565b91506138ce83613a37565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561390357613902613b8a565b5b828201905092915050565b600061391982613a37565b915061392483613a37565b92508261393457613933613bb9565b5b828204905092915050565b600061394a82613a37565b915061395583613a37565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561398e5761398d613b8a565b5b828202905092915050565b60006139a482613a37565b91506139af83613a37565b9250828210156139c2576139c1613b8a565b5b828203905092915050565b60006139d882613a17565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a6e578082015181840152602081019050613a53565b83811115613a7d576000848401525b50505050565b6000613a8e82613a37565b91506000821415613aa257613aa1613b8a565b5b600182039050919050565b60006002820490506001821680613ac557607f821691505b60208210811415613ad957613ad8613be8565b5b50919050565b613ae882613cb8565b810181811067ffffffffffffffff82111715613b0757613b06613c75565b5b80604052505050565b6000613b1b82613a37565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b4e57613b4d613b8a565b5b600182019050919050565b6000613b6482613a37565b9150613b6f83613a37565b925082613b7f57613b7e613bb9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e6e6f74206d696e74206d6f726500000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53686f756c64206265207b70726963657d202a207b7175616e746974797d0000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c6520636c6f736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d696e69203120616e64207b6d61784275797d204c3046312070657220547800600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f7574206f6620746f6b656e7300000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614295816139cd565b81146142a057600080fd5b50565b6142ac816139df565b81146142b757600080fd5b50565b6142c3816139eb565b81146142ce57600080fd5b50565b6142da81613a37565b81146142e557600080fd5b5056fea26469706673582212208aec22e9e5c9ef2ed43cf42f533602dc5567382d513748c036b7d1ae6386d78664736f6c63430008060033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80636352211e11610102578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd1461068b578063d547cfb7146106c8578063e985e9c5146106f3578063f2fde38b14610730576101d8565b8063a035b1fe146105e3578063a22cb4651461060e578063a4a4bf5314610637578063b88d4fde14610662576101d8565b8063715018a6116100d1578063715018a61461054b5780637ecc2b56146105625780638da5cb5b1461058d57806395d89b41146105b8576101d8565b80636352211e1461046957806369013efa146104a657806370a08231146104e357806370db69d614610520576101d8565b806323b872dd1161017a5780634b423d02116101495780634b423d02146103c15780634f6ccce7146103d857806355f804b314610415578063603f4d521461043e576101d8565b806323b872dd146103165780632f745c591461033f5780633ce47f2a1461037c57806342842e0e14610398576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab5780631ed40559146102d657806321f76613146102ed576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612e86565b610759565b604051610211919061347d565b60405180910390f35b34801561022657600080fd5b5061022f61076b565b60405161023c9190613498565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612f29565b6107fd565b60405161027991906133f4565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612e46565b610882565b005b3480156102b757600080fd5b506102c061099a565b6040516102cd919061379a565b60405180910390f35b3480156102e257600080fd5b506102eb6109a7565b005b3480156102f957600080fd5b50610314600480360381019061030f9190612e46565b610a5d565b005b34801561032257600080fd5b5061033d60048036038101906103389190612d30565b610b7d565b005b34801561034b57600080fd5b5061036660048036038101906103619190612e46565b610bdd565b604051610373919061379a565b60405180910390f35b61039660048036038101906103919190612f29565b610c82565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612d30565b610e16565b005b3480156103cd57600080fd5b506103d6610e36565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190612f29565b610ef8565b60405161040c919061379a565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190612ee0565b610f69565b005b34801561044a57600080fd5b50610453610fff565b604051610460919061347d565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612f29565b611012565b60405161049d91906133f4565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612cc3565b6110c4565b6040516104da919061345b565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190612cc3565b611172565b604051610517919061379a565b60405180910390f35b34801561052c57600080fd5b5061053561122a565b604051610542919061379a565b60405180910390f35b34801561055757600080fd5b50610560611230565b005b34801561056e57600080fd5b506105776112b8565b604051610584919061379a565b60405180910390f35b34801561059957600080fd5b506105a26112be565b6040516105af91906133f4565b60405180910390f35b3480156105c457600080fd5b506105cd6112e8565b6040516105da9190613498565b60405180910390f35b3480156105ef57600080fd5b506105f861137a565b604051610605919061379a565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190612e06565b611380565b005b34801561064357600080fd5b5061064c611501565b604051610659919061347d565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190612d83565b611514565b005b34801561069757600080fd5b506106b260048036038101906106ad9190612f29565b611576565b6040516106bf9190613498565b60405180910390f35b3480156106d457600080fd5b506106dd61161d565b6040516106ea9190613498565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612cf0565b6116ab565b604051610727919061347d565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612cc3565b61173f565b005b600061076482611837565b9050919050565b60606000805461077a90613aad565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690613aad565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b6000610808826118b1565b610847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083e9061367a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088d82611012565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f59061371a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091d61191d565b73ffffffffffffffffffffffffffffffffffffffff16148061094c575061094b8161094661191d565b6116ab565b5b61098b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610982906135da565b60405180910390fd5b6109958383611925565b505050565b6000600880549050905090565b6109af61191d565b73ffffffffffffffffffffffffffffffffffffffff166109cd6112be565b73ffffffffffffffffffffffffffffffffffffffff1614610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a9061369a565b60405180910390fd5b600c60009054906101000a900460ff1615610a3f576000610a42565b60015b600c60006101000a81548160ff021916908315150217905550565b610a6561191d565b73ffffffffffffffffffffffffffffffffffffffff16610a836112be565b73ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad09061369a565b60405180910390fd5b610ae381836119de565b601160009054906101000a900460ff1615610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a906134ba565b60405180910390fd5b6000600b541015610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b709061375a565b60405180910390fd5b5050565b610b8e610b8861191d565b82611b1c565b610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc49061373a565b60405180910390fd5b610bd8838383611bfa565b505050565b6000610be883611172565b8210610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c20906134da565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b80610c8d82336119de565b600c60009054906101000a900460ff16610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd39061363a565b60405180910390fd5b600081118015610cee5750600e548111155b610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d24906136fa565b60405180910390fd5b80600d54610d3b919061393f565b3414610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d739061359a565b60405180910390fd5b50601160009054906101000a900460ff1615610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906134ba565b60405180910390fd5b6000600b541015610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a9061375a565b60405180910390fd5b50565b610e3183838360405180602001604052806000815250611514565b505050565b610e3e61191d565b73ffffffffffffffffffffffffffffffffffffffff16610e5c6112be565b73ffffffffffffffffffffffffffffffffffffffff1614610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea99061369a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610ef557600080fd5b50565b6000610f0261099a565b8210610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a9061377a565b60405180910390fd5b60088281548110610f5757610f56613c46565b5b90600052602060002001549050919050565b610f7161191d565b73ffffffffffffffffffffffffffffffffffffffff16610f8f6112be565b73ffffffffffffffffffffffffffffffffffffffff1614610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc9061369a565b60405180910390fd5b80600f9080519060200190610ffb929190612ad7565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b29061361a565b60405180910390fd5b80915050919050565b606060006110d183611172565b905060008167ffffffffffffffff8111156110ef576110ee613c75565b5b60405190808252806020026020018201604052801561111d5781602001602082028036833780820191505090505b50905060005b82811015611167576111358582610bdd565b82828151811061114857611147613c46565b5b602002602001018181525050808061115f90613b10565b915050611123565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da906135fa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b61123861191d565b73ffffffffffffffffffffffffffffffffffffffff166112566112be565b73ffffffffffffffffffffffffffffffffffffffff16146112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a39061369a565b60405180910390fd5b6112b66000611e56565b565b600b5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112f790613aad565b80601f016020809104026020016040519081016040528092919081815260200182805461132390613aad565b80156113705780601f1061134557610100808354040283529160200191611370565b820191906000526020600020905b81548152906001019060200180831161135357829003601f168201915b5050505050905090565b600d5481565b61138861191d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed9061357a565b60405180910390fd5b806005600061140361191d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b061191d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f5919061347d565b60405180910390a35050565b601160009054906101000a900460ff1681565b61152561151f61191d565b83611b1c565b611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b9061373a565b60405180910390fd5b61157084848484611f1c565b50505050565b6060611581826118b1565b6115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b7906136da565b60405180910390fd5b60006115ca611f78565b905060008151116115ea5760405180602001604052806000815250611615565b806115f48461200a565b6040516020016116059291906133d0565b6040516020818303038152906040525b915050919050565b600f805461162a90613aad565b80601f016020809104026020016040519081016040528092919081815260200182805461165690613aad565b80156116a35780601f10611678576101008083540402835291602001916116a3565b820191906000526020600020905b81548152906001019060200180831161168657829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61174761191d565b73ffffffffffffffffffffffffffffffffffffffff166117656112be565b73ffffffffffffffffffffffffffffffffffffffff16146117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b29061369a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118229061351a565b60405180910390fd5b61183481611e56565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118aa57506118a98261216b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661199883611012565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b82811015611b1757600060105490506001600b546119ff9190613999565b811415611a4957600b6000815480929190611a1990613a83565b91905055506001601160006101000a81548160ff021916908315150217905550611a43838261224d565b50611b17565b600115156012600083815260200190815260200160002060009054906101000a900460ff1615151415611a9d5760106000815480929190611a8990613b10565b91905055508080611a9990613b10565b9150505b600b6000815480929190611ab090613a83565b919050555060106000815480929190611ac890613b10565b919050555060016012600083815260200190815260200160002060006101000a81548160ff021916908315150217905550611b03838261224d565b8180611b0e90613b10565b925050506119e1565b505050565b6000611b27826118b1565b611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d906135ba565b60405180910390fd5b6000611b7183611012565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611be057508373ffffffffffffffffffffffffffffffffffffffff16611bc8846107fd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bf15750611bf081856116ab565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c1a82611012565b73ffffffffffffffffffffffffffffffffffffffff1614611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c67906136ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd79061355a565b60405180910390fd5b611ceb83838361226b565b611cf6600082611925565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d469190613999565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d9d91906138b8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f27848484611bfa565b611f338484848461227b565b611f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f69906134fa565b60405180910390fd5b50505050565b6060600f8054611f8790613aad565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb390613aad565b80156120005780601f10611fd557610100808354040283529160200191612000565b820191906000526020600020905b815481529060010190602001808311611fe357829003601f168201915b5050505050905090565b60606000821415612052576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612166565b600082905060005b6000821461208457808061206d90613b10565b915050600a8261207d919061390e565b915061205a565b60008167ffffffffffffffff8111156120a05761209f613c75565b5b6040519080825280601f01601f1916602001820160405280156120d25781602001600182028036833780820191505090505b5090505b6000851461215f576001826120eb9190613999565b9150600a856120fa9190613b59565b603061210691906138b8565b60f81b81838151811061211c5761211b613c46565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612158919061390e565b94506120d6565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061223657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612246575061224582612412565b5b9050919050565b61226782826040518060200160405280600081525061247c565b5050565b6122768383836124d7565b505050565b600061229c8473ffffffffffffffffffffffffffffffffffffffff166125eb565b15612405578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c561191d565b8786866040518563ffffffff1660e01b81526004016122e7949392919061340f565b602060405180830381600087803b15801561230157600080fd5b505af192505050801561233257506040513d601f19601f8201168201806040525081019061232f9190612eb3565b60015b6123b5573d8060008114612362576040519150601f19603f3d011682016040523d82523d6000602084013e612367565b606091505b506000815114156123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a4906134fa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061240a565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61248683836125fe565b612493600084848461227b565b6124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c9906134fa565b60405180910390fd5b505050565b6124e28383836127cc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561252557612520816127d1565b612564565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461256357612562838261281a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a7576125a281612987565b6125e6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125e5576125e48282612a58565b5b5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561266e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126659061365a565b60405180910390fd5b612677816118b1565b156126b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ae9061353a565b60405180910390fd5b6126c36000838361226b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271391906138b8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161282784611172565b6128319190613999565b9050600060076000848152602001908152602001600020549050818114612916576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061299b9190613999565b90506000600960008481526020019081526020016000205490506000600883815481106129cb576129ca613c46565b5b9060005260206000200154905080600883815481106129ed576129ec613c46565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a3c57612a3b613c17565b5b6001900381819060005260206000200160009055905550505050565b6000612a6383611172565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612ae390613aad565b90600052602060002090601f016020900481019282612b055760008555612b4c565b82601f10612b1e57805160ff1916838001178555612b4c565b82800160010185558215612b4c579182015b82811115612b4b578251825591602001919060010190612b30565b5b509050612b599190612b5d565b5090565b5b80821115612b76576000816000905550600101612b5e565b5090565b6000612b8d612b88846137da565b6137b5565b905082815260208101848484011115612ba957612ba8613ca9565b5b612bb4848285613a41565b509392505050565b6000612bcf612bca8461380b565b6137b5565b905082815260208101848484011115612beb57612bea613ca9565b5b612bf6848285613a41565b509392505050565b600081359050612c0d8161428c565b92915050565b600081359050612c22816142a3565b92915050565b600081359050612c37816142ba565b92915050565b600081519050612c4c816142ba565b92915050565b600082601f830112612c6757612c66613ca4565b5b8135612c77848260208601612b7a565b91505092915050565b600082601f830112612c9557612c94613ca4565b5b8135612ca5848260208601612bbc565b91505092915050565b600081359050612cbd816142d1565b92915050565b600060208284031215612cd957612cd8613cb3565b5b6000612ce784828501612bfe565b91505092915050565b60008060408385031215612d0757612d06613cb3565b5b6000612d1585828601612bfe565b9250506020612d2685828601612bfe565b9150509250929050565b600080600060608486031215612d4957612d48613cb3565b5b6000612d5786828701612bfe565b9350506020612d6886828701612bfe565b9250506040612d7986828701612cae565b9150509250925092565b60008060008060808587031215612d9d57612d9c613cb3565b5b6000612dab87828801612bfe565b9450506020612dbc87828801612bfe565b9350506040612dcd87828801612cae565b925050606085013567ffffffffffffffff811115612dee57612ded613cae565b5b612dfa87828801612c52565b91505092959194509250565b60008060408385031215612e1d57612e1c613cb3565b5b6000612e2b85828601612bfe565b9250506020612e3c85828601612c13565b9150509250929050565b60008060408385031215612e5d57612e5c613cb3565b5b6000612e6b85828601612bfe565b9250506020612e7c85828601612cae565b9150509250929050565b600060208284031215612e9c57612e9b613cb3565b5b6000612eaa84828501612c28565b91505092915050565b600060208284031215612ec957612ec8613cb3565b5b6000612ed784828501612c3d565b91505092915050565b600060208284031215612ef657612ef5613cb3565b5b600082013567ffffffffffffffff811115612f1457612f13613cae565b5b612f2084828501612c80565b91505092915050565b600060208284031215612f3f57612f3e613cb3565b5b6000612f4d84828501612cae565b91505092915050565b6000612f6283836133b2565b60208301905092915050565b612f77816139cd565b82525050565b6000612f888261384c565b612f92818561387a565b9350612f9d8361383c565b8060005b83811015612fce578151612fb58882612f56565b9750612fc08361386d565b925050600181019050612fa1565b5085935050505092915050565b612fe4816139df565b82525050565b6000612ff582613857565b612fff818561388b565b935061300f818560208601613a50565b61301881613cb8565b840191505092915050565b600061302e82613862565b613038818561389c565b9350613048818560208601613a50565b61305181613cb8565b840191505092915050565b600061306782613862565b61307181856138ad565b9350613081818560208601613a50565b80840191505092915050565b600061309a60108361389c565b91506130a582613cc9565b602082019050919050565b60006130bd602b8361389c565b91506130c882613cf2565b604082019050919050565b60006130e060328361389c565b91506130eb82613d41565b604082019050919050565b600061310360268361389c565b915061310e82613d90565b604082019050919050565b6000613126601c8361389c565b915061313182613ddf565b602082019050919050565b600061314960248361389c565b915061315482613e08565b604082019050919050565b600061316c60198361389c565b915061317782613e57565b602082019050919050565b600061318f601e8361389c565b915061319a82613e80565b602082019050919050565b60006131b2602c8361389c565b91506131bd82613ea9565b604082019050919050565b60006131d560388361389c565b91506131e082613ef8565b604082019050919050565b60006131f8602a8361389c565b915061320382613f47565b604082019050919050565b600061321b60298361389c565b915061322682613f96565b604082019050919050565b600061323e600b8361389c565b915061324982613fe5565b602082019050919050565b600061326160208361389c565b915061326c8261400e565b602082019050919050565b6000613284602c8361389c565b915061328f82614037565b604082019050919050565b60006132a760208361389c565b91506132b282614086565b602082019050919050565b60006132ca60298361389c565b91506132d5826140af565b604082019050919050565b60006132ed602f8361389c565b91506132f8826140fe565b604082019050919050565b6000613310601f8361389c565b915061331b8261414d565b602082019050919050565b600061333360218361389c565b915061333e82614176565b604082019050919050565b600061335660318361389c565b9150613361826141c5565b604082019050919050565b6000613379600d8361389c565b915061338482614214565b602082019050919050565b600061339c602c8361389c565b91506133a78261423d565b604082019050919050565b6133bb81613a37565b82525050565b6133ca81613a37565b82525050565b60006133dc828561305c565b91506133e8828461305c565b91508190509392505050565b60006020820190506134096000830184612f6e565b92915050565b60006080820190506134246000830187612f6e565b6134316020830186612f6e565b61343e60408301856133c1565b81810360608301526134508184612fea565b905095945050505050565b600060208201905081810360008301526134758184612f7d565b905092915050565b60006020820190506134926000830184612fdb565b92915050565b600060208201905081810360008301526134b28184613023565b905092915050565b600060208201905081810360008301526134d38161308d565b9050919050565b600060208201905081810360008301526134f3816130b0565b9050919050565b60006020820190508181036000830152613513816130d3565b9050919050565b60006020820190508181036000830152613533816130f6565b9050919050565b6000602082019050818103600083015261355381613119565b9050919050565b600060208201905081810360008301526135738161313c565b9050919050565b600060208201905081810360008301526135938161315f565b9050919050565b600060208201905081810360008301526135b381613182565b9050919050565b600060208201905081810360008301526135d3816131a5565b9050919050565b600060208201905081810360008301526135f3816131c8565b9050919050565b60006020820190508181036000830152613613816131eb565b9050919050565b600060208201905081810360008301526136338161320e565b9050919050565b6000602082019050818103600083015261365381613231565b9050919050565b6000602082019050818103600083015261367381613254565b9050919050565b6000602082019050818103600083015261369381613277565b9050919050565b600060208201905081810360008301526136b38161329a565b9050919050565b600060208201905081810360008301526136d3816132bd565b9050919050565b600060208201905081810360008301526136f3816132e0565b9050919050565b6000602082019050818103600083015261371381613303565b9050919050565b6000602082019050818103600083015261373381613326565b9050919050565b6000602082019050818103600083015261375381613349565b9050919050565b600060208201905081810360008301526137738161336c565b9050919050565b600060208201905081810360008301526137938161338f565b9050919050565b60006020820190506137af60008301846133c1565b92915050565b60006137bf6137d0565b90506137cb8282613adf565b919050565b6000604051905090565b600067ffffffffffffffff8211156137f5576137f4613c75565b5b6137fe82613cb8565b9050602081019050919050565b600067ffffffffffffffff82111561382657613825613c75565b5b61382f82613cb8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138c382613a37565b91506138ce83613a37565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561390357613902613b8a565b5b828201905092915050565b600061391982613a37565b915061392483613a37565b92508261393457613933613bb9565b5b828204905092915050565b600061394a82613a37565b915061395583613a37565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561398e5761398d613b8a565b5b828202905092915050565b60006139a482613a37565b91506139af83613a37565b9250828210156139c2576139c1613b8a565b5b828203905092915050565b60006139d882613a17565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a6e578082015181840152602081019050613a53565b83811115613a7d576000848401525b50505050565b6000613a8e82613a37565b91506000821415613aa257613aa1613b8a565b5b600182039050919050565b60006002820490506001821680613ac557607f821691505b60208210811415613ad957613ad8613be8565b5b50919050565b613ae882613cb8565b810181811067ffffffffffffffff82111715613b0757613b06613c75565b5b80604052505050565b6000613b1b82613a37565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b4e57613b4d613b8a565b5b600182019050919050565b6000613b6482613a37565b9150613b6f83613a37565b925082613b7f57613b7e613bb9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e6e6f74206d696e74206d6f726500000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53686f756c64206265207b70726963657d202a207b7175616e746974797d0000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c6520636c6f736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d696e69203120616e64207b6d61784275797d204c3046312070657220547800600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f7574206f6620746f6b656e7300000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614295816139cd565b81146142a057600080fd5b50565b6142ac816139df565b81146142b757600080fd5b50565b6142c3816139eb565b81146142ce57600080fd5b50565b6142da81613a37565b81146142e557600080fd5b5056fea26469706673582212208aec22e9e5c9ef2ed43cf42f533602dc5567382d513748c036b7d1ae6386d78664736f6c63430008060033
Deployed Bytecode Sourcemap
164:3583:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3568:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1546:111:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1245:103:10;;;;;;;;;;;;;:::i;:::-;;2395:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4724:330:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1222:253:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2255:134:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5120:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2565:154:10;;;;;;;;;;;;;:::i;:::-;;1729:230:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3267:99:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;291:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2052:235:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2791:349:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1790:205:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;370:22:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:11;;;;;;;;;;;;;:::i;:::-;;250:35:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;966:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2511:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;331:33:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4144:290:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;468:31:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5365:320:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2679:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;399:26:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3568:177:10;3679:4;3702:36;3726:11;3702:23;:36::i;:::-;3695:43;;3568:177;;;:::o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;1546:111:4:-;1607:7;1633:10;:17;;;;1626:24;;1546:111;:::o;1245:103:10:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1316:9:10::1;;;;;;;;;;;1315:10;:25;;1335:5;1315:25;;;1328:4;1315:25;1302:9;;:39;;;;;;;;;;;;;;;;;;1245:103::o:0;2395:120::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2485:23:10::2;2495:8;2505:2;2485:9;:23::i;:::-;618:11:::1;;;;;;;;;;;617:12;596:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;739:1;720:15;;:20;;699:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;2395:120:::0;;:::o;4724:330:3:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;1222:253:4:-;1319:7;1354:23;1371:5;1354:16;:23::i;:::-;1346:5;:31;1338:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1442:12;:19;1455:5;1442:19;;;;;;;;;;;;;;;:26;1462:5;1442:26;;;;;;;;;;;;1435:33;;1222:253;;;;:::o;2255:134:10:-;2331:8:::1;2351:31:::2;2361:8;2371:10;2351:9;:31::i;:::-;870:9:::1;;;;;;;;;;;849:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;959:1;948:8;:12;:34;;;;;976:6;;964:8;:18;;948:34;927:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;1092:8;1084:5;;:16;;;;:::i;:::-;1071:9;:29;1050:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;585:1;618:11:::0;;;;;;;;;;;617:12;596:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;739:1;720:15;;:20;;699:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;2255:134;:::o;5120:179:3:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;2565:154:10:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2624:12:10::1;2639:21;2624:36;;2686:10;2678:24;;:33;2703:7;2678:33;;;;;;;;;;;;;;;;;;;;;;;2670:42;;;::::0;::::1;;2614:105;2565:154::o:0;1729:230:4:-;1804:7;1839:30;:28;:30::i;:::-;1831:5;:38;1823:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1935:10;1946:5;1935:17;;;;;;;;:::i;:::-;;;;;;;;;;1928:24;;1729:230;;;:::o;3267:99:10:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3352:7:10::1;3337:12;:22;;;;;;;;;;;;:::i;:::-;;3267:99:::0;:::o;291:29::-;;;;;;;;;;;;;:::o;2052:235:3:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;2791:349:10:-;2853:13;2878:15;2896:16;2906:5;2896:9;:16::i;:::-;2878:34;;2922:22;2958:10;2947:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2922:47;;2980:6;3000:109;3011:10;3007:1;:14;3000:109;;;3052:29;3072:5;3079:1;3052:19;:29::i;:::-;3038:8;3047:1;3038:11;;;;;;;;:::i;:::-;;;;;;;:43;;;;;3095:3;;;;;:::i;:::-;;;;3000:109;;;3125:8;3118:15;;;;;2791:349;;;:::o;1790:205:3:-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;370:22:10:-;;;;:::o;1598:92:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;250:35:10:-;;;;:::o;966:85:11:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;331:33:10:-;;;;:::o;4144:290:3:-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;468:31:10:-;;;;;;;;;;;;;:::o;5365:320:3:-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2679:329::-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;;;2679:329;;;:::o;399:26:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4500:162:3:-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;1839:189:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;909:234:4:-;1011:4;1049:35;1034:50;;;:11;:50;;;;:102;;;;1100:36;1124:11;1100:23;:36::i;:::-;1034:102;1027:109;;909:234;;;:::o;7157:125:3:-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;11008:171:3:-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;1370:879:10:-;1434:6;1455:788;1466:8;1462:1;:12;1455:788;;;1490:12;1505:17;;1490:32;;1691:1;1673:15;;:19;;;;:::i;:::-;1661:7;:32;1657:187;;;1713:15;;:17;;;;;;;;;:::i;:::-;;;;;;1762:4;1748:11;;:18;;;;;;;;;;;;;;;;;;1784:22;1794:2;1798:7;1784:9;:22::i;:::-;1824:5;;;1657:187;1972:4;1943:33;;:16;:25;1960:7;1943:25;;;;;;;;;;;;;;;;;;;;;:33;;;1939:118;;;1996:17;;:19;;;;;;;;;:::i;:::-;;;;;;2033:9;;;;;:::i;:::-;;;;1939:118;2083:15;;:17;;;;;;;;;:::i;:::-;;;;;;2114;;:19;;;;;;;;;:::i;:::-;;;;;;2175:4;2147:16;:25;2164:7;2147:25;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;2193:22;2203:2;2207:7;2193:9;:22::i;:::-;2229:3;;;;;:::i;:::-;;;;1476:767;1455:788;;;1424:825;1370:879;;:::o;7440:344:3:-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;2034:169:11:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2079:124;2034:169;:::o;6547:307:3:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;3146:115:10:-;3210:13;3242:12;3235:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3146:115;:::o;275:703:13:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;1431:300:3:-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;8114:108::-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;3372:190:10:-;3510:45;3537:4;3543:2;3547:7;3510:26;:45::i;:::-;3372:190;;;:::o;11732:778:3:-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:606;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12193:1;12176:6;:13;:18;12172:266;;;12218:60;;;;;;;;;;:::i;:::-;;;;;;;;12172:266;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;12069:41;;;12059:51;;;:6;:51;;;;12052:58;;;;;11898:606;12489:4;12482:11;;11732:778;;;;;;;:::o;763:155:2:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;8443:311:3:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:311;;;:::o;2555:542:4:-;2664:45;2691:4;2697:2;2701:7;2664:26;:45::i;:::-;2740:1;2724:18;;:4;:18;;;2720:183;;;2758:40;2790:7;2758:31;:40::i;:::-;2720:183;;;2827:2;2819:10;;:4;:10;;;2815:88;;2845:47;2878:4;2884:7;2845:32;:47::i;:::-;2815:88;2720:183;2930:1;2916:16;;:2;:16;;;2912:179;;;2948:45;2985:7;2948:36;:45::i;:::-;2912:179;;;3020:4;3014:10;;:2;:10;;;3010:81;;3040:40;3068:2;3072:7;3040:27;:40::i;:::-;3010:81;2912:179;2555:542;;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;9076:372:3:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076:372;;:::o;13066:122::-;;;;:::o;3803:161:4:-;3906:10;:17;;;;3879:15;:24;3895:7;3879:24;;;;;;;;;;;:44;;;;3933:10;3949:7;3933:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3803:161;:::o;4581:970::-;4843:22;4893:1;4868:22;4885:4;4868:16;:22::i;:::-;:26;;;;:::i;:::-;4843:51;;4904:18;4925:17;:26;4943:7;4925:26;;;;;;;;;;;;4904:47;;5069:14;5055:10;:28;5051:323;;5099:19;5121:12;:18;5134:4;5121:18;;;;;;;;;;;;;;;:34;5140:14;5121:34;;;;;;;;;;;;5099:56;;5203:11;5170:12;:18;5183:4;5170:18;;;;;;;;;;;;;;;:30;5189:10;5170:30;;;;;;;;;;;:44;;;;5319:10;5286:17;:30;5304:11;5286:30;;;;;;;;;;;:43;;;;5085:289;5051:323;5467:17;:26;5485:7;5467:26;;;;;;;;;;;5460:33;;;5510:12;:18;5523:4;5510:18;;;;;;;;;;;;;;;:34;5529:14;5510:34;;;;;;;;;;;5503:41;;;4662:889;;4581:970;;:::o;5839:1061::-;6088:22;6133:1;6113:10;:17;;;;:21;;;;:::i;:::-;6088:46;;6144:18;6165:15;:24;6181:7;6165:24;;;;;;;;;;;;6144:45;;6511:19;6533:10;6544:14;6533:26;;;;;;;;:::i;:::-;;;;;;;;;;6511:48;;6595:11;6570:10;6581;6570:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6705:10;6674:15;:28;6690:11;6674:28;;;;;;;;;;;:41;;;;6843:15;:24;6859:7;6843:24;;;;;;;;;;;6836:31;;;6877:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5910:990;;;5839:1061;:::o;3391:217::-;3475:14;3492:20;3509:2;3492:16;:20::i;:::-;3475:37;;3549:7;3522:12;:16;3535:2;3522:16;;;;;;;;;;;;;;;:24;3539:6;3522:24;;;;;;;;;;;:34;;;;3595:6;3566:17;:26;3584:7;3566:26;;;;;;;;;;;:35;;;;3465:143;3391:217;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;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:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;1035:84;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1176:86;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1330:79;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:2;;1540:79;;:::i;:::-;1499:2;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:2;;1899:79;;:::i;:::-;1858:2;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2184:87;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:2;;;2391:79;;:::i;:::-;2353:2;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2343:263;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:2;;;2743:79;;:::i;:::-;2705:2;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2695:391;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:2;;;3240:79;;:::i;:::-;3202:2;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3192:519;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:2;;;3892:79;;:::i;:::-;3853:2;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:2;;;4476:79;;:::i;:::-;4440:2;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3843:817;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:2;;;4794:79;;:::i;:::-;4756:2;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4746:388;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5271:79;;:::i;:::-;5233:2;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5223:391;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:2;;;5733:79;;:::i;:::-;5695:2;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5685:262;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:2;;;6077:79;;:::i;:::-;6039:2;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;6029:273;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:2;;;6432:79;;:::i;:::-;6394:2;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:2;;;6632:79;;:::i;:::-;6596:2;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6384:433;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:2;;;6937:79;;:::i;:::-;6899:2;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6889:263;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7238:99;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7408:53;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8294:50;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;;;;;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9615:220;;;:::o;9841:366::-;9983:3;10004:67;10068:2;10063:3;10004:67;:::i;:::-;9997:74;;10080:93;10169:3;10080:93;:::i;:::-;10198:2;10193:3;10189:12;10182:19;;9987:220;;;:::o;10213:366::-;10355:3;10376:67;10440:2;10435:3;10376:67;:::i;:::-;10369:74;;10452:93;10541:3;10452:93;:::i;:::-;10570:2;10565:3;10561:12;10554:19;;10359:220;;;:::o;10585:366::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10731:220;;;:::o;10957:366::-;11099:3;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11196:93;11285:3;11196:93;:::i;:::-;11314:2;11309:3;11305:12;11298:19;;11103:220;;;:::o;11329:366::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11475:220;;;:::o;11701:366::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11847:220;;;:::o;12073:366::-;12215:3;12236:67;12300:2;12295:3;12236:67;:::i;:::-;12229:74;;12312:93;12401:3;12312:93;:::i;:::-;12430:2;12425:3;12421:12;12414:19;;12219:220;;;:::o;12445:366::-;12587:3;12608:67;12672:2;12667:3;12608:67;:::i;:::-;12601:74;;12684:93;12773:3;12684:93;:::i;:::-;12802:2;12797:3;12793:12;12786:19;;12591:220;;;:::o;12817:366::-;12959:3;12980:67;13044:2;13039:3;12980:67;:::i;:::-;12973:74;;13056:93;13145:3;13056:93;:::i;:::-;13174:2;13169:3;13165:12;13158:19;;12963:220;;;:::o;13189:366::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13335:220;;;:::o;13561:366::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13707:220;;;:::o;13933:366::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;14079:220;;;:::o;14305:366::-;14447:3;14468:67;14532:2;14527:3;14468:67;:::i;:::-;14461:74;;14544:93;14633:3;14544:93;:::i;:::-;14662:2;14657:3;14653:12;14646:19;;14451:220;;;:::o;14677:366::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14823:220;;;:::o;15049:366::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15195:220;;;:::o;15421:366::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15567:220;;;:::o;15793:366::-;15935:3;15956:67;16020:2;16015:3;15956:67;:::i;:::-;15949:74;;16032:93;16121:3;16032:93;:::i;:::-;16150:2;16145:3;16141:12;16134:19;;15939:220;;;:::o;16165:366::-;16307:3;16328:67;16392:2;16387:3;16328:67;:::i;:::-;16321:74;;16404:93;16493:3;16404:93;:::i;:::-;16522:2;16517:3;16513:12;16506:19;;16311:220;;;:::o;16537:366::-;16679:3;16700:67;16764:2;16759:3;16700:67;:::i;:::-;16693:74;;16776:93;16865:3;16776:93;:::i;:::-;16894:2;16889:3;16885:12;16878:19;;16683:220;;;:::o;16909:366::-;17051:3;17072:67;17136:2;17131:3;17072:67;:::i;:::-;17065:74;;17148:93;17237:3;17148:93;:::i;:::-;17266:2;17261:3;17257:12;17250:19;;17055:220;;;:::o;17281:366::-;17423:3;17444:67;17508:2;17503:3;17444:67;:::i;:::-;17437:74;;17520:93;17609:3;17520:93;:::i;:::-;17638:2;17633:3;17629:12;17622:19;;17427:220;;;:::o;17653:366::-;17795:3;17816:67;17880:2;17875:3;17816:67;:::i;:::-;17809:74;;17892:93;17981:3;17892:93;:::i;:::-;18010:2;18005:3;18001:12;17994:19;;17799:220;;;:::o;18025:108::-;18102:24;18120:5;18102:24;:::i;:::-;18097:3;18090:37;18080:53;;:::o;18139:118::-;18226:24;18244:5;18226:24;:::i;:::-;18221:3;18214:37;18204:53;;:::o;18263:435::-;18443:3;18465:95;18556:3;18547:6;18465:95;:::i;:::-;18458:102;;18577:95;18668:3;18659:6;18577:95;:::i;:::-;18570:102;;18689:3;18682:10;;18447:251;;;;;:::o;18704:222::-;18797:4;18835:2;18824:9;18820:18;18812:26;;18848:71;18916:1;18905:9;18901:17;18892:6;18848:71;:::i;:::-;18802:124;;;;:::o;18932:640::-;19127:4;19165:3;19154:9;19150:19;19142:27;;19179:71;19247:1;19236:9;19232:17;19223:6;19179:71;:::i;:::-;19260:72;19328:2;19317:9;19313:18;19304:6;19260:72;:::i;:::-;19342;19410:2;19399:9;19395:18;19386:6;19342:72;:::i;:::-;19461:9;19455:4;19451:20;19446:2;19435:9;19431:18;19424:48;19489:76;19560:4;19551:6;19489:76;:::i;:::-;19481:84;;19132:440;;;;;;;:::o;19578:373::-;19721:4;19759:2;19748:9;19744:18;19736:26;;19808:9;19802:4;19798:20;19794:1;19783:9;19779:17;19772:47;19836:108;19939:4;19930:6;19836:108;:::i;:::-;19828:116;;19726:225;;;;:::o;19957:210::-;20044:4;20082:2;20071:9;20067:18;20059:26;;20095:65;20157:1;20146:9;20142:17;20133:6;20095:65;:::i;:::-;20049:118;;;;:::o;20173:313::-;20286:4;20324:2;20313:9;20309:18;20301:26;;20373:9;20367:4;20363:20;20359:1;20348:9;20344:17;20337:47;20401:78;20474:4;20465:6;20401:78;:::i;:::-;20393:86;;20291:195;;;;:::o;20492:419::-;20658:4;20696:2;20685:9;20681:18;20673:26;;20745:9;20739:4;20735:20;20731:1;20720:9;20716:17;20709:47;20773:131;20899:4;20773:131;:::i;:::-;20765:139;;20663:248;;;:::o;20917:419::-;21083:4;21121:2;21110:9;21106:18;21098:26;;21170:9;21164:4;21160:20;21156:1;21145:9;21141:17;21134:47;21198:131;21324:4;21198:131;:::i;:::-;21190:139;;21088:248;;;:::o;21342:419::-;21508:4;21546:2;21535:9;21531:18;21523:26;;21595:9;21589:4;21585:20;21581:1;21570:9;21566:17;21559:47;21623:131;21749:4;21623:131;:::i;:::-;21615:139;;21513:248;;;:::o;21767:419::-;21933:4;21971:2;21960:9;21956:18;21948:26;;22020:9;22014:4;22010:20;22006:1;21995:9;21991:17;21984:47;22048:131;22174:4;22048:131;:::i;:::-;22040:139;;21938:248;;;:::o;22192:419::-;22358:4;22396:2;22385:9;22381:18;22373:26;;22445:9;22439:4;22435:20;22431:1;22420:9;22416:17;22409:47;22473:131;22599:4;22473:131;:::i;:::-;22465:139;;22363:248;;;:::o;22617:419::-;22783:4;22821:2;22810:9;22806:18;22798:26;;22870:9;22864:4;22860:20;22856:1;22845:9;22841:17;22834:47;22898:131;23024:4;22898:131;:::i;:::-;22890:139;;22788:248;;;:::o;23042:419::-;23208:4;23246:2;23235:9;23231:18;23223:26;;23295:9;23289:4;23285:20;23281:1;23270:9;23266:17;23259:47;23323:131;23449:4;23323:131;:::i;:::-;23315:139;;23213:248;;;:::o;23467:419::-;23633:4;23671:2;23660:9;23656:18;23648:26;;23720:9;23714:4;23710:20;23706:1;23695:9;23691:17;23684:47;23748:131;23874:4;23748:131;:::i;:::-;23740:139;;23638:248;;;:::o;23892:419::-;24058:4;24096:2;24085:9;24081:18;24073:26;;24145:9;24139:4;24135:20;24131:1;24120:9;24116:17;24109:47;24173:131;24299:4;24173:131;:::i;:::-;24165:139;;24063:248;;;:::o;24317:419::-;24483:4;24521:2;24510:9;24506:18;24498:26;;24570:9;24564:4;24560:20;24556:1;24545:9;24541:17;24534:47;24598:131;24724:4;24598:131;:::i;:::-;24590:139;;24488:248;;;:::o;24742:419::-;24908:4;24946:2;24935:9;24931:18;24923:26;;24995:9;24989:4;24985:20;24981:1;24970:9;24966:17;24959:47;25023:131;25149:4;25023:131;:::i;:::-;25015:139;;24913:248;;;:::o;25167:419::-;25333:4;25371:2;25360:9;25356:18;25348:26;;25420:9;25414:4;25410:20;25406:1;25395:9;25391:17;25384:47;25448:131;25574:4;25448:131;:::i;:::-;25440:139;;25338:248;;;:::o;25592:419::-;25758:4;25796:2;25785:9;25781:18;25773:26;;25845:9;25839:4;25835:20;25831:1;25820:9;25816:17;25809:47;25873:131;25999:4;25873:131;:::i;:::-;25865:139;;25763:248;;;:::o;26017:419::-;26183:4;26221:2;26210:9;26206:18;26198:26;;26270:9;26264:4;26260:20;26256:1;26245:9;26241:17;26234:47;26298:131;26424:4;26298:131;:::i;:::-;26290:139;;26188:248;;;:::o;26442:419::-;26608:4;26646:2;26635:9;26631:18;26623:26;;26695:9;26689:4;26685:20;26681:1;26670:9;26666:17;26659:47;26723:131;26849:4;26723:131;:::i;:::-;26715:139;;26613:248;;;:::o;26867:419::-;27033:4;27071:2;27060:9;27056:18;27048:26;;27120:9;27114:4;27110:20;27106:1;27095:9;27091:17;27084:47;27148:131;27274:4;27148:131;:::i;:::-;27140:139;;27038:248;;;:::o;27292:419::-;27458:4;27496:2;27485:9;27481:18;27473:26;;27545:9;27539:4;27535:20;27531:1;27520:9;27516:17;27509:47;27573:131;27699:4;27573:131;:::i;:::-;27565:139;;27463:248;;;:::o;27717:419::-;27883:4;27921:2;27910:9;27906:18;27898:26;;27970:9;27964:4;27960:20;27956:1;27945:9;27941:17;27934:47;27998:131;28124:4;27998:131;:::i;:::-;27990:139;;27888:248;;;:::o;28142:419::-;28308:4;28346:2;28335:9;28331:18;28323:26;;28395:9;28389:4;28385:20;28381:1;28370:9;28366:17;28359:47;28423:131;28549:4;28423:131;:::i;:::-;28415:139;;28313:248;;;:::o;28567:419::-;28733:4;28771:2;28760:9;28756:18;28748:26;;28820:9;28814:4;28810:20;28806:1;28795:9;28791:17;28784:47;28848:131;28974:4;28848:131;:::i;:::-;28840:139;;28738:248;;;:::o;28992:419::-;29158:4;29196:2;29185:9;29181:18;29173:26;;29245:9;29239:4;29235:20;29231:1;29220:9;29216:17;29209:47;29273:131;29399:4;29273:131;:::i;:::-;29265:139;;29163:248;;;:::o;29417:419::-;29583:4;29621:2;29610:9;29606:18;29598:26;;29670:9;29664:4;29660:20;29656:1;29645:9;29641:17;29634:47;29698:131;29824:4;29698:131;:::i;:::-;29690:139;;29588:248;;;:::o;29842:419::-;30008:4;30046:2;30035:9;30031:18;30023:26;;30095:9;30089:4;30085:20;30081:1;30070:9;30066:17;30059:47;30123:131;30249:4;30123:131;:::i;:::-;30115:139;;30013:248;;;:::o;30267:222::-;30360:4;30398:2;30387:9;30383:18;30375:26;;30411:71;30479:1;30468:9;30464:17;30455:6;30411:71;:::i;:::-;30365:124;;;;:::o;30495:129::-;30529:6;30556:20;;:::i;:::-;30546:30;;30585:33;30613:4;30605:6;30585:33;:::i;:::-;30536:88;;;:::o;30630:75::-;30663:6;30696:2;30690:9;30680:19;;30670:35;:::o;30711:307::-;30772:4;30862:18;30854:6;30851:30;30848:2;;;30884:18;;:::i;:::-;30848:2;30922:29;30944:6;30922:29;:::i;:::-;30914:37;;31006:4;31000;30996:15;30988:23;;30777:241;;;:::o;31024:308::-;31086:4;31176:18;31168:6;31165:30;31162:2;;;31198:18;;:::i;:::-;31162:2;31236:29;31258:6;31236:29;:::i;:::-;31228:37;;31320:4;31314;31310:15;31302:23;;31091:241;;;:::o;31338:132::-;31405:4;31428:3;31420:11;;31458:4;31453:3;31449:14;31441:22;;31410:60;;;:::o;31476:114::-;31543:6;31577:5;31571:12;31561:22;;31550:40;;;:::o;31596:98::-;31647:6;31681:5;31675:12;31665:22;;31654:40;;;:::o;31700:99::-;31752:6;31786:5;31780:12;31770:22;;31759:40;;;:::o;31805:113::-;31875:4;31907;31902:3;31898:14;31890:22;;31880:38;;;:::o;31924:184::-;32023:11;32057:6;32052:3;32045:19;32097:4;32092:3;32088:14;32073:29;;32035:73;;;;:::o;32114:168::-;32197:11;32231:6;32226:3;32219:19;32271:4;32266:3;32262:14;32247:29;;32209:73;;;;:::o;32288:169::-;32372:11;32406:6;32401:3;32394:19;32446:4;32441:3;32437:14;32422:29;;32384:73;;;;:::o;32463:148::-;32565:11;32602:3;32587:18;;32577:34;;;;:::o;32617:305::-;32657:3;32676:20;32694:1;32676:20;:::i;:::-;32671:25;;32710:20;32728:1;32710:20;:::i;:::-;32705:25;;32864:1;32796:66;32792:74;32789:1;32786:81;32783:2;;;32870:18;;:::i;:::-;32783:2;32914:1;32911;32907:9;32900:16;;32661:261;;;;:::o;32928:185::-;32968:1;32985:20;33003:1;32985:20;:::i;:::-;32980:25;;33019:20;33037:1;33019:20;:::i;:::-;33014:25;;33058:1;33048:2;;33063:18;;:::i;:::-;33048:2;33105:1;33102;33098:9;33093:14;;32970:143;;;;:::o;33119:348::-;33159:7;33182:20;33200:1;33182:20;:::i;:::-;33177:25;;33216:20;33234:1;33216:20;:::i;:::-;33211:25;;33404:1;33336:66;33332:74;33329:1;33326:81;33321:1;33314:9;33307:17;33303:105;33300:2;;;33411:18;;:::i;:::-;33300:2;33459:1;33456;33452:9;33441:20;;33167:300;;;;:::o;33473:191::-;33513:4;33533:20;33551:1;33533:20;:::i;:::-;33528:25;;33567:20;33585:1;33567:20;:::i;:::-;33562:25;;33606:1;33603;33600:8;33597:2;;;33611:18;;:::i;:::-;33597:2;33656:1;33653;33649:9;33641:17;;33518:146;;;;:::o;33670:96::-;33707:7;33736:24;33754:5;33736:24;:::i;:::-;33725:35;;33715:51;;;:::o;33772:90::-;33806:7;33849:5;33842:13;33835:21;33824:32;;33814:48;;;:::o;33868:149::-;33904:7;33944:66;33937:5;33933:78;33922:89;;33912:105;;;:::o;34023:126::-;34060:7;34100:42;34093:5;34089:54;34078:65;;34068:81;;;:::o;34155:77::-;34192:7;34221:5;34210:16;;34200:32;;;:::o;34238:154::-;34322:6;34317:3;34312;34299:30;34384:1;34375:6;34370:3;34366:16;34359:27;34289:103;;;:::o;34398:307::-;34466:1;34476:113;34490:6;34487:1;34484:13;34476:113;;;34575:1;34570:3;34566:11;34560:18;34556:1;34551:3;34547:11;34540:39;34512:2;34509:1;34505:10;34500:15;;34476:113;;;34607:6;34604:1;34601:13;34598:2;;;34687:1;34678:6;34673:3;34669:16;34662:27;34598:2;34447:258;;;;:::o;34711:171::-;34750:3;34773:24;34791:5;34773:24;:::i;:::-;34764:33;;34819:4;34812:5;34809:15;34806:2;;;34827:18;;:::i;:::-;34806:2;34874:1;34867:5;34863:13;34856:20;;34754:128;;;:::o;34888:320::-;34932:6;34969:1;34963:4;34959:12;34949:22;;35016:1;35010:4;35006:12;35037:18;35027:2;;35093:4;35085:6;35081:17;35071:27;;35027:2;35155;35147:6;35144:14;35124:18;35121:38;35118:2;;;35174:18;;:::i;:::-;35118:2;34939:269;;;;:::o;35214:281::-;35297:27;35319:4;35297:27;:::i;:::-;35289:6;35285:40;35427:6;35415:10;35412:22;35391:18;35379:10;35376:34;35373:62;35370:2;;;35438:18;;:::i;:::-;35370:2;35478:10;35474:2;35467:22;35257:238;;;:::o;35501:233::-;35540:3;35563:24;35581:5;35563:24;:::i;:::-;35554:33;;35609:66;35602:5;35599:77;35596:2;;;35679:18;;:::i;:::-;35596:2;35726:1;35719:5;35715:13;35708:20;;35544:190;;;:::o;35740:176::-;35772:1;35789:20;35807:1;35789:20;:::i;:::-;35784:25;;35823:20;35841:1;35823:20;:::i;:::-;35818:25;;35862:1;35852:2;;35867:18;;:::i;:::-;35852:2;35908:1;35905;35901:9;35896:14;;35774:142;;;;:::o;35922:180::-;35970:77;35967:1;35960:88;36067:4;36064:1;36057:15;36091:4;36088:1;36081:15;36108:180;36156:77;36153:1;36146:88;36253:4;36250:1;36243:15;36277:4;36274:1;36267:15;36294:180;36342:77;36339:1;36332:88;36439:4;36436:1;36429:15;36463:4;36460:1;36453:15;36480:180;36528:77;36525:1;36518:88;36625:4;36622:1;36615:15;36649:4;36646:1;36639:15;36666:180;36714:77;36711:1;36704:88;36811:4;36808:1;36801:15;36835:4;36832:1;36825:15;36852:180;36900:77;36897:1;36890:88;36997:4;36994:1;36987:15;37021:4;37018:1;37011:15;37038:117;37147:1;37144;37137:12;37161:117;37270:1;37267;37260:12;37284:117;37393:1;37390;37383:12;37407:117;37516:1;37513;37506:12;37530:102;37571:6;37622:2;37618:7;37613:2;37606:5;37602:14;37598:28;37588:38;;37578:54;;;:::o;37638:166::-;37778:18;37774:1;37766:6;37762:14;37755:42;37744:60;:::o;37810:230::-;37950:34;37946:1;37938:6;37934:14;37927:58;38019:13;38014:2;38006:6;38002:15;37995:38;37916:124;:::o;38046:237::-;38186:34;38182:1;38174:6;38170:14;38163:58;38255:20;38250:2;38242:6;38238:15;38231:45;38152:131;:::o;38289:225::-;38429:34;38425:1;38417:6;38413:14;38406:58;38498:8;38493:2;38485:6;38481:15;38474:33;38395:119;:::o;38520:178::-;38660:30;38656:1;38648:6;38644:14;38637:54;38626:72;:::o;38704:223::-;38844:34;38840:1;38832:6;38828:14;38821:58;38913:6;38908:2;38900:6;38896:15;38889:31;38810:117;:::o;38933:175::-;39073:27;39069:1;39061:6;39057:14;39050:51;39039:69;:::o;39114:180::-;39254:32;39250:1;39242:6;39238:14;39231:56;39220:74;:::o;39300:231::-;39440:34;39436:1;39428:6;39424:14;39417:58;39509:14;39504:2;39496:6;39492:15;39485:39;39406:125;:::o;39537:243::-;39677:34;39673:1;39665:6;39661:14;39654:58;39746:26;39741:2;39733:6;39729:15;39722:51;39643:137;:::o;39786:229::-;39926:34;39922:1;39914:6;39910:14;39903:58;39995:12;39990:2;39982:6;39978:15;39971:37;39892:123;:::o;40021:228::-;40161:34;40157:1;40149:6;40145:14;40138:58;40230:11;40225:2;40217:6;40213:15;40206:36;40127:122;:::o;40255:161::-;40395:13;40391:1;40383:6;40379:14;40372:37;40361:55;:::o;40422:182::-;40562:34;40558:1;40550:6;40546:14;40539:58;40528:76;:::o;40610:231::-;40750:34;40746:1;40738:6;40734:14;40727:58;40819:14;40814:2;40806:6;40802:15;40795:39;40716:125;:::o;40847:182::-;40987:34;40983:1;40975:6;40971:14;40964:58;40953:76;:::o;41035:228::-;41175:34;41171:1;41163:6;41159:14;41152:58;41244:11;41239:2;41231:6;41227:15;41220:36;41141:122;:::o;41269:234::-;41409:34;41405:1;41397:6;41393:14;41386:58;41478:17;41473:2;41465:6;41461:15;41454:42;41375:128;:::o;41509:181::-;41649:33;41645:1;41637:6;41633:14;41626:57;41615:75;:::o;41696:220::-;41836:34;41832:1;41824:6;41820:14;41813:58;41905:3;41900:2;41892:6;41888:15;41881:28;41802:114;:::o;41922:236::-;42062:34;42058:1;42050:6;42046:14;42039:58;42131:19;42126:2;42118:6;42114:15;42107:44;42028:130;:::o;42164:163::-;42304:15;42300:1;42292:6;42288:14;42281:39;42270:57;:::o;42333:231::-;42473:34;42469:1;42461:6;42457:14;42450:58;42542:14;42537:2;42529:6;42525:15;42518:39;42439:125;:::o;42570:122::-;42643:24;42661:5;42643:24;:::i;:::-;42636:5;42633:35;42623:2;;42682:1;42679;42672:12;42623:2;42613:79;:::o;42698:116::-;42768:21;42783:5;42768:21;:::i;:::-;42761:5;42758:32;42748:2;;42804:1;42801;42794:12;42748:2;42738:76;:::o;42820:120::-;42892:23;42909:5;42892:23;:::i;:::-;42885:5;42882:34;42872:2;;42930:1;42927;42920:12;42872:2;42862:78;:::o;42946:122::-;43019:24;43037:5;43019:24;:::i;:::-;43012:5;43009:35;42999:2;;43058:1;43055;43048:12;42999:2;42989:79;:::o
Swarm Source
ipfs://8aec22e9e5c9ef2ed43cf42f533602dc5567382d513748c036b7d1ae6386d786
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.