ERC-721
Overview
Max Total Supply
1,109 BokiGirls
Holders
895
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BokiGirlsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BokiGirls
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-07 */ // SPDX-License-Identifier: SimPL-2.0 /** *Submitted for verification at Etherscan.io on 2022-06-01 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: goblintownai-contract.sol pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } //newerc.sol pragma solidity ^0.8.0; contract BokiGirls is ERC721A, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public baseURI; uint256 public cost = 0.003 ether; uint256 public maxSupply = 5000; uint256 public maxFree = 5000; uint256 public maxperAddressFreeLimit = 1; uint256 public maxperAddressPublicMint = 10; mapping(address => uint256) public addressFreeMintedBalance; constructor() ERC721A("BokiGirls", "BokiGirls") { setBaseURI(""); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintFree(uint256 _mintAmount) public payable nonReentrant{ uint256 s = totalSupply(); uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender]; require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "Max BokiGirls per address exceeded"); require(_mintAmount > 0, "Cant mint 0 BokiGirls" ); require(s + _mintAmount <= maxFree, "Cant exceed BokiGirls supply" ); for (uint256 i = 0; i < _mintAmount; ++i) { addressFreeMintedBalance[msg.sender]++; } _safeMint(msg.sender, _mintAmount); delete s; delete addressFreeMintedCount; } function mint(uint256 _mintAmount) public payable nonReentrant { uint256 s = totalSupply(); require(_mintAmount > 0, "Cant mint 0 BokiGirls"); require(_mintAmount <= maxperAddressPublicMint, "Cant mint more BokiGirls" ); require(s + _mintAmount <= maxSupply, "Cant exceed BokiGirls supply"); require(msg.value >= cost * _mintAmount); _safeMint(msg.sender, _mintAmount); delete s; } function gift(uint256[] calldata quantity, address[] calldata recipient) external onlyOwner { require( quantity.length == recipient.length, "Provide quantities and recipients" ); uint256 totalQuantity = 0; uint256 s = totalSupply(); for (uint256 i = 0; i < quantity.length; ++i) { totalQuantity += quantity[i]; } require(s + totalQuantity <= maxSupply, "Too many"); delete totalQuantity; for (uint256 i = 0; i < recipient.length; ++i) { _safeMint(recipient[i], quantity[i]); } delete s; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxSupply(uint256 _newMaxSupply) public onlyOwner { require(_newMaxSupply <= maxSupply, "Cannot increase max supply"); maxSupply = _newMaxSupply; } function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner { maxFree = _newMaxFreeSupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner { maxperAddressPublicMint = _amount; } function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{ maxperAddressFreeLimit = _amount; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function withdrawAny(uint256 _amount) public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: _amount}(""); require(success); } }
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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052660aa87bee538000600a55611388600b55611388600c556001600d55600a600e553480156200003257600080fd5b506040518060400160405280600981526020017f426f6b694769726c7300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f426f6b694769726c7300000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620002df565b508060029080519060200190620000d0929190620002df565b505050620000f3620000e76200013c60201b60201c565b6200014460201b60201c565b6000600760146101000a81548160ff021916908315150217905550600160088190555062000136604051806020016040528060008152506200020a60201b60201c565b62000477565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021a6200013c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000240620002b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000299576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029090620003b6565b60405180910390fd5b8060099080519060200190620002b1929190620002df565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002ed90620003e9565b90600052602060002090601f0160209004810192826200031157600085556200035d565b82601f106200032c57805160ff19168380011785556200035d565b828001600101855582156200035d579182015b828111156200035c5782518255916020019190600101906200033f565b5b5090506200036c919062000370565b5090565b5b808211156200038b57600081600090555060010162000371565b5090565b60006200039e602083620003d8565b9150620003ab826200044e565b602082019050919050565b60006020820190508181036000830152620003d1816200038f565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200040257607f821691505b602082108114156200041957620004186200041f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614c5880620004876000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107bb578063d5abeb01146107f8578063dc4e66b514610823578063e985e9c51461084c578063f2fde38b1461088957610225565b8063a0712d6814610708578063a22cb46514610724578063a41467331461074d578063b88d4fde14610769578063bde12d731461079257610225565b806377ad99f0116100f257806377ad99f0146106305780637c6b172d1461064c5780638da5cb5b1461068957806395d89b41146106b457806396ea3a47146106df57610225565b80636352211e146105745780636c0360eb146105b157806370a08231146105dc578063715018a61461061957610225565b80632f745c59116101b1578063485a68a311610175578063485a68a31461048d5780634f6ccce7146104b857806355f804b3146104f557806356569a1d1461051e5780635c975abb1461054957610225565b80632f745c59146103c957806334c8fd75146104065780633ccfd60b1461043157806342842e0e1461043b57806344a0d68a1461046457610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063228025e81461037757806323b872dd146103a057610225565b806301ffc9a71461022a578063022d67dd1461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906135e4565b6108b2565b60405161025e9190613c26565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613687565b6109fc565b005b34801561029c57600080fd5b506102a5610a82565b6040516102b29190613c41565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613687565b610b14565b6040516102ef9190613bbf565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613523565b610b99565b005b34801561032d57600080fd5b50610336610cb2565b6040516103439190613fc3565b60405180910390f35b34801561035857600080fd5b50610361610cb8565b60405161036e9190613fc3565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613687565b610cc1565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061340d565b610d8c565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613523565b610d9c565b6040516103fd9190613fc3565b60405180910390f35b34801561041257600080fd5b5061041b610f8e565b6040516104289190613fc3565b60405180910390f35b610439610f94565b005b34801561044757600080fd5b50610462600480360381019061045d919061340d565b611089565b005b34801561047057600080fd5b5061048b60048036038101906104869190613687565b6110a9565b005b34801561049957600080fd5b506104a261112f565b6040516104af9190613fc3565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613687565b611135565b6040516104ec9190613fc3565b60405180910390f35b34801561050157600080fd5b5061051c6004803603810190610517919061363e565b611188565b005b34801561052a57600080fd5b5061053361121e565b6040516105409190613fc3565b60405180910390f35b34801561055557600080fd5b5061055e611224565b60405161056b9190613c26565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613687565b61123b565b6040516105a89190613bbf565b60405180910390f35b3480156105bd57600080fd5b506105c6611251565b6040516105d39190613c41565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906133a0565b6112df565b6040516106109190613fc3565b60405180910390f35b34801561062557600080fd5b5061062e6113c8565b005b61064a60048036038101906106459190613687565b611450565b005b34801561065857600080fd5b50610673600480360381019061066e91906133a0565b611546565b6040516106809190613fc3565b60405180910390f35b34801561069557600080fd5b5061069e61155e565b6040516106ab9190613bbf565b60405180910390f35b3480156106c057600080fd5b506106c9611588565b6040516106d69190613c41565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613563565b61161a565b005b610722600480360381019061071d9190613687565b6117fc565b005b34801561073057600080fd5b5061074b600480360381019061074691906134e3565b611962565b005b61076760048036038101906107629190613687565b611ae3565b005b34801561077557600080fd5b50610790600480360381019061078b9190613460565b611cf5565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613687565b611d51565b005b3480156107c757600080fd5b506107e260048036038101906107dd9190613687565b611dd7565b6040516107ef9190613c41565b60405180910390f35b34801561080457600080fd5b5061080d611e7e565b60405161081a9190613fc3565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613687565b611e84565b005b34801561085857600080fd5b50610873600480360381019061086e91906133cd565b611f0a565b6040516108809190613c26565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906133a0565b611f9e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f557506109f482612096565b5b9050919050565b610a04612100565b73ffffffffffffffffffffffffffffffffffffffff16610a2261155e565b73ffffffffffffffffffffffffffffffffffffffff1614610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90613e23565b60405180910390fd5b80600e8190555050565b606060018054610a919061427e565b80601f0160208091040260200160405190810160405280929190818152602001828054610abd9061427e565b8015610b0a5780601f10610adf57610100808354040283529160200191610b0a565b820191906000526020600020905b815481529060010190602001808311610aed57829003601f168201915b5050505050905090565b6000610b1f82612108565b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590613fa3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba48261123b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90613ea3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c34612100565b73ffffffffffffffffffffffffffffffffffffffff161480610c635750610c6281610c5d612100565b611f0a565b5b610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990613d83565b60405180910390fd5b610cad838383612115565b505050565b600a5481565b60008054905090565b610cc9612100565b73ffffffffffffffffffffffffffffffffffffffff16610ce761155e565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490613e23565b60405180910390fd5b600b54811115610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613da3565b60405180910390fd5b80600b8190555050565b610d978383836121c7565b505050565b6000610da7836112df565b8210610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90613c63565b60405180910390fd5b6000610df2610cb8565b905060008060005b83811015610f4c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eec57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f3e5786841415610f35578195505050505050610f88565b83806001019450505b508080600101915050610dfa565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613f23565b60405180910390fd5b92915050565b600e5481565b610f9c612100565b73ffffffffffffffffffffffffffffffffffffffff16610fba61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790613e23565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103690613baa565b60006040518083038185875af1925050503d8060008114611073576040519150601f19603f3d011682016040523d82523d6000602084013e611078565b606091505b505090508061108657600080fd5b50565b6110a483838360405180602001604052806000815250611cf5565b505050565b6110b1612100565b73ffffffffffffffffffffffffffffffffffffffff166110cf61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90613e23565b60405180910390fd5b80600a8190555050565b600c5481565b600061113f610cb8565b8210611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790613d03565b60405180910390fd5b819050919050565b611190612100565b73ffffffffffffffffffffffffffffffffffffffff166111ae61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613e23565b60405180910390fd5b806009908051906020019061121a9291906130ce565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b600061124682612707565b600001519050919050565b6009805461125e9061427e565b80601f016020809104026020016040519081016040528092919081815260200182805461128a9061427e565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613dc3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113d0612100565b73ffffffffffffffffffffffffffffffffffffffff166113ee61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613e23565b60405180910390fd5b61144e60006128a1565b565b611458612100565b73ffffffffffffffffffffffffffffffffffffffff1661147661155e565b73ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613e23565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516114f290613baa565b60006040518083038185875af1925050503d806000811461152f576040519150601f19603f3d011682016040523d82523d6000602084013e611534565b606091505b505090508061154257600080fd5b5050565b600f6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115979061427e565b80601f01602080910402602001604051908101604052809291908181526020018280546115c39061427e565b80156116105780601f106115e557610100808354040283529160200191611610565b820191906000526020600020905b8154815290600101906020018083116115f357829003601f168201915b5050505050905090565b611622612100565b73ffffffffffffffffffffffffffffffffffffffff1661164061155e565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90613e23565b60405180910390fd5b8181905084849050146116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590613d63565b60405180910390fd5b6000806116e9610cb8565b905060005b868690508110156117315786868281811061170c5761170b6143e8565b5b905060200201358361171e91906140b3565b92508061172a906142e1565b90506116ee565b50600b54828261174191906140b3565b1115611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990613e03565b60405180910390fd5b6000915060005b848490508110156117ef576117de8585838181106117aa576117a96143e8565b5b90506020020160208101906117bf91906133a0565b8888848181106117d2576117d16143e8565b5b90506020020135612967565b806117e8906142e1565b9050611789565b5060009050505050505050565b60026008541415611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613f43565b60405180910390fd5b60026008819055506000611854610cb8565b905060008211611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613d43565b60405180910390fd5b600e548211156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d590613f83565b60405180910390fd5b600b5482826118ed91906140b3565b111561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613e43565b60405180910390fd5b81600a5461193c919061413a565b34101561194857600080fd5b6119523383612967565b6000905050600160088190555050565b61196a612100565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90613e63565b60405180910390fd5b80600660006119e5612100565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a92612100565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad79190613c26565b60405180910390a35050565b60026008541415611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613f43565b60405180910390fd5b60026008819055506000611b3b610cb8565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611b9091906140b3565b1115611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890613c83565b60405180910390fd5b60008311611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90613d43565b60405180910390fd5b600c548383611c2391906140b3565b1115611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90613e43565b60405180910390fd5b60005b83811015611cd557600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611cbf906142e1565b919050555080611cce906142e1565b9050611c67565b50611ce03384612967565b60009150600090505050600160088190555050565b611d008484846121c7565b611d0c84848484612985565b611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290613ec3565b60405180910390fd5b50505050565b611d59612100565b73ffffffffffffffffffffffffffffffffffffffff16611d7761155e565b73ffffffffffffffffffffffffffffffffffffffff1614611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc490613e23565b60405180910390fd5b80600c8190555050565b6060611de282612108565b611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613ca3565b60405180910390fd5b6000611e2b612b1c565b90506000815111611e4b5760405180602001604052806000815250611e76565b80611e5584612bae565b604051602001611e66929190613b7b565b6040516020818303038152906040525b915050919050565b600b5481565b611e8c612100565b73ffffffffffffffffffffffffffffffffffffffff16611eaa61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef790613e23565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fa6612100565b73ffffffffffffffffffffffffffffffffffffffff16611fc461155e565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190613e23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208190613cc3565b60405180910390fd5b612093816128a1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121d282612707565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f9612100565b73ffffffffffffffffffffffffffffffffffffffff161480612255575061221e612100565b73ffffffffffffffffffffffffffffffffffffffff1661223d84610b14565b73ffffffffffffffffffffffffffffffffffffffff16145b806122715750612270826000015161226b612100565b611f0a565b5b9050806122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa90613e83565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90613de3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613d23565b60405180910390fd5b6123a28585856001612d0f565b6123b26000848460000151612115565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612697576125f681612108565b156126965782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127008585856001612d15565b5050505050565b61270f613154565b61271882612108565b612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90613ce3565b60405180910390fd5b60008290505b60008110612860576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461285157809250505061289c565b5080806001900391505061275d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289390613f63565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612981828260405180602001604052806000815250612d1b565b5050565b60006129a68473ffffffffffffffffffffffffffffffffffffffff16612d2d565b15612b0f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129cf612100565b8786866040518563ffffffff1660e01b81526004016129f19493929190613bda565b602060405180830381600087803b158015612a0b57600080fd5b505af1925050508015612a3c57506040513d601f19601f82011682018060405250810190612a399190613611565b60015b612abf573d8060008114612a6c576040519150601f19603f3d011682016040523d82523d6000602084013e612a71565b606091505b50600081511415612ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aae90613ec3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b14565b600190505b949350505050565b606060098054612b2b9061427e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b579061427e565b8015612ba45780601f10612b7957610100808354040283529160200191612ba4565b820191906000526020600020905b815481529060010190602001808311612b8757829003601f168201915b5050505050905090565b60606000821415612bf6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d0a565b600082905060005b60008214612c28578080612c11906142e1565b915050600a82612c219190614109565b9150612bfe565b60008167ffffffffffffffff811115612c4457612c43614417565b5b6040519080825280601f01601f191660200182016040528015612c765781602001600182028036833780820191505090505b5090505b60008514612d0357600182612c8f9190614194565b9150600a85612c9e919061432a565b6030612caa91906140b3565b60f81b818381518110612cc057612cbf6143e8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cfc9190614109565b9450612c7a565b8093505050505b919050565b50505050565b50505050565b612d288383836001612d50565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbd90613ee3565b60405180910390fd5b6000841415612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190613f03565b60405180910390fd5b612e176000868387612d0f565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156130b157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561309c5761305c6000888488612985565b61309b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309290613ec3565b60405180910390fd5b5b81806001019250508080600101915050612fe5565b5080600081905550506130c76000868387612d15565b5050505050565b8280546130da9061427e565b90600052602060002090601f0160209004810192826130fc5760008555613143565b82601f1061311557805160ff1916838001178555613143565b82800160010185558215613143579182015b82811115613142578251825591602001919060010190613127565b5b509050613150919061318e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131a757600081600090555060010161318f565b5090565b60006131be6131b984614003565b613fde565b9050828152602081018484840111156131da576131d9614455565b5b6131e584828561423c565b509392505050565b60006132006131fb84614034565b613fde565b90508281526020810184848401111561321c5761321b614455565b5b61322784828561423c565b509392505050565b60008135905061323e81614bc6565b92915050565b60008083601f84011261325a5761325961444b565b5b8235905067ffffffffffffffff81111561327757613276614446565b5b60208301915083602082028301111561329357613292614450565b5b9250929050565b60008083601f8401126132b0576132af61444b565b5b8235905067ffffffffffffffff8111156132cd576132cc614446565b5b6020830191508360208202830111156132e9576132e8614450565b5b9250929050565b6000813590506132ff81614bdd565b92915050565b60008135905061331481614bf4565b92915050565b60008151905061332981614bf4565b92915050565b600082601f8301126133445761334361444b565b5b81356133548482602086016131ab565b91505092915050565b600082601f8301126133725761337161444b565b5b81356133828482602086016131ed565b91505092915050565b60008135905061339a81614c0b565b92915050565b6000602082840312156133b6576133b561445f565b5b60006133c48482850161322f565b91505092915050565b600080604083850312156133e4576133e361445f565b5b60006133f28582860161322f565b92505060206134038582860161322f565b9150509250929050565b6000806000606084860312156134265761342561445f565b5b60006134348682870161322f565b93505060206134458682870161322f565b92505060406134568682870161338b565b9150509250925092565b6000806000806080858703121561347a5761347961445f565b5b60006134888782880161322f565b94505060206134998782880161322f565b93505060406134aa8782880161338b565b925050606085013567ffffffffffffffff8111156134cb576134ca61445a565b5b6134d78782880161332f565b91505092959194509250565b600080604083850312156134fa576134f961445f565b5b60006135088582860161322f565b9250506020613519858286016132f0565b9150509250929050565b6000806040838503121561353a5761353961445f565b5b60006135488582860161322f565b92505060206135598582860161338b565b9150509250929050565b6000806000806040858703121561357d5761357c61445f565b5b600085013567ffffffffffffffff81111561359b5761359a61445a565b5b6135a78782880161329a565b9450945050602085013567ffffffffffffffff8111156135ca576135c961445a565b5b6135d687828801613244565b925092505092959194509250565b6000602082840312156135fa576135f961445f565b5b600061360884828501613305565b91505092915050565b6000602082840312156136275761362661445f565b5b60006136358482850161331a565b91505092915050565b6000602082840312156136545761365361445f565b5b600082013567ffffffffffffffff8111156136725761367161445a565b5b61367e8482850161335d565b91505092915050565b60006020828403121561369d5761369c61445f565b5b60006136ab8482850161338b565b91505092915050565b6136bd816141c8565b82525050565b6136cc816141da565b82525050565b60006136dd82614065565b6136e7818561407b565b93506136f781856020860161424b565b61370081614464565b840191505092915050565b600061371682614070565b6137208185614097565b935061373081856020860161424b565b61373981614464565b840191505092915050565b600061374f82614070565b61375981856140a8565b935061376981856020860161424b565b80840191505092915050565b6000613782602283614097565b915061378d82614475565b604082019050919050565b60006137a5602283614097565b91506137b0826144c4565b604082019050919050565b60006137c8602183614097565b91506137d382614513565b604082019050919050565b60006137eb602683614097565b91506137f682614562565b604082019050919050565b600061380e602a83614097565b9150613819826145b1565b604082019050919050565b6000613831602383614097565b915061383c82614600565b604082019050919050565b6000613854602583614097565b915061385f8261464f565b604082019050919050565b6000613877601583614097565b91506138828261469e565b602082019050919050565b600061389a602183614097565b91506138a5826146c7565b604082019050919050565b60006138bd603983614097565b91506138c882614716565b604082019050919050565b60006138e0601a83614097565b91506138eb82614765565b602082019050919050565b6000613903602b83614097565b915061390e8261478e565b604082019050919050565b6000613926602683614097565b9150613931826147dd565b604082019050919050565b60006139496005836140a8565b91506139548261482c565b600582019050919050565b600061396c600883614097565b915061397782614855565b602082019050919050565b600061398f602083614097565b915061399a8261487e565b602082019050919050565b60006139b2601c83614097565b91506139bd826148a7565b602082019050919050565b60006139d5601a83614097565b91506139e0826148d0565b602082019050919050565b60006139f8603283614097565b9150613a03826148f9565b604082019050919050565b6000613a1b602283614097565b9150613a2682614948565b604082019050919050565b6000613a3e60008361408c565b9150613a4982614997565b600082019050919050565b6000613a61603383614097565b9150613a6c8261499a565b604082019050919050565b6000613a84602183614097565b9150613a8f826149e9565b604082019050919050565b6000613aa7602883614097565b9150613ab282614a38565b604082019050919050565b6000613aca602e83614097565b9150613ad582614a87565b604082019050919050565b6000613aed601f83614097565b9150613af882614ad6565b602082019050919050565b6000613b10602f83614097565b9150613b1b82614aff565b604082019050919050565b6000613b33601883614097565b9150613b3e82614b4e565b602082019050919050565b6000613b56602d83614097565b9150613b6182614b77565b604082019050919050565b613b7581614232565b82525050565b6000613b878285613744565b9150613b938284613744565b9150613b9e8261393c565b91508190509392505050565b6000613bb582613a31565b9150819050919050565b6000602082019050613bd460008301846136b4565b92915050565b6000608082019050613bef60008301876136b4565b613bfc60208301866136b4565b613c096040830185613b6c565b8181036060830152613c1b81846136d2565b905095945050505050565b6000602082019050613c3b60008301846136c3565b92915050565b60006020820190508181036000830152613c5b818461370b565b905092915050565b60006020820190508181036000830152613c7c81613775565b9050919050565b60006020820190508181036000830152613c9c81613798565b9050919050565b60006020820190508181036000830152613cbc816137bb565b9050919050565b60006020820190508181036000830152613cdc816137de565b9050919050565b60006020820190508181036000830152613cfc81613801565b9050919050565b60006020820190508181036000830152613d1c81613824565b9050919050565b60006020820190508181036000830152613d3c81613847565b9050919050565b60006020820190508181036000830152613d5c8161386a565b9050919050565b60006020820190508181036000830152613d7c8161388d565b9050919050565b60006020820190508181036000830152613d9c816138b0565b9050919050565b60006020820190508181036000830152613dbc816138d3565b9050919050565b60006020820190508181036000830152613ddc816138f6565b9050919050565b60006020820190508181036000830152613dfc81613919565b9050919050565b60006020820190508181036000830152613e1c8161395f565b9050919050565b60006020820190508181036000830152613e3c81613982565b9050919050565b60006020820190508181036000830152613e5c816139a5565b9050919050565b60006020820190508181036000830152613e7c816139c8565b9050919050565b60006020820190508181036000830152613e9c816139eb565b9050919050565b60006020820190508181036000830152613ebc81613a0e565b9050919050565b60006020820190508181036000830152613edc81613a54565b9050919050565b60006020820190508181036000830152613efc81613a77565b9050919050565b60006020820190508181036000830152613f1c81613a9a565b9050919050565b60006020820190508181036000830152613f3c81613abd565b9050919050565b60006020820190508181036000830152613f5c81613ae0565b9050919050565b60006020820190508181036000830152613f7c81613b03565b9050919050565b60006020820190508181036000830152613f9c81613b26565b9050919050565b60006020820190508181036000830152613fbc81613b49565b9050919050565b6000602082019050613fd86000830184613b6c565b92915050565b6000613fe8613ff9565b9050613ff482826142b0565b919050565b6000604051905090565b600067ffffffffffffffff82111561401e5761401d614417565b5b61402782614464565b9050602081019050919050565b600067ffffffffffffffff82111561404f5761404e614417565b5b61405882614464565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140be82614232565b91506140c983614232565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140fe576140fd61435b565b5b828201905092915050565b600061411482614232565b915061411f83614232565b92508261412f5761412e61438a565b5b828204905092915050565b600061414582614232565b915061415083614232565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141895761418861435b565b5b828202905092915050565b600061419f82614232565b91506141aa83614232565b9250828210156141bd576141bc61435b565b5b828203905092915050565b60006141d382614212565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561426957808201518184015260208101905061424e565b83811115614278576000848401525b50505050565b6000600282049050600182168061429657607f821691505b602082108114156142aa576142a96143b9565b5b50919050565b6142b982614464565b810181811067ffffffffffffffff821117156142d8576142d7614417565b5b80604052505050565b60006142ec82614232565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431f5761431e61435b565b5b600182019050919050565b600061433582614232565b915061434083614232565b9250826143505761434f61438a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820426f6b694769726c732070657220616464726573732065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e74203020426f6b694769726c730000000000000000000000600082015250565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e742065786365656420426f6b694769726c7320737570706c7900000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f43616e74206d696e74206d6f726520426f6b694769726c730000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614bcf816141c8565b8114614bda57600080fd5b50565b614be6816141da565b8114614bf157600080fd5b50565b614bfd816141e6565b8114614c0857600080fd5b50565b614c1481614232565b8114614c1f57600080fd5b5056fea2646970667358221220dc423831bdc61aacb77839dc47545f97f49d69a1a7f54593a5b8b031e6d0580664736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107bb578063d5abeb01146107f8578063dc4e66b514610823578063e985e9c51461084c578063f2fde38b1461088957610225565b8063a0712d6814610708578063a22cb46514610724578063a41467331461074d578063b88d4fde14610769578063bde12d731461079257610225565b806377ad99f0116100f257806377ad99f0146106305780637c6b172d1461064c5780638da5cb5b1461068957806395d89b41146106b457806396ea3a47146106df57610225565b80636352211e146105745780636c0360eb146105b157806370a08231146105dc578063715018a61461061957610225565b80632f745c59116101b1578063485a68a311610175578063485a68a31461048d5780634f6ccce7146104b857806355f804b3146104f557806356569a1d1461051e5780635c975abb1461054957610225565b80632f745c59146103c957806334c8fd75146104065780633ccfd60b1461043157806342842e0e1461043b57806344a0d68a1461046457610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063228025e81461037757806323b872dd146103a057610225565b806301ffc9a71461022a578063022d67dd1461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906135e4565b6108b2565b60405161025e9190613c26565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613687565b6109fc565b005b34801561029c57600080fd5b506102a5610a82565b6040516102b29190613c41565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613687565b610b14565b6040516102ef9190613bbf565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613523565b610b99565b005b34801561032d57600080fd5b50610336610cb2565b6040516103439190613fc3565b60405180910390f35b34801561035857600080fd5b50610361610cb8565b60405161036e9190613fc3565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613687565b610cc1565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061340d565b610d8c565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613523565b610d9c565b6040516103fd9190613fc3565b60405180910390f35b34801561041257600080fd5b5061041b610f8e565b6040516104289190613fc3565b60405180910390f35b610439610f94565b005b34801561044757600080fd5b50610462600480360381019061045d919061340d565b611089565b005b34801561047057600080fd5b5061048b60048036038101906104869190613687565b6110a9565b005b34801561049957600080fd5b506104a261112f565b6040516104af9190613fc3565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613687565b611135565b6040516104ec9190613fc3565b60405180910390f35b34801561050157600080fd5b5061051c6004803603810190610517919061363e565b611188565b005b34801561052a57600080fd5b5061053361121e565b6040516105409190613fc3565b60405180910390f35b34801561055557600080fd5b5061055e611224565b60405161056b9190613c26565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613687565b61123b565b6040516105a89190613bbf565b60405180910390f35b3480156105bd57600080fd5b506105c6611251565b6040516105d39190613c41565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906133a0565b6112df565b6040516106109190613fc3565b60405180910390f35b34801561062557600080fd5b5061062e6113c8565b005b61064a60048036038101906106459190613687565b611450565b005b34801561065857600080fd5b50610673600480360381019061066e91906133a0565b611546565b6040516106809190613fc3565b60405180910390f35b34801561069557600080fd5b5061069e61155e565b6040516106ab9190613bbf565b60405180910390f35b3480156106c057600080fd5b506106c9611588565b6040516106d69190613c41565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613563565b61161a565b005b610722600480360381019061071d9190613687565b6117fc565b005b34801561073057600080fd5b5061074b600480360381019061074691906134e3565b611962565b005b61076760048036038101906107629190613687565b611ae3565b005b34801561077557600080fd5b50610790600480360381019061078b9190613460565b611cf5565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613687565b611d51565b005b3480156107c757600080fd5b506107e260048036038101906107dd9190613687565b611dd7565b6040516107ef9190613c41565b60405180910390f35b34801561080457600080fd5b5061080d611e7e565b60405161081a9190613fc3565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613687565b611e84565b005b34801561085857600080fd5b50610873600480360381019061086e91906133cd565b611f0a565b6040516108809190613c26565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906133a0565b611f9e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f557506109f482612096565b5b9050919050565b610a04612100565b73ffffffffffffffffffffffffffffffffffffffff16610a2261155e565b73ffffffffffffffffffffffffffffffffffffffff1614610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90613e23565b60405180910390fd5b80600e8190555050565b606060018054610a919061427e565b80601f0160208091040260200160405190810160405280929190818152602001828054610abd9061427e565b8015610b0a5780601f10610adf57610100808354040283529160200191610b0a565b820191906000526020600020905b815481529060010190602001808311610aed57829003601f168201915b5050505050905090565b6000610b1f82612108565b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590613fa3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba48261123b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90613ea3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c34612100565b73ffffffffffffffffffffffffffffffffffffffff161480610c635750610c6281610c5d612100565b611f0a565b5b610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990613d83565b60405180910390fd5b610cad838383612115565b505050565b600a5481565b60008054905090565b610cc9612100565b73ffffffffffffffffffffffffffffffffffffffff16610ce761155e565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490613e23565b60405180910390fd5b600b54811115610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613da3565b60405180910390fd5b80600b8190555050565b610d978383836121c7565b505050565b6000610da7836112df565b8210610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90613c63565b60405180910390fd5b6000610df2610cb8565b905060008060005b83811015610f4c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eec57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f3e5786841415610f35578195505050505050610f88565b83806001019450505b508080600101915050610dfa565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613f23565b60405180910390fd5b92915050565b600e5481565b610f9c612100565b73ffffffffffffffffffffffffffffffffffffffff16610fba61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790613e23565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103690613baa565b60006040518083038185875af1925050503d8060008114611073576040519150601f19603f3d011682016040523d82523d6000602084013e611078565b606091505b505090508061108657600080fd5b50565b6110a483838360405180602001604052806000815250611cf5565b505050565b6110b1612100565b73ffffffffffffffffffffffffffffffffffffffff166110cf61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90613e23565b60405180910390fd5b80600a8190555050565b600c5481565b600061113f610cb8565b8210611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790613d03565b60405180910390fd5b819050919050565b611190612100565b73ffffffffffffffffffffffffffffffffffffffff166111ae61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613e23565b60405180910390fd5b806009908051906020019061121a9291906130ce565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b600061124682612707565b600001519050919050565b6009805461125e9061427e565b80601f016020809104026020016040519081016040528092919081815260200182805461128a9061427e565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613dc3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113d0612100565b73ffffffffffffffffffffffffffffffffffffffff166113ee61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613e23565b60405180910390fd5b61144e60006128a1565b565b611458612100565b73ffffffffffffffffffffffffffffffffffffffff1661147661155e565b73ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613e23565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516114f290613baa565b60006040518083038185875af1925050503d806000811461152f576040519150601f19603f3d011682016040523d82523d6000602084013e611534565b606091505b505090508061154257600080fd5b5050565b600f6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115979061427e565b80601f01602080910402602001604051908101604052809291908181526020018280546115c39061427e565b80156116105780601f106115e557610100808354040283529160200191611610565b820191906000526020600020905b8154815290600101906020018083116115f357829003601f168201915b5050505050905090565b611622612100565b73ffffffffffffffffffffffffffffffffffffffff1661164061155e565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90613e23565b60405180910390fd5b8181905084849050146116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590613d63565b60405180910390fd5b6000806116e9610cb8565b905060005b868690508110156117315786868281811061170c5761170b6143e8565b5b905060200201358361171e91906140b3565b92508061172a906142e1565b90506116ee565b50600b54828261174191906140b3565b1115611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990613e03565b60405180910390fd5b6000915060005b848490508110156117ef576117de8585838181106117aa576117a96143e8565b5b90506020020160208101906117bf91906133a0565b8888848181106117d2576117d16143e8565b5b90506020020135612967565b806117e8906142e1565b9050611789565b5060009050505050505050565b60026008541415611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613f43565b60405180910390fd5b60026008819055506000611854610cb8565b905060008211611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613d43565b60405180910390fd5b600e548211156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d590613f83565b60405180910390fd5b600b5482826118ed91906140b3565b111561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613e43565b60405180910390fd5b81600a5461193c919061413a565b34101561194857600080fd5b6119523383612967565b6000905050600160088190555050565b61196a612100565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90613e63565b60405180910390fd5b80600660006119e5612100565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a92612100565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad79190613c26565b60405180910390a35050565b60026008541415611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613f43565b60405180910390fd5b60026008819055506000611b3b610cb8565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611b9091906140b3565b1115611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890613c83565b60405180910390fd5b60008311611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90613d43565b60405180910390fd5b600c548383611c2391906140b3565b1115611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90613e43565b60405180910390fd5b60005b83811015611cd557600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611cbf906142e1565b919050555080611cce906142e1565b9050611c67565b50611ce03384612967565b60009150600090505050600160088190555050565b611d008484846121c7565b611d0c84848484612985565b611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290613ec3565b60405180910390fd5b50505050565b611d59612100565b73ffffffffffffffffffffffffffffffffffffffff16611d7761155e565b73ffffffffffffffffffffffffffffffffffffffff1614611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc490613e23565b60405180910390fd5b80600c8190555050565b6060611de282612108565b611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613ca3565b60405180910390fd5b6000611e2b612b1c565b90506000815111611e4b5760405180602001604052806000815250611e76565b80611e5584612bae565b604051602001611e66929190613b7b565b6040516020818303038152906040525b915050919050565b600b5481565b611e8c612100565b73ffffffffffffffffffffffffffffffffffffffff16611eaa61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef790613e23565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fa6612100565b73ffffffffffffffffffffffffffffffffffffffff16611fc461155e565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190613e23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208190613cc3565b60405180910390fd5b612093816128a1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121d282612707565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f9612100565b73ffffffffffffffffffffffffffffffffffffffff161480612255575061221e612100565b73ffffffffffffffffffffffffffffffffffffffff1661223d84610b14565b73ffffffffffffffffffffffffffffffffffffffff16145b806122715750612270826000015161226b612100565b611f0a565b5b9050806122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa90613e83565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90613de3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613d23565b60405180910390fd5b6123a28585856001612d0f565b6123b26000848460000151612115565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612697576125f681612108565b156126965782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127008585856001612d15565b5050505050565b61270f613154565b61271882612108565b612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90613ce3565b60405180910390fd5b60008290505b60008110612860576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461285157809250505061289c565b5080806001900391505061275d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289390613f63565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612981828260405180602001604052806000815250612d1b565b5050565b60006129a68473ffffffffffffffffffffffffffffffffffffffff16612d2d565b15612b0f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129cf612100565b8786866040518563ffffffff1660e01b81526004016129f19493929190613bda565b602060405180830381600087803b158015612a0b57600080fd5b505af1925050508015612a3c57506040513d601f19601f82011682018060405250810190612a399190613611565b60015b612abf573d8060008114612a6c576040519150601f19603f3d011682016040523d82523d6000602084013e612a71565b606091505b50600081511415612ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aae90613ec3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b14565b600190505b949350505050565b606060098054612b2b9061427e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b579061427e565b8015612ba45780601f10612b7957610100808354040283529160200191612ba4565b820191906000526020600020905b815481529060010190602001808311612b8757829003601f168201915b5050505050905090565b60606000821415612bf6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d0a565b600082905060005b60008214612c28578080612c11906142e1565b915050600a82612c219190614109565b9150612bfe565b60008167ffffffffffffffff811115612c4457612c43614417565b5b6040519080825280601f01601f191660200182016040528015612c765781602001600182028036833780820191505090505b5090505b60008514612d0357600182612c8f9190614194565b9150600a85612c9e919061432a565b6030612caa91906140b3565b60f81b818381518110612cc057612cbf6143e8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cfc9190614109565b9450612c7a565b8093505050505b919050565b50505050565b50505050565b612d288383836001612d50565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbd90613ee3565b60405180910390fd5b6000841415612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190613f03565b60405180910390fd5b612e176000868387612d0f565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156130b157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561309c5761305c6000888488612985565b61309b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309290613ec3565b60405180910390fd5b5b81806001019250508080600101915050612fe5565b5080600081905550506130c76000868387612d15565b5050505050565b8280546130da9061427e565b90600052602060002090601f0160209004810192826130fc5760008555613143565b82601f1061311557805160ff1916838001178555613143565b82800160010185558215613143579182015b82811115613142578251825591602001919060010190613127565b5b509050613150919061318e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131a757600081600090555060010161318f565b5090565b60006131be6131b984614003565b613fde565b9050828152602081018484840111156131da576131d9614455565b5b6131e584828561423c565b509392505050565b60006132006131fb84614034565b613fde565b90508281526020810184848401111561321c5761321b614455565b5b61322784828561423c565b509392505050565b60008135905061323e81614bc6565b92915050565b60008083601f84011261325a5761325961444b565b5b8235905067ffffffffffffffff81111561327757613276614446565b5b60208301915083602082028301111561329357613292614450565b5b9250929050565b60008083601f8401126132b0576132af61444b565b5b8235905067ffffffffffffffff8111156132cd576132cc614446565b5b6020830191508360208202830111156132e9576132e8614450565b5b9250929050565b6000813590506132ff81614bdd565b92915050565b60008135905061331481614bf4565b92915050565b60008151905061332981614bf4565b92915050565b600082601f8301126133445761334361444b565b5b81356133548482602086016131ab565b91505092915050565b600082601f8301126133725761337161444b565b5b81356133828482602086016131ed565b91505092915050565b60008135905061339a81614c0b565b92915050565b6000602082840312156133b6576133b561445f565b5b60006133c48482850161322f565b91505092915050565b600080604083850312156133e4576133e361445f565b5b60006133f28582860161322f565b92505060206134038582860161322f565b9150509250929050565b6000806000606084860312156134265761342561445f565b5b60006134348682870161322f565b93505060206134458682870161322f565b92505060406134568682870161338b565b9150509250925092565b6000806000806080858703121561347a5761347961445f565b5b60006134888782880161322f565b94505060206134998782880161322f565b93505060406134aa8782880161338b565b925050606085013567ffffffffffffffff8111156134cb576134ca61445a565b5b6134d78782880161332f565b91505092959194509250565b600080604083850312156134fa576134f961445f565b5b60006135088582860161322f565b9250506020613519858286016132f0565b9150509250929050565b6000806040838503121561353a5761353961445f565b5b60006135488582860161322f565b92505060206135598582860161338b565b9150509250929050565b6000806000806040858703121561357d5761357c61445f565b5b600085013567ffffffffffffffff81111561359b5761359a61445a565b5b6135a78782880161329a565b9450945050602085013567ffffffffffffffff8111156135ca576135c961445a565b5b6135d687828801613244565b925092505092959194509250565b6000602082840312156135fa576135f961445f565b5b600061360884828501613305565b91505092915050565b6000602082840312156136275761362661445f565b5b60006136358482850161331a565b91505092915050565b6000602082840312156136545761365361445f565b5b600082013567ffffffffffffffff8111156136725761367161445a565b5b61367e8482850161335d565b91505092915050565b60006020828403121561369d5761369c61445f565b5b60006136ab8482850161338b565b91505092915050565b6136bd816141c8565b82525050565b6136cc816141da565b82525050565b60006136dd82614065565b6136e7818561407b565b93506136f781856020860161424b565b61370081614464565b840191505092915050565b600061371682614070565b6137208185614097565b935061373081856020860161424b565b61373981614464565b840191505092915050565b600061374f82614070565b61375981856140a8565b935061376981856020860161424b565b80840191505092915050565b6000613782602283614097565b915061378d82614475565b604082019050919050565b60006137a5602283614097565b91506137b0826144c4565b604082019050919050565b60006137c8602183614097565b91506137d382614513565b604082019050919050565b60006137eb602683614097565b91506137f682614562565b604082019050919050565b600061380e602a83614097565b9150613819826145b1565b604082019050919050565b6000613831602383614097565b915061383c82614600565b604082019050919050565b6000613854602583614097565b915061385f8261464f565b604082019050919050565b6000613877601583614097565b91506138828261469e565b602082019050919050565b600061389a602183614097565b91506138a5826146c7565b604082019050919050565b60006138bd603983614097565b91506138c882614716565b604082019050919050565b60006138e0601a83614097565b91506138eb82614765565b602082019050919050565b6000613903602b83614097565b915061390e8261478e565b604082019050919050565b6000613926602683614097565b9150613931826147dd565b604082019050919050565b60006139496005836140a8565b91506139548261482c565b600582019050919050565b600061396c600883614097565b915061397782614855565b602082019050919050565b600061398f602083614097565b915061399a8261487e565b602082019050919050565b60006139b2601c83614097565b91506139bd826148a7565b602082019050919050565b60006139d5601a83614097565b91506139e0826148d0565b602082019050919050565b60006139f8603283614097565b9150613a03826148f9565b604082019050919050565b6000613a1b602283614097565b9150613a2682614948565b604082019050919050565b6000613a3e60008361408c565b9150613a4982614997565b600082019050919050565b6000613a61603383614097565b9150613a6c8261499a565b604082019050919050565b6000613a84602183614097565b9150613a8f826149e9565b604082019050919050565b6000613aa7602883614097565b9150613ab282614a38565b604082019050919050565b6000613aca602e83614097565b9150613ad582614a87565b604082019050919050565b6000613aed601f83614097565b9150613af882614ad6565b602082019050919050565b6000613b10602f83614097565b9150613b1b82614aff565b604082019050919050565b6000613b33601883614097565b9150613b3e82614b4e565b602082019050919050565b6000613b56602d83614097565b9150613b6182614b77565b604082019050919050565b613b7581614232565b82525050565b6000613b878285613744565b9150613b938284613744565b9150613b9e8261393c565b91508190509392505050565b6000613bb582613a31565b9150819050919050565b6000602082019050613bd460008301846136b4565b92915050565b6000608082019050613bef60008301876136b4565b613bfc60208301866136b4565b613c096040830185613b6c565b8181036060830152613c1b81846136d2565b905095945050505050565b6000602082019050613c3b60008301846136c3565b92915050565b60006020820190508181036000830152613c5b818461370b565b905092915050565b60006020820190508181036000830152613c7c81613775565b9050919050565b60006020820190508181036000830152613c9c81613798565b9050919050565b60006020820190508181036000830152613cbc816137bb565b9050919050565b60006020820190508181036000830152613cdc816137de565b9050919050565b60006020820190508181036000830152613cfc81613801565b9050919050565b60006020820190508181036000830152613d1c81613824565b9050919050565b60006020820190508181036000830152613d3c81613847565b9050919050565b60006020820190508181036000830152613d5c8161386a565b9050919050565b60006020820190508181036000830152613d7c8161388d565b9050919050565b60006020820190508181036000830152613d9c816138b0565b9050919050565b60006020820190508181036000830152613dbc816138d3565b9050919050565b60006020820190508181036000830152613ddc816138f6565b9050919050565b60006020820190508181036000830152613dfc81613919565b9050919050565b60006020820190508181036000830152613e1c8161395f565b9050919050565b60006020820190508181036000830152613e3c81613982565b9050919050565b60006020820190508181036000830152613e5c816139a5565b9050919050565b60006020820190508181036000830152613e7c816139c8565b9050919050565b60006020820190508181036000830152613e9c816139eb565b9050919050565b60006020820190508181036000830152613ebc81613a0e565b9050919050565b60006020820190508181036000830152613edc81613a54565b9050919050565b60006020820190508181036000830152613efc81613a77565b9050919050565b60006020820190508181036000830152613f1c81613a9a565b9050919050565b60006020820190508181036000830152613f3c81613abd565b9050919050565b60006020820190508181036000830152613f5c81613ae0565b9050919050565b60006020820190508181036000830152613f7c81613b03565b9050919050565b60006020820190508181036000830152613f9c81613b26565b9050919050565b60006020820190508181036000830152613fbc81613b49565b9050919050565b6000602082019050613fd86000830184613b6c565b92915050565b6000613fe8613ff9565b9050613ff482826142b0565b919050565b6000604051905090565b600067ffffffffffffffff82111561401e5761401d614417565b5b61402782614464565b9050602081019050919050565b600067ffffffffffffffff82111561404f5761404e614417565b5b61405882614464565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140be82614232565b91506140c983614232565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140fe576140fd61435b565b5b828201905092915050565b600061411482614232565b915061411f83614232565b92508261412f5761412e61438a565b5b828204905092915050565b600061414582614232565b915061415083614232565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141895761418861435b565b5b828202905092915050565b600061419f82614232565b91506141aa83614232565b9250828210156141bd576141bc61435b565b5b828203905092915050565b60006141d382614212565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561426957808201518184015260208101905061424e565b83811115614278576000848401525b50505050565b6000600282049050600182168061429657607f821691505b602082108114156142aa576142a96143b9565b5b50919050565b6142b982614464565b810181811067ffffffffffffffff821117156142d8576142d7614417565b5b80604052505050565b60006142ec82614232565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431f5761431e61435b565b5b600182019050919050565b600061433582614232565b915061434083614232565b9250826143505761434f61438a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820426f6b694769726c732070657220616464726573732065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e74203020426f6b694769726c730000000000000000000000600082015250565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e742065786365656420426f6b694769726c7320737570706c7900000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f43616e74206d696e74206d6f726520426f6b694769726c730000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614bcf816141c8565b8114614bda57600080fd5b50565b614be6816141da565b8114614bf157600080fd5b50565b614bfd816141e6565b8114614c0857600080fd5b50565b614c1481614232565b8114614c1f57600080fd5b5056fea2646970667358221220dc423831bdc61aacb77839dc47545f97f49d69a1a7f54593a5b8b031e6d0580664736f6c63430008070033
Deployed Bytecode Sourcemap
45269:4010:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24946:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48650:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26832:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28394:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27915:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45402:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23203:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48218:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29270:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23867:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45564:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48904:192;;;:::i;:::-;;29503:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48124:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45480:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23380:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48538:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45516:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39120:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26641:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45374:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25382:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41937:94;;;;;;;;;;;;;:::i;:::-;;49104:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45616:59;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41286:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27001:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46992:667;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46535:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28680:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45891:634;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29751:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48407:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47667:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45442:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48780:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29039:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42186:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24946:372;25048:4;25100:25;25085:40;;;:11;:40;;;;:105;;;;25157:33;25142:48;;;:11;:48;;;;25085:105;:172;;;;25222:35;25207:50;;;:11;:50;;;;25085:172;:225;;;;25274:36;25298:11;25274:23;:36::i;:::-;25085:225;25065:245;;24946:372;;;:::o;48650:122::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48757:7:::1;48731:23;:33;;;;48650:122:::0;:::o;26832:100::-;26886:13;26919:5;26912:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26832:100;:::o;28394:214::-;28462:7;28490:16;28498:7;28490;:16::i;:::-;28482:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28576:15;:24;28592:7;28576:24;;;;;;;;;;;;;;;;;;;;;28569:31;;28394:214;;;:::o;27915:413::-;27988:13;28004:24;28020:7;28004:15;:24::i;:::-;27988:40;;28053:5;28047:11;;:2;:11;;;;28039:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28148:5;28132:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28157:37;28174:5;28181:12;:10;:12::i;:::-;28157:16;:37::i;:::-;28132:62;28110:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28292:28;28301:2;28305:7;28314:5;28292:8;:28::i;:::-;27977:351;27915:413;;:::o;45402:33::-;;;;:::o;23203:100::-;23256:7;23283:12;;23276:19;;23203:100;:::o;48218:182::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48316:9:::1;;48299:13;:26;;48291:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48379:13;48367:9;:25;;;;48218:182:::0;:::o;29270:162::-;29396:28;29406:4;29412:2;29416:7;29396:9;:28::i;:::-;29270:162;;;:::o;23867:1007::-;23956:7;23992:16;24002:5;23992:9;:16::i;:::-;23984:5;:24;23976:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24058:22;24083:13;:11;:13::i;:::-;24058:38;;24107:19;24137:25;24326:9;24321:466;24341:14;24337:1;:18;24321:466;;;24381:31;24415:11;:14;24427:1;24415:14;;;;;;;;;;;24381:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24478:1;24452:28;;:9;:14;;;:28;;;24448:111;;24525:9;:14;;;24505:34;;24448:111;24602:5;24581:26;;:17;:26;;;24577:195;;;24651:5;24636:11;:20;24632:85;;;24692:1;24685:8;;;;;;;;;24632:85;24739:13;;;;;;;24577:195;24362:425;24357:3;;;;;;;24321:466;;;;24810:56;;;;;;;;;;:::i;:::-;;;;;;;;23867:1007;;;;;:::o;45564:43::-;;;;:::o;48904:192::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48961:12:::1;48987:10;48979:24;;49025:21;48979:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48960:101;;;49080:7;49072:16;;;::::0;::::1;;48949:147;48904:192::o:0;29503:177::-;29633:39;29650:4;29656:2;29660:7;29633:39;;;;;;;;;;;;:16;:39::i;:::-;29503:177;;;:::o;48124:86::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48194:8:::1;48187:4;:15;;;;48124:86:::0;:::o;45480:29::-;;;;:::o;23380:187::-;23447:7;23483:13;:11;:13::i;:::-;23475:5;:21;23467:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23554:5;23547:12;;23380:187;;;:::o;48538:104::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48623:11:::1;48613:7;:21;;;;;;;;;;;;:::i;:::-;;48538:104:::0;:::o;45516:41::-;;;;:::o;39120:86::-;39167:4;39191:7;;;;;;;;;;;39184:14;;39120:86;:::o;26641:124::-;26705:7;26732:20;26744:7;26732:11;:20::i;:::-;:25;;;26725:32;;26641:124;;;:::o;45374:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25382:221::-;25446:7;25491:1;25474:19;;:5;:19;;;;25466:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25567:12;:19;25580:5;25567:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25559:36;;25552:43;;25382:221;;;:::o;41937:94::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42002:21:::1;42020:1;42002:9;:21::i;:::-;41937:94::o:0;49104:172::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49179:12:::1;49205:10;49197:24;;49229:7;49197:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49178:63;;;49260:7;49252:16;;;::::0;::::1;;49167:109;49104:172:::0;:::o;45616:59::-;;;;;;;;;;;;;;;;;:::o;41286:87::-;41332:7;41359:6;;;;;;;;;;;41352:13;;41286:87;:::o;27001:104::-;27057:13;27090:7;27083:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27001:104;:::o;46992:667::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47159:9:::1;;:16;;47140:8;;:15;;:35;47118:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;47247:21;47283:9:::0;47295:13:::1;:11;:13::i;:::-;47283:25;;47324:9;47319:101;47343:8;;:15;;47339:1;:19;47319:101;;;47397:8;;47406:1;47397:11;;;;;;;:::i;:::-;;;;;;;;47380:28;;;;;:::i;:::-;;;47360:3;;;;:::i;:::-;;;47319:101;;;;47459:9;;47442:13;47438:1;:17;;;;:::i;:::-;:30;;47430:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;47492:20;;;47528:9;47523:110;47547:9;;:16;;47543:1;:20;47523:110;;;47585:36;47595:9;;47605:1;47595:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47609:8;;47618:1;47609:11;;;;;;;:::i;:::-;;;;;;;;47585:9;:36::i;:::-;47565:3;;;;:::i;:::-;;;47523:110;;;;47643:8;;;47107:552;;46992:667:::0;;;;:::o;46535:449::-;44281:1;44877:7;;:19;;44869:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44281:1;45010:7;:18;;;;46609:9:::1;46621:13;:11;:13::i;:::-;46609:25;;46667:1;46653:11;:15;46645:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;46728:23;;46713:11;:38;;46705:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;46819:9;;46804:11;46800:1;:15;;;;:::i;:::-;:28;;46792:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46900:11;46893:4;;:18;;;;:::i;:::-;46880:9;:31;;46872:40;;;::::0;::::1;;46923:34;46933:10;46945:11;46923:9;:34::i;:::-;46968:8;;;46598:386;44237:1:::0;45189:7;:22;;;;46535:449;:::o;28680:288::-;28787:12;:10;:12::i;:::-;28775:24;;:8;:24;;;;28767:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28888:8;28843:18;:32;28862:12;:10;:12::i;:::-;28843:32;;;;;;;;;;;;;;;:42;28876:8;28843:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28941:8;28912:48;;28927:12;:10;:12::i;:::-;28912:48;;;28951:8;28912:48;;;;;;:::i;:::-;;;;;;;;28680:288;;:::o;45891:634::-;44281:1;44877:7;;:19;;44869:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44281:1;45010:7;:18;;;;45962:9:::1;45974:13;:11;:13::i;:::-;45962:25;;45998:30;46031:24;:36;46056:10;46031:36;;;;;;;;;;;;;;;;45998:69;;46126:22;;46111:11;46086:22;:36;;;;:::i;:::-;:62;;46078:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;46214:1;46200:11;:15;46192:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;46274:7;;46259:11;46255:1;:15;;;;:::i;:::-;:26;;46247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46325:9;46320:103;46344:11;46340:1;:15;46320:103;;;46377:24;:36;46402:10;46377:36;;;;;;;;;;;;;;;;:38;;;;;;;;;:::i;:::-;;;;;;46357:3;;;;:::i;:::-;;;46320:103;;;;46433:34;46443:10;46455:11;46433:9;:34::i;:::-;46472:8;;;46491:29;;;45957:568;;44237:1:::0;45189:7;:22;;;;45891:634;:::o;29751:355::-;29910:28;29920:4;29926:2;29930:7;29910:9;:28::i;:::-;29971:48;29994:4;30000:2;30004:7;30013:5;29971:22;:48::i;:::-;29949:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;29751:355;;;;:::o;48407:123::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48505:17:::1;48495:7;:27;;;;48407:123:::0;:::o;47667:445::-;47785:13;47824:16;47832:7;47824;:16::i;:::-;47816:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47889:28;47920:10;:8;:10::i;:::-;47889:41;;47992:1;47967:14;47961:28;:32;:143;;;;;;;;;;;;;;;;;48037:14;48053:18;:7;:16;:18::i;:::-;48020:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47961:143;47941:163;;;47667:445;;;:::o;45442:31::-;;;;:::o;48780:118::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48883:7:::1;48858:22;:32;;;;48780:118:::0;:::o;29039:164::-;29136:4;29160:18;:25;29179:5;29160:25;;;;;;;;;;;;;;;:35;29186:8;29160:35;;;;;;;;;;;;;;;;;;;;;;;;;29153:42;;29039:164;;;;:::o;42186:229::-;41517:12;:10;:12::i;:::-;41506:23;;:7;:5;:7::i;:::-;:23;;;41498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42309:1:::1;42289:22;;:8;:22;;;;42267:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;42388:19;42398:8;42388:9;:19::i;:::-;42186:229:::0;:::o;14466:157::-;14551:4;14590:25;14575:40;;;:11;:40;;;;14568:47;;14466:157;;;:::o;2913:98::-;2966:7;2993:10;2986:17;;2913:98;:::o;30361:111::-;30418:4;30452:12;;30442:7;:22;30435:29;;30361:111;;;:::o;35281:196::-;35423:2;35396:15;:24;35412:7;35396:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35461:7;35457:2;35441:28;;35450:5;35441:28;;;;;;;;;;;;35281:196;;;:::o;33161:2002::-;33276:35;33314:20;33326:7;33314:11;:20::i;:::-;33276:58;;33347:22;33389:13;:18;;;33373:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33448:12;:10;:12::i;:::-;33424:36;;:20;33436:7;33424:11;:20::i;:::-;:36;;;33373:87;:154;;;;33477:50;33494:13;:18;;;33514:12;:10;:12::i;:::-;33477:16;:50::i;:::-;33373:154;33347:181;;33549:17;33541:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33664:4;33642:26;;:13;:18;;;:26;;;33634:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33744:1;33730:16;;:2;:16;;;;33722:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33801:43;33823:4;33829:2;33833:7;33842:1;33801:21;:43::i;:::-;33909:49;33926:1;33930:7;33939:13;:18;;;33909:8;:49::i;:::-;34284:1;34254:12;:18;34267:4;34254:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34328:1;34300:12;:16;34313:2;34300:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34374:2;34346:11;:20;34358:7;34346:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;34436:15;34391:11;:20;34403:7;34391:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;34704:19;34736:1;34726:7;:11;34704:33;;34797:1;34756:43;;:11;:24;34768:11;34756:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34752:295;;;34824:20;34832:11;34824:7;:20::i;:::-;34820:212;;;34901:13;:18;;;34869:11;:24;34881:11;34869:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;34984:13;:28;;;34942:11;:24;34954:11;34942:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;34820:212;34752:295;34229:829;35094:7;35090:2;35075:27;;35084:4;35075:27;;;;;;;;;;;;35113:42;35134:4;35140:2;35144:7;35153:1;35113:20;:42::i;:::-;33265:1898;;33161:2002;;;:::o;26042:537::-;26103:21;;:::i;:::-;26145:16;26153:7;26145;:16::i;:::-;26137:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26251:12;26266:7;26251:22;;26246:245;26283:1;26275:4;:9;26246:245;;26313:31;26347:11;:17;26359:4;26347:17;;;;;;;;;;;26313:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26413:1;26387:28;;:9;:14;;;:28;;;26383:93;;26447:9;26440:16;;;;;;26383:93;26294:197;26286:6;;;;;;;;26246:245;;;;26514:57;;;;;;;;;;:::i;:::-;;;;;;;;26042:537;;;;:::o;42423:173::-;42479:16;42498:6;;;;;;;;;;;42479:25;;42524:8;42515:6;;:17;;;;;;;;;;;;;;;;;;42579:8;42548:40;;42569:8;42548:40;;;;;;;;;;;;42468:128;42423:173;:::o;30480:104::-;30549:27;30559:2;30563:8;30549:27;;;;;;;;;;;;:9;:27::i;:::-;30480:104;;:::o;36042:804::-;36197:4;36218:15;:2;:13;;;:15::i;:::-;36214:625;;;36270:2;36254:36;;;36291:12;:10;:12::i;:::-;36305:4;36311:7;36320:5;36254:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36250:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36517:1;36500:6;:13;:18;36496:273;;;36543:61;;;;;;;;;;:::i;:::-;;;;;;;;36496:273;36719:6;36713:13;36704:6;36700:2;36696:15;36689:38;36250:534;36387:45;;;36377:55;;;:6;:55;;;;36370:62;;;;;36214:625;36823:4;36816:11;;36042:804;;;;;;;:::o;45775:108::-;45835:13;45868:7;45861:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45775:108;:::o;475:723::-;531:13;761:1;752:5;:10;748:53;;;779:10;;;;;;;;;;;;;;;;;;;;;748:53;811:12;826:5;811:20;;842:14;867:78;882:1;874:4;:9;867:78;;900:8;;;;;:::i;:::-;;;;931:2;923:10;;;;;:::i;:::-;;;867:78;;;955:19;987:6;977:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;955:39;;1005:154;1021:1;1012:5;:10;1005:154;;1049:1;1039:11;;;;;:::i;:::-;;;1116:2;1108:5;:10;;;;:::i;:::-;1095:2;:24;;;;:::i;:::-;1082:39;;1065:6;1072;1065:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1145:2;1136:11;;;;;:::i;:::-;;;1005:154;;;1183:6;1169:21;;;;;475:723;;;;:::o;37334:159::-;;;;;:::o;37905:158::-;;;;;:::o;30947:163::-;31070:32;31076:2;31080:8;31090:5;31097:4;31070:5;:32::i;:::-;30947:163;;;:::o;4360:326::-;4420:4;4677:1;4655:7;:19;;;:23;4648:30;;4360:326;;;:::o;31369:1538::-;31508:20;31531:12;;31508:35;;31576:1;31562:16;;:2;:16;;;;31554:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31647:1;31635:8;:13;;31627:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31706:61;31736:1;31740:2;31744:12;31758:8;31706:21;:61::i;:::-;32081:8;32045:12;:16;32058:2;32045:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32146:8;32105:12;:16;32118:2;32105:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32205:2;32172:11;:25;32184:12;32172:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32272:15;32222:11;:25;32234:12;32222:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32305:20;32328:12;32305:35;;32362:9;32357:415;32377:8;32373:1;:12;32357:415;;;32441:12;32437:2;32416:38;;32433:1;32416:38;;;;;;;;;;;;32477:4;32473:249;;;32540:59;32571:1;32575:2;32579:12;32593:5;32540:22;:59::i;:::-;32506:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;32473:249;32742:14;;;;;;;32387:3;;;;;;;32357:415;;;;32803:12;32788;:27;;;;32020:807;32839:60;32868:1;32872:2;32876:12;32890:8;32839:20;:60::i;:::-;31497:1410;31369:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:338::-;2665:5;2714:3;2707:4;2699:6;2695:17;2691:27;2681:122;;2722:79;;:::i;:::-;2681:122;2839:6;2826:20;2864:78;2938:3;2930:6;2923:4;2915:6;2911:17;2864:78;:::i;:::-;2855:87;;2671:277;2610:338;;;;:::o;2968:340::-;3024:5;3073:3;3066:4;3058:6;3054:17;3050:27;3040:122;;3081:79;;:::i;:::-;3040:122;3198:6;3185:20;3223:79;3298:3;3290:6;3283:4;3275:6;3271:17;3223:79;:::i;:::-;3214:88;;3030:278;2968:340;;;;:::o;3314:139::-;3360:5;3398:6;3385:20;3376:29;;3414:33;3441:5;3414:33;:::i;:::-;3314:139;;;;:::o;3459:329::-;3518:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:119;;;3573:79;;:::i;:::-;3535:119;3693:1;3718:53;3763:7;3754:6;3743:9;3739:22;3718:53;:::i;:::-;3708:63;;3664:117;3459:329;;;;:::o;3794:474::-;3862:6;3870;3919:2;3907:9;3898:7;3894:23;3890:32;3887:119;;;3925:79;;:::i;:::-;3887:119;4045:1;4070:53;4115:7;4106:6;4095:9;4091:22;4070:53;:::i;:::-;4060:63;;4016:117;4172:2;4198:53;4243:7;4234:6;4223:9;4219:22;4198:53;:::i;:::-;4188:63;;4143:118;3794:474;;;;;:::o;4274:619::-;4351:6;4359;4367;4416:2;4404:9;4395:7;4391:23;4387:32;4384:119;;;4422:79;;:::i;:::-;4384:119;4542:1;4567:53;4612:7;4603:6;4592:9;4588:22;4567:53;:::i;:::-;4557:63;;4513:117;4669:2;4695:53;4740:7;4731:6;4720:9;4716:22;4695:53;:::i;:::-;4685:63;;4640:118;4797:2;4823:53;4868:7;4859:6;4848:9;4844:22;4823:53;:::i;:::-;4813:63;;4768:118;4274:619;;;;;:::o;4899:943::-;4994:6;5002;5010;5018;5067:3;5055:9;5046:7;5042:23;5038:33;5035:120;;;5074:79;;:::i;:::-;5035:120;5194:1;5219:53;5264:7;5255:6;5244:9;5240:22;5219:53;:::i;:::-;5209:63;;5165:117;5321:2;5347:53;5392:7;5383:6;5372:9;5368:22;5347:53;:::i;:::-;5337:63;;5292:118;5449:2;5475:53;5520:7;5511:6;5500:9;5496:22;5475:53;:::i;:::-;5465:63;;5420:118;5605:2;5594:9;5590:18;5577:32;5636:18;5628:6;5625:30;5622:117;;;5658:79;;:::i;:::-;5622:117;5763:62;5817:7;5808:6;5797:9;5793:22;5763:62;:::i;:::-;5753:72;;5548:287;4899:943;;;;;;;:::o;5848:468::-;5913:6;5921;5970:2;5958:9;5949:7;5945:23;5941:32;5938:119;;;5976:79;;:::i;:::-;5938:119;6096:1;6121:53;6166:7;6157:6;6146:9;6142:22;6121:53;:::i;:::-;6111:63;;6067:117;6223:2;6249:50;6291:7;6282:6;6271:9;6267:22;6249:50;:::i;:::-;6239:60;;6194:115;5848:468;;;;;:::o;6322:474::-;6390:6;6398;6447:2;6435:9;6426:7;6422:23;6418:32;6415:119;;;6453:79;;:::i;:::-;6415:119;6573:1;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6544:117;6700:2;6726:53;6771:7;6762:6;6751:9;6747:22;6726:53;:::i;:::-;6716:63;;6671:118;6322:474;;;;;:::o;6802:934::-;6924:6;6932;6940;6948;6997:2;6985:9;6976:7;6972:23;6968:32;6965:119;;;7003:79;;:::i;:::-;6965:119;7151:1;7140:9;7136:17;7123:31;7181:18;7173:6;7170:30;7167:117;;;7203:79;;:::i;:::-;7167:117;7316:80;7388:7;7379:6;7368:9;7364:22;7316:80;:::i;:::-;7298:98;;;;7094:312;7473:2;7462:9;7458:18;7445:32;7504:18;7496:6;7493:30;7490:117;;;7526:79;;:::i;:::-;7490:117;7639:80;7711:7;7702:6;7691:9;7687:22;7639:80;:::i;:::-;7621:98;;;;7416:313;6802:934;;;;;;;:::o;7742:327::-;7800:6;7849:2;7837:9;7828:7;7824:23;7820:32;7817:119;;;7855:79;;:::i;:::-;7817:119;7975:1;8000:52;8044:7;8035:6;8024:9;8020:22;8000:52;:::i;:::-;7990:62;;7946:116;7742:327;;;;:::o;8075:349::-;8144:6;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8319:1;8344:63;8399:7;8390:6;8379:9;8375:22;8344:63;:::i;:::-;8334:73;;8290:127;8075:349;;;;:::o;8430:509::-;8499:6;8548:2;8536:9;8527:7;8523:23;8519:32;8516:119;;;8554:79;;:::i;:::-;8516:119;8702:1;8691:9;8687:17;8674:31;8732:18;8724:6;8721:30;8718:117;;;8754:79;;:::i;:::-;8718:117;8859:63;8914:7;8905:6;8894:9;8890:22;8859:63;:::i;:::-;8849:73;;8645:287;8430:509;;;;:::o;8945:329::-;9004:6;9053:2;9041:9;9032:7;9028:23;9024:32;9021:119;;;9059:79;;:::i;:::-;9021:119;9179:1;9204:53;9249:7;9240:6;9229:9;9225:22;9204:53;:::i;:::-;9194:63;;9150:117;8945:329;;;;:::o;9280:118::-;9367:24;9385:5;9367:24;:::i;:::-;9362:3;9355:37;9280:118;;:::o;9404:109::-;9485:21;9500:5;9485:21;:::i;:::-;9480:3;9473:34;9404:109;;:::o;9519:360::-;9605:3;9633:38;9665:5;9633:38;:::i;:::-;9687:70;9750:6;9745:3;9687:70;:::i;:::-;9680:77;;9766:52;9811:6;9806:3;9799:4;9792:5;9788:16;9766:52;:::i;:::-;9843:29;9865:6;9843:29;:::i;:::-;9838:3;9834:39;9827:46;;9609:270;9519:360;;;;:::o;9885:364::-;9973:3;10001:39;10034:5;10001:39;:::i;:::-;10056:71;10120:6;10115:3;10056:71;:::i;:::-;10049:78;;10136:52;10181:6;10176:3;10169:4;10162:5;10158:16;10136:52;:::i;:::-;10213:29;10235:6;10213:29;:::i;:::-;10208:3;10204:39;10197:46;;9977:272;9885:364;;;;:::o;10255:377::-;10361:3;10389:39;10422:5;10389:39;:::i;:::-;10444:89;10526:6;10521:3;10444:89;:::i;:::-;10437:96;;10542:52;10587:6;10582:3;10575:4;10568:5;10564:16;10542:52;:::i;:::-;10619:6;10614:3;10610:16;10603:23;;10365:267;10255:377;;;;:::o;10638:366::-;10780:3;10801:67;10865:2;10860:3;10801:67;:::i;:::-;10794:74;;10877:93;10966:3;10877:93;:::i;:::-;10995:2;10990:3;10986:12;10979:19;;10638:366;;;:::o;11010:::-;11152:3;11173:67;11237:2;11232:3;11173:67;:::i;:::-;11166:74;;11249:93;11338:3;11249:93;:::i;:::-;11367:2;11362:3;11358:12;11351:19;;11010:366;;;:::o;11382:::-;11524:3;11545:67;11609:2;11604:3;11545:67;:::i;:::-;11538:74;;11621:93;11710:3;11621:93;:::i;:::-;11739:2;11734:3;11730:12;11723:19;;11382:366;;;:::o;11754:::-;11896:3;11917:67;11981:2;11976:3;11917:67;:::i;:::-;11910:74;;11993:93;12082:3;11993:93;:::i;:::-;12111:2;12106:3;12102:12;12095:19;;11754:366;;;:::o;12126:::-;12268:3;12289:67;12353:2;12348:3;12289:67;:::i;:::-;12282:74;;12365:93;12454:3;12365:93;:::i;:::-;12483:2;12478:3;12474:12;12467:19;;12126:366;;;:::o;12498:::-;12640:3;12661:67;12725:2;12720:3;12661:67;:::i;:::-;12654:74;;12737:93;12826:3;12737:93;:::i;:::-;12855:2;12850:3;12846:12;12839:19;;12498:366;;;:::o;12870:::-;13012:3;13033:67;13097:2;13092:3;13033:67;:::i;:::-;13026:74;;13109:93;13198:3;13109:93;:::i;:::-;13227:2;13222:3;13218:12;13211:19;;12870:366;;;:::o;13242:::-;13384:3;13405:67;13469:2;13464:3;13405:67;:::i;:::-;13398:74;;13481:93;13570:3;13481:93;:::i;:::-;13599:2;13594:3;13590:12;13583:19;;13242:366;;;:::o;13614:::-;13756:3;13777:67;13841:2;13836:3;13777:67;:::i;:::-;13770:74;;13853:93;13942:3;13853:93;:::i;:::-;13971:2;13966:3;13962:12;13955:19;;13614:366;;;:::o;13986:::-;14128:3;14149:67;14213:2;14208:3;14149:67;:::i;:::-;14142:74;;14225:93;14314:3;14225:93;:::i;:::-;14343:2;14338:3;14334:12;14327:19;;13986:366;;;:::o;14358:::-;14500:3;14521:67;14585:2;14580:3;14521:67;:::i;:::-;14514:74;;14597:93;14686:3;14597:93;:::i;:::-;14715:2;14710:3;14706:12;14699:19;;14358:366;;;:::o;14730:::-;14872:3;14893:67;14957:2;14952:3;14893:67;:::i;:::-;14886:74;;14969:93;15058:3;14969:93;:::i;:::-;15087:2;15082:3;15078:12;15071:19;;14730:366;;;:::o;15102:::-;15244:3;15265:67;15329:2;15324:3;15265:67;:::i;:::-;15258:74;;15341:93;15430:3;15341:93;:::i;:::-;15459:2;15454:3;15450:12;15443:19;;15102:366;;;:::o;15474:400::-;15634:3;15655:84;15737:1;15732:3;15655:84;:::i;:::-;15648:91;;15748:93;15837:3;15748:93;:::i;:::-;15866:1;15861:3;15857:11;15850:18;;15474:400;;;:::o;15880:365::-;16022:3;16043:66;16107:1;16102:3;16043:66;:::i;:::-;16036:73;;16118:93;16207:3;16118:93;:::i;:::-;16236:2;16231:3;16227:12;16220:19;;15880:365;;;:::o;16251:366::-;16393:3;16414:67;16478:2;16473:3;16414:67;:::i;:::-;16407:74;;16490:93;16579:3;16490:93;:::i;:::-;16608:2;16603:3;16599:12;16592:19;;16251:366;;;:::o;16623:::-;16765:3;16786:67;16850:2;16845:3;16786:67;:::i;:::-;16779:74;;16862:93;16951:3;16862:93;:::i;:::-;16980:2;16975:3;16971:12;16964:19;;16623:366;;;:::o;16995:::-;17137:3;17158:67;17222:2;17217:3;17158:67;:::i;:::-;17151:74;;17234:93;17323:3;17234:93;:::i;:::-;17352:2;17347:3;17343:12;17336:19;;16995:366;;;:::o;17367:::-;17509:3;17530:67;17594:2;17589:3;17530:67;:::i;:::-;17523:74;;17606:93;17695:3;17606:93;:::i;:::-;17724:2;17719:3;17715:12;17708:19;;17367:366;;;:::o;17739:::-;17881:3;17902:67;17966:2;17961:3;17902:67;:::i;:::-;17895:74;;17978:93;18067:3;17978:93;:::i;:::-;18096:2;18091:3;18087:12;18080:19;;17739:366;;;:::o;18111:398::-;18270:3;18291:83;18372:1;18367:3;18291:83;:::i;:::-;18284:90;;18383:93;18472:3;18383:93;:::i;:::-;18501:1;18496:3;18492:11;18485:18;;18111:398;;;:::o;18515:366::-;18657:3;18678:67;18742:2;18737:3;18678:67;:::i;:::-;18671:74;;18754:93;18843:3;18754:93;:::i;:::-;18872:2;18867:3;18863:12;18856:19;;18515:366;;;:::o;18887:::-;19029:3;19050:67;19114:2;19109:3;19050:67;:::i;:::-;19043:74;;19126:93;19215:3;19126:93;:::i;:::-;19244:2;19239:3;19235:12;19228:19;;18887:366;;;:::o;19259:::-;19401:3;19422:67;19486:2;19481:3;19422:67;:::i;:::-;19415:74;;19498:93;19587:3;19498:93;:::i;:::-;19616:2;19611:3;19607:12;19600:19;;19259:366;;;:::o;19631:::-;19773:3;19794:67;19858:2;19853:3;19794:67;:::i;:::-;19787:74;;19870:93;19959:3;19870:93;:::i;:::-;19988:2;19983:3;19979:12;19972:19;;19631:366;;;:::o;20003:::-;20145:3;20166:67;20230:2;20225:3;20166:67;:::i;:::-;20159:74;;20242:93;20331:3;20242:93;:::i;:::-;20360:2;20355:3;20351:12;20344:19;;20003:366;;;:::o;20375:::-;20517:3;20538:67;20602:2;20597:3;20538:67;:::i;:::-;20531:74;;20614:93;20703:3;20614:93;:::i;:::-;20732:2;20727:3;20723:12;20716:19;;20375:366;;;:::o;20747:::-;20889:3;20910:67;20974:2;20969:3;20910:67;:::i;:::-;20903:74;;20986:93;21075:3;20986:93;:::i;:::-;21104:2;21099:3;21095:12;21088:19;;20747:366;;;:::o;21119:::-;21261:3;21282:67;21346:2;21341:3;21282:67;:::i;:::-;21275:74;;21358:93;21447:3;21358:93;:::i;:::-;21476:2;21471:3;21467:12;21460:19;;21119:366;;;:::o;21491:118::-;21578:24;21596:5;21578:24;:::i;:::-;21573:3;21566:37;21491:118;;:::o;21615:701::-;21896:3;21918:95;22009:3;22000:6;21918:95;:::i;:::-;21911:102;;22030:95;22121:3;22112:6;22030:95;:::i;:::-;22023:102;;22142:148;22286:3;22142:148;:::i;:::-;22135:155;;22307:3;22300:10;;21615:701;;;;;:::o;22322:379::-;22506:3;22528:147;22671:3;22528:147;:::i;:::-;22521:154;;22692:3;22685:10;;22322:379;;;:::o;22707:222::-;22800:4;22838:2;22827:9;22823:18;22815:26;;22851:71;22919:1;22908:9;22904:17;22895:6;22851:71;:::i;:::-;22707:222;;;;:::o;22935:640::-;23130:4;23168:3;23157:9;23153:19;23145:27;;23182:71;23250:1;23239:9;23235:17;23226:6;23182:71;:::i;:::-;23263:72;23331:2;23320:9;23316:18;23307:6;23263:72;:::i;:::-;23345;23413:2;23402:9;23398:18;23389:6;23345:72;:::i;:::-;23464:9;23458:4;23454:20;23449:2;23438:9;23434:18;23427:48;23492:76;23563:4;23554:6;23492:76;:::i;:::-;23484:84;;22935:640;;;;;;;:::o;23581:210::-;23668:4;23706:2;23695:9;23691:18;23683:26;;23719:65;23781:1;23770:9;23766:17;23757:6;23719:65;:::i;:::-;23581:210;;;;:::o;23797:313::-;23910:4;23948:2;23937:9;23933:18;23925:26;;23997:9;23991:4;23987:20;23983:1;23972:9;23968:17;23961:47;24025:78;24098:4;24089:6;24025:78;:::i;:::-;24017:86;;23797:313;;;;:::o;24116:419::-;24282:4;24320:2;24309:9;24305:18;24297:26;;24369:9;24363:4;24359:20;24355:1;24344:9;24340:17;24333:47;24397:131;24523:4;24397:131;:::i;:::-;24389:139;;24116:419;;;:::o;24541:::-;24707:4;24745:2;24734:9;24730:18;24722:26;;24794:9;24788:4;24784:20;24780:1;24769:9;24765:17;24758:47;24822:131;24948:4;24822:131;:::i;:::-;24814:139;;24541:419;;;:::o;24966:::-;25132:4;25170:2;25159:9;25155:18;25147:26;;25219:9;25213:4;25209:20;25205:1;25194:9;25190:17;25183:47;25247:131;25373:4;25247:131;:::i;:::-;25239:139;;24966:419;;;:::o;25391:::-;25557:4;25595:2;25584:9;25580:18;25572:26;;25644:9;25638:4;25634:20;25630:1;25619:9;25615:17;25608:47;25672:131;25798:4;25672:131;:::i;:::-;25664:139;;25391:419;;;:::o;25816:::-;25982:4;26020:2;26009:9;26005:18;25997:26;;26069:9;26063:4;26059:20;26055:1;26044:9;26040:17;26033:47;26097:131;26223:4;26097:131;:::i;:::-;26089:139;;25816:419;;;:::o;26241:::-;26407:4;26445:2;26434:9;26430:18;26422:26;;26494:9;26488:4;26484:20;26480:1;26469:9;26465:17;26458:47;26522:131;26648:4;26522:131;:::i;:::-;26514:139;;26241:419;;;:::o;26666:::-;26832:4;26870:2;26859:9;26855:18;26847:26;;26919:9;26913:4;26909:20;26905:1;26894:9;26890:17;26883:47;26947:131;27073:4;26947:131;:::i;:::-;26939:139;;26666:419;;;:::o;27091:::-;27257:4;27295:2;27284:9;27280:18;27272:26;;27344:9;27338:4;27334:20;27330:1;27319:9;27315:17;27308:47;27372:131;27498:4;27372:131;:::i;:::-;27364:139;;27091:419;;;:::o;27516:::-;27682:4;27720:2;27709:9;27705:18;27697:26;;27769:9;27763:4;27759:20;27755:1;27744:9;27740:17;27733:47;27797:131;27923:4;27797:131;:::i;:::-;27789:139;;27516:419;;;:::o;27941:::-;28107:4;28145:2;28134:9;28130:18;28122:26;;28194:9;28188:4;28184:20;28180:1;28169:9;28165:17;28158:47;28222:131;28348:4;28222:131;:::i;:::-;28214:139;;27941:419;;;:::o;28366:::-;28532:4;28570:2;28559:9;28555:18;28547:26;;28619:9;28613:4;28609:20;28605:1;28594:9;28590:17;28583:47;28647:131;28773:4;28647:131;:::i;:::-;28639:139;;28366:419;;;:::o;28791:::-;28957:4;28995:2;28984:9;28980:18;28972:26;;29044:9;29038:4;29034:20;29030:1;29019:9;29015:17;29008:47;29072:131;29198:4;29072:131;:::i;:::-;29064:139;;28791:419;;;:::o;29216:::-;29382:4;29420:2;29409:9;29405:18;29397:26;;29469:9;29463:4;29459:20;29455:1;29444:9;29440:17;29433:47;29497:131;29623:4;29497:131;:::i;:::-;29489:139;;29216:419;;;:::o;29641:::-;29807:4;29845:2;29834:9;29830:18;29822:26;;29894:9;29888:4;29884:20;29880:1;29869:9;29865:17;29858:47;29922:131;30048:4;29922:131;:::i;:::-;29914:139;;29641:419;;;:::o;30066:::-;30232:4;30270:2;30259:9;30255:18;30247:26;;30319:9;30313:4;30309:20;30305:1;30294:9;30290:17;30283:47;30347:131;30473:4;30347:131;:::i;:::-;30339:139;;30066:419;;;:::o;30491:::-;30657:4;30695:2;30684:9;30680:18;30672:26;;30744:9;30738:4;30734:20;30730:1;30719:9;30715:17;30708:47;30772:131;30898:4;30772:131;:::i;:::-;30764:139;;30491:419;;;:::o;30916:::-;31082:4;31120:2;31109:9;31105:18;31097:26;;31169:9;31163:4;31159:20;31155:1;31144:9;31140:17;31133:47;31197:131;31323:4;31197:131;:::i;:::-;31189:139;;30916:419;;;:::o;31341:::-;31507:4;31545:2;31534:9;31530:18;31522:26;;31594:9;31588:4;31584:20;31580:1;31569:9;31565:17;31558:47;31622:131;31748:4;31622:131;:::i;:::-;31614:139;;31341:419;;;:::o;31766:::-;31932:4;31970:2;31959:9;31955:18;31947:26;;32019:9;32013:4;32009:20;32005:1;31994:9;31990:17;31983:47;32047:131;32173:4;32047:131;:::i;:::-;32039:139;;31766:419;;;:::o;32191:::-;32357:4;32395:2;32384:9;32380:18;32372:26;;32444:9;32438:4;32434:20;32430:1;32419:9;32415:17;32408:47;32472:131;32598:4;32472:131;:::i;:::-;32464:139;;32191:419;;;:::o;32616:::-;32782:4;32820:2;32809:9;32805:18;32797:26;;32869:9;32863:4;32859:20;32855:1;32844:9;32840:17;32833:47;32897:131;33023:4;32897:131;:::i;:::-;32889:139;;32616:419;;;:::o;33041:::-;33207:4;33245:2;33234:9;33230:18;33222:26;;33294:9;33288:4;33284:20;33280:1;33269:9;33265:17;33258:47;33322:131;33448:4;33322:131;:::i;:::-;33314:139;;33041:419;;;:::o;33466:::-;33632:4;33670:2;33659:9;33655:18;33647:26;;33719:9;33713:4;33709:20;33705:1;33694:9;33690:17;33683:47;33747:131;33873:4;33747:131;:::i;:::-;33739:139;;33466:419;;;:::o;33891:::-;34057:4;34095:2;34084:9;34080:18;34072:26;;34144:9;34138:4;34134:20;34130:1;34119:9;34115:17;34108:47;34172:131;34298:4;34172:131;:::i;:::-;34164:139;;33891:419;;;:::o;34316:::-;34482:4;34520:2;34509:9;34505:18;34497:26;;34569:9;34563:4;34559:20;34555:1;34544:9;34540:17;34533:47;34597:131;34723:4;34597:131;:::i;:::-;34589:139;;34316:419;;;:::o;34741:::-;34907:4;34945:2;34934:9;34930:18;34922:26;;34994:9;34988:4;34984:20;34980:1;34969:9;34965:17;34958:47;35022:131;35148:4;35022:131;:::i;:::-;35014:139;;34741:419;;;:::o;35166:::-;35332:4;35370:2;35359:9;35355:18;35347:26;;35419:9;35413:4;35409:20;35405:1;35394:9;35390:17;35383:47;35447:131;35573:4;35447:131;:::i;:::-;35439:139;;35166:419;;;:::o;35591:222::-;35684:4;35722:2;35711:9;35707:18;35699:26;;35735:71;35803:1;35792:9;35788:17;35779:6;35735:71;:::i;:::-;35591:222;;;;:::o;35819:129::-;35853:6;35880:20;;:::i;:::-;35870:30;;35909:33;35937:4;35929:6;35909:33;:::i;:::-;35819:129;;;:::o;35954:75::-;35987:6;36020:2;36014:9;36004:19;;35954:75;:::o;36035:307::-;36096:4;36186:18;36178:6;36175:30;36172:56;;;36208:18;;:::i;:::-;36172:56;36246:29;36268:6;36246:29;:::i;:::-;36238:37;;36330:4;36324;36320:15;36312:23;;36035:307;;;:::o;36348:308::-;36410:4;36500:18;36492:6;36489:30;36486:56;;;36522:18;;:::i;:::-;36486:56;36560:29;36582:6;36560:29;:::i;:::-;36552:37;;36644:4;36638;36634:15;36626:23;;36348:308;;;:::o;36662:98::-;36713:6;36747:5;36741:12;36731:22;;36662:98;;;:::o;36766:99::-;36818:6;36852:5;36846:12;36836:22;;36766:99;;;:::o;36871:168::-;36954:11;36988:6;36983:3;36976:19;37028:4;37023:3;37019:14;37004:29;;36871:168;;;;:::o;37045:147::-;37146:11;37183:3;37168:18;;37045:147;;;;:::o;37198:169::-;37282:11;37316:6;37311:3;37304:19;37356:4;37351:3;37347:14;37332:29;;37198:169;;;;:::o;37373:148::-;37475:11;37512:3;37497:18;;37373:148;;;;:::o;37527:305::-;37567:3;37586:20;37604:1;37586:20;:::i;:::-;37581:25;;37620:20;37638:1;37620:20;:::i;:::-;37615:25;;37774:1;37706:66;37702:74;37699:1;37696:81;37693:107;;;37780:18;;:::i;:::-;37693:107;37824:1;37821;37817:9;37810:16;;37527:305;;;;:::o;37838:185::-;37878:1;37895:20;37913:1;37895:20;:::i;:::-;37890:25;;37929:20;37947:1;37929:20;:::i;:::-;37924:25;;37968:1;37958:35;;37973:18;;:::i;:::-;37958:35;38015:1;38012;38008:9;38003:14;;37838:185;;;;:::o;38029:348::-;38069:7;38092:20;38110:1;38092:20;:::i;:::-;38087:25;;38126:20;38144:1;38126:20;:::i;:::-;38121:25;;38314:1;38246:66;38242:74;38239:1;38236:81;38231:1;38224:9;38217:17;38213:105;38210:131;;;38321:18;;:::i;:::-;38210:131;38369:1;38366;38362:9;38351:20;;38029:348;;;;:::o;38383:191::-;38423:4;38443:20;38461:1;38443:20;:::i;:::-;38438:25;;38477:20;38495:1;38477:20;:::i;:::-;38472:25;;38516:1;38513;38510:8;38507:34;;;38521:18;;:::i;:::-;38507:34;38566:1;38563;38559:9;38551:17;;38383:191;;;;:::o;38580:96::-;38617:7;38646:24;38664:5;38646:24;:::i;:::-;38635:35;;38580:96;;;:::o;38682:90::-;38716:7;38759:5;38752:13;38745:21;38734:32;;38682:90;;;:::o;38778:149::-;38814:7;38854:66;38847:5;38843:78;38832:89;;38778:149;;;:::o;38933:126::-;38970:7;39010:42;39003:5;38999:54;38988:65;;38933:126;;;:::o;39065:77::-;39102:7;39131:5;39120:16;;39065:77;;;:::o;39148:154::-;39232:6;39227:3;39222;39209:30;39294:1;39285:6;39280:3;39276:16;39269:27;39148:154;;;:::o;39308:307::-;39376:1;39386:113;39400:6;39397:1;39394:13;39386:113;;;39485:1;39480:3;39476:11;39470:18;39466:1;39461:3;39457:11;39450:39;39422:2;39419:1;39415:10;39410:15;;39386:113;;;39517:6;39514:1;39511:13;39508:101;;;39597:1;39588:6;39583:3;39579:16;39572:27;39508:101;39357:258;39308:307;;;:::o;39621:320::-;39665:6;39702:1;39696:4;39692:12;39682:22;;39749:1;39743:4;39739:12;39770:18;39760:81;;39826:4;39818:6;39814:17;39804:27;;39760:81;39888:2;39880:6;39877:14;39857:18;39854:38;39851:84;;;39907:18;;:::i;:::-;39851:84;39672:269;39621:320;;;:::o;39947:281::-;40030:27;40052:4;40030:27;:::i;:::-;40022:6;40018:40;40160:6;40148:10;40145:22;40124:18;40112:10;40109:34;40106:62;40103:88;;;40171:18;;:::i;:::-;40103:88;40211:10;40207:2;40200:22;39990:238;39947:281;;:::o;40234:233::-;40273:3;40296:24;40314:5;40296:24;:::i;:::-;40287:33;;40342:66;40335:5;40332:77;40329:103;;;40412:18;;:::i;:::-;40329:103;40459:1;40452:5;40448:13;40441:20;;40234:233;;;:::o;40473:176::-;40505:1;40522:20;40540:1;40522:20;:::i;:::-;40517:25;;40556:20;40574:1;40556:20;:::i;:::-;40551:25;;40595:1;40585:35;;40600:18;;:::i;:::-;40585:35;40641:1;40638;40634:9;40629:14;;40473:176;;;;:::o;40655:180::-;40703:77;40700:1;40693:88;40800:4;40797:1;40790:15;40824:4;40821:1;40814:15;40841:180;40889:77;40886:1;40879:88;40986:4;40983:1;40976:15;41010:4;41007:1;41000:15;41027:180;41075:77;41072:1;41065:88;41172:4;41169:1;41162:15;41196:4;41193:1;41186:15;41213:180;41261:77;41258:1;41251:88;41358:4;41355:1;41348:15;41382:4;41379:1;41372:15;41399:180;41447:77;41444:1;41437:88;41544:4;41541:1;41534:15;41568:4;41565:1;41558:15;41585:117;41694:1;41691;41684:12;41708:117;41817:1;41814;41807:12;41831:117;41940:1;41937;41930:12;41954:117;42063:1;42060;42053:12;42077:117;42186:1;42183;42176:12;42200:117;42309:1;42306;42299:12;42323:102;42364:6;42415:2;42411:7;42406:2;42399:5;42395:14;42391:28;42381:38;;42323:102;;;:::o;42431:221::-;42571:34;42567:1;42559:6;42555:14;42548:58;42640:4;42635:2;42627:6;42623:15;42616:29;42431:221;:::o;42658:::-;42798:34;42794:1;42786:6;42782:14;42775:58;42867:4;42862:2;42854:6;42850:15;42843:29;42658:221;:::o;42885:220::-;43025:34;43021:1;43013:6;43009:14;43002:58;43094:3;43089:2;43081:6;43077:15;43070:28;42885:220;:::o;43111:225::-;43251:34;43247:1;43239:6;43235:14;43228:58;43320:8;43315:2;43307:6;43303:15;43296:33;43111:225;:::o;43342:229::-;43482:34;43478:1;43470:6;43466:14;43459:58;43551:12;43546:2;43538:6;43534:15;43527:37;43342:229;:::o;43577:222::-;43717:34;43713:1;43705:6;43701:14;43694:58;43786:5;43781:2;43773:6;43769:15;43762:30;43577:222;:::o;43805:224::-;43945:34;43941:1;43933:6;43929:14;43922:58;44014:7;44009:2;44001:6;43997:15;43990:32;43805:224;:::o;44035:171::-;44175:23;44171:1;44163:6;44159:14;44152:47;44035:171;:::o;44212:220::-;44352:34;44348:1;44340:6;44336:14;44329:58;44421:3;44416:2;44408:6;44404:15;44397:28;44212:220;:::o;44438:244::-;44578:34;44574:1;44566:6;44562:14;44555:58;44647:27;44642:2;44634:6;44630:15;44623:52;44438:244;:::o;44688:176::-;44828:28;44824:1;44816:6;44812:14;44805:52;44688:176;:::o;44870:230::-;45010:34;45006:1;44998:6;44994:14;44987:58;45079:13;45074:2;45066:6;45062:15;45055:38;44870:230;:::o;45106:225::-;45246:34;45242:1;45234:6;45230:14;45223:58;45315:8;45310:2;45302:6;45298:15;45291:33;45106:225;:::o;45337:155::-;45477:7;45473:1;45465:6;45461:14;45454:31;45337:155;:::o;45498:158::-;45638:10;45634:1;45626:6;45622:14;45615:34;45498:158;:::o;45662:182::-;45802:34;45798:1;45790:6;45786:14;45779:58;45662:182;:::o;45850:178::-;45990:30;45986:1;45978:6;45974:14;45967:54;45850:178;:::o;46034:176::-;46174:28;46170:1;46162:6;46158:14;46151:52;46034:176;:::o;46216:237::-;46356:34;46352:1;46344:6;46340:14;46333:58;46425:20;46420:2;46412:6;46408:15;46401:45;46216:237;:::o;46459:221::-;46599:34;46595:1;46587:6;46583:14;46576:58;46668:4;46663:2;46655:6;46651:15;46644:29;46459:221;:::o;46686:114::-;;:::o;46806:238::-;46946:34;46942:1;46934:6;46930:14;46923:58;47015:21;47010:2;47002:6;46998:15;46991:46;46806:238;:::o;47050:220::-;47190:34;47186:1;47178:6;47174:14;47167:58;47259:3;47254:2;47246:6;47242:15;47235:28;47050:220;:::o;47276:227::-;47416:34;47412:1;47404:6;47400:14;47393:58;47485:10;47480:2;47472:6;47468:15;47461:35;47276:227;:::o;47509:233::-;47649:34;47645:1;47637:6;47633:14;47626:58;47718:16;47713:2;47705:6;47701:15;47694:41;47509:233;:::o;47748:181::-;47888:33;47884:1;47876:6;47872:14;47865:57;47748:181;:::o;47935:234::-;48075:34;48071:1;48063:6;48059:14;48052:58;48144:17;48139:2;48131:6;48127:15;48120:42;47935:234;:::o;48175:174::-;48315:26;48311:1;48303:6;48299:14;48292:50;48175:174;:::o;48355:232::-;48495:34;48491:1;48483:6;48479:14;48472:58;48564:15;48559:2;48551:6;48547:15;48540:40;48355:232;:::o;48593:122::-;48666:24;48684:5;48666:24;:::i;:::-;48659:5;48656:35;48646:63;;48705:1;48702;48695:12;48646:63;48593:122;:::o;48721:116::-;48791:21;48806:5;48791:21;:::i;:::-;48784:5;48781:32;48771:60;;48827:1;48824;48817:12;48771:60;48721:116;:::o;48843:120::-;48915:23;48932:5;48915:23;:::i;:::-;48908:5;48905:34;48895:62;;48953:1;48950;48943:12;48895:62;48843:120;:::o;48969:122::-;49042:24;49060:5;49042:24;:::i;:::-;49035:5;49032:35;49022:63;;49081:1;49078;49071:12;49022:63;48969:122;:::o
Swarm Source
ipfs://dc423831bdc61aacb77839dc47545f97f49d69a1a7f54593a5b8b031e6d05806
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.