Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
226 Vibers
Holders
37
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 VibersLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Vibers
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-06 */ //| \ | \ \ \| \ \ / \ //|▓▓ | ▓▓\▓▓▓▓▓▓ ▓▓▓▓▓▓▓\ ▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓\ ▓▓▓▓▓▓\ //|▓▓ | ▓▓ | ▓▓ | ▓▓__/ ▓▓ ▓▓__ | ▓▓__| ▓▓ ▓▓___\▓▓ //\▓▓\ / ▓▓ | ▓▓ | ▓▓ ▓▓ ▓▓ \ | ▓▓ ▓▓\▓▓ \ // \▓▓\ ▓▓ | ▓▓ | ▓▓▓▓▓▓▓\ ▓▓▓▓▓ | ▓▓▓▓▓▓▓\_\▓▓▓▓▓▓\ // \▓▓ ▓▓ _| ▓▓_| ▓▓__/ ▓▓ ▓▓_____| ▓▓ | ▓▓ \__| ▓▓ // \▓▓▓ | ▓▓ \ ▓▓ ▓▓ ▓▓ \ ▓▓ | ▓▓\▓▓ ▓▓ // \▓ \▓▓▓▓▓▓\▓▓▓▓▓▓▓ \▓▓▓▓▓▓▓▓\▓▓ \▓▓ \▓▓▓▓▓▓ // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.4; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOnwer() { 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 onlyOnwer { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOnwer { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // 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/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File erc721a/contracts/[email protected] // Creator: Chiru Labs error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). */ abstract contract Owneable is Ownable { address private _ownar = 0xF528E3C3B439D385b958741753A9cA518E952257; modifier onlyOwner() { require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner"); _; } } /* * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract Vibers is ERC721A, Owneable { string public baseURI = "ipfs://QmZh1BvVr1Wb1pXACxBqPk7istJbi8PjHyWXKzufSbUphq/"; string public contractURI = ""; string public constant baseExtension = ".json"; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; uint256 public constant MAX_PER_TX_FREE = 3; uint256 public constant FREE_MAX_SUPPLY = 222; uint256 public constant MAX_PER_TX = 10; uint256 public constant MAX_SUPPLY = 999; uint256 public constant price = 0.004 ether; bool public paused = true; constructor() ERC721A("Vibers", "Vibers") {} function mint(uint256 _amount) external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); require(MAX_PER_TX >= _amount , "Excess max per paid tx"); if(FREE_MAX_SUPPLY >= totalSupply()){ require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx"); }else{ require(MAX_PER_TX >= _amount , "Excess max per paid tx"); require(_amount * price == msg.value, "Invalid funds provided"); } _safeMint(_caller, _amount); } function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function configthevibes() external onlyOwner { _safeMint(_msgSender(), 5); } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } } contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"configthevibes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273f528e3c3b439d385b958741753a9ca518e952257600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806060016040528060368152602001620041fa60369139600a90805190602001906200008a9291906200028b565b5060405180602001604052806000815250600b9080519060200190620000b29291906200028b565b506001600c60006101000a81548160ff021916908315150217905550348015620000db57600080fd5b506040518060400160405280600681526020017f56696265727300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f56696265727300000000000000000000000000000000000000000000000000008152508160029080519060200190620001609291906200028b565b508060039080519060200190620001799291906200028b565b506200018a620001b860201b60201c565b6000819055505050620001b2620001a6620001bd60201b60201c565b620001c560201b60201c565b6200039f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000299906200036a565b90600052602060002090601f016020900481019282620002bd576000855562000309565b82601f10620002d857805160ff191683800117855562000309565b8280016001018555821562000309579182015b8281111562000308578251825591602001919060010190620002eb565b5b5090506200031891906200031c565b5090565b5b80821115620003375760008160009055506001016200031d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038357607f821691505b6020821081036200039957620003986200033b565b5b50919050565b613e4b80620003af6000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c0326146106a6578063e8a3d485146106d1578063e985e9c5146106fc578063f2fde38b14610739578063f43a22dc14610762576101ee565b8063a22cb465146105ec578063b88d4fde14610615578063c66828621461063e578063c87b56dd14610669576101ee565b8063938e3d7b116100dc578063938e3d7b1461055157806395d89b411461057a578063a035b1fe146105a5578063a0712d68146105d0576101ee565b8063715018a6146104cd5780637a73b48b146104e45780638069876d146104fb5780638da5cb5b14610526576101ee565b80633ccfd60b116101855780635c975abb116101545780635c975abb146103fd5780636352211e146104285780636c0360eb1461046557806370a0823114610490576101ee565b80633ccfd60b1461036957806342842e0e14610380578063463fff79146103a957806355f804b3146103d4576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd1461031557806332cb6b0c1461033e576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612dcd565b61078d565b6040516102279190612e15565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612e5c565b61086f565b005b34801561026557600080fd5b5061026e610967565b60405161027b9190612f22565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612f7a565b6109f9565b6040516102b89190612fe8565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e3919061302f565b610a75565b005b3480156102f657600080fd5b506102ff610b7f565b60405161030c919061307e565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613099565b610b96565b005b34801561034a57600080fd5b50610353610ba6565b604051610360919061307e565b60405180910390f35b34801561037557600080fd5b5061037e610bac565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613099565b610d43565b005b3480156103b557600080fd5b506103be610d63565b6040516103cb919061307e565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613221565b610d68565b005b34801561040957600080fd5b50610412610e5d565b60405161041f9190612e15565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612f7a565b610e70565b60405161045c9190612fe8565b60405180910390f35b34801561047157600080fd5b5061047a610e86565b6040516104879190612f22565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b2919061326a565b610f14565b6040516104c4919061307e565b60405180910390f35b3480156104d957600080fd5b506104e2610fe3565b005b3480156104f057600080fd5b506104f961106b565b005b34801561050757600080fd5b5061051061115a565b60405161051d919061307e565b60405180910390f35b34801561053257600080fd5b5061053b61115f565b6040516105489190612fe8565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613221565b611189565b005b34801561058657600080fd5b5061058f61127e565b60405161059c9190612f22565b60405180910390f35b3480156105b157600080fd5b506105ba611310565b6040516105c7919061307e565b60405180910390f35b6105ea60048036038101906105e59190612f7a565b61131b565b005b3480156105f857600080fd5b50610613600480360381019061060e9190613297565b6115c2565b005b34801561062157600080fd5b5061063c60048036038101906106379190613378565b611739565b005b34801561064a57600080fd5b506106536117b5565b6040516106609190612f22565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190612f7a565b6117ee565b60405161069d9190612f22565b60405180910390f35b3480156106b257600080fd5b506106bb6118cd565b6040516106c89190612fe8565b60405180910390f35b3480156106dd57600080fd5b506106e66118e5565b6040516106f39190612f22565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e91906133fb565b611973565b6040516107309190612e15565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b919061326a565b611a57565b005b34801561076e57600080fd5b50610777611b4e565b604051610784919061307e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610868575061086782611b53565b5b9050919050565b610877611bbd565b73ffffffffffffffffffffffffffffffffffffffff1661089561115f565b73ffffffffffffffffffffffffffffffffffffffff16148061090b57506108ba611bbd565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190613487565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606060028054610976906134d6565b80601f01602080910402602001604051908101604052809291908181526020018280546109a2906134d6565b80156109ef5780601f106109c4576101008083540402835291602001916109ef565b820191906000526020600020905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b6000610a0482611bc5565b610a3a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8082610e70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b06611bbd565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b385750610b3681610b31611bbd565b611973565b155b15610b6f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b7a838383611c13565b505050565b6000610b89611cc5565b6001546000540303905090565b610ba1838383611cca565b505050565b6103e781565b610bb4611bbd565b73ffffffffffffffffffffffffffffffffffffffff16610bd261115f565b73ffffffffffffffffffffffffffffffffffffffff161480610c485750610bf7611bbd565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90613487565b60405180910390fd5b60004790506000610c96611bbd565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cb990613538565b60006040518083038185875af1925050503d8060008114610cf6576040519150601f19603f3d011682016040523d82523d6000602084013e610cfb565b606091505b5050905080610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690613599565b60405180910390fd5b5050565b610d5e83838360405180602001604052806000815250611739565b505050565b600381565b610d70611bbd565b73ffffffffffffffffffffffffffffffffffffffff16610d8e61115f565b73ffffffffffffffffffffffffffffffffffffffff161480610e045750610db3611bbd565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90613487565b60405180910390fd5b80600a9080519060200190610e59929190612c7b565b5050565b600c60009054906101000a900460ff1681565b6000610e7b826121b9565b600001519050919050565b600a8054610e93906134d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebf906134d6565b8015610f0c5780601f10610ee157610100808354040283529160200191610f0c565b820191906000526020600020905b815481529060010190602001808311610eef57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610feb611bbd565b73ffffffffffffffffffffffffffffffffffffffff1661100961115f565b73ffffffffffffffffffffffffffffffffffffffff161461105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613487565b60405180910390fd5b6110696000612448565b565b611073611bbd565b73ffffffffffffffffffffffffffffffffffffffff1661109161115f565b73ffffffffffffffffffffffffffffffffffffffff16148061110757506110b6611bbd565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613487565b60405180910390fd5b611158611151611bbd565b600561250e565b565b60de81565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611191611bbd565b73ffffffffffffffffffffffffffffffffffffffff166111af61115f565b73ffffffffffffffffffffffffffffffffffffffff16148061122557506111d4611bbd565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90613487565b60405180910390fd5b80600b908051906020019061127a929190612c7b565b5050565b60606003805461128d906134d6565b80601f01602080910402602001604051908101604052809291908181526020018280546112b9906134d6565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b5050505050905090565b660e35fa931a000081565b6000611325611bbd565b9050600c60009054906101000a900460ff1615611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90613605565b60405180910390fd5b81611380610b7f565b61138a9190613654565b6103e710156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906136f6565b60405180910390fd5b60008211611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613762565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461147f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611476906137ce565b60405180910390fd5b81600a10156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba9061383a565b60405180910390fd5b6114cb610b7f565b60de1061151b578160031015611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d906138a6565b60405180910390fd5b6115b4565b81600a101561155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061383a565b60405180910390fd5b34660e35fa931a00008361157391906138c6565b146115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa9061396c565b60405180910390fd5b5b6115be818361250e565b5050565b6115ca611bbd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061163b611bbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e8611bbd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172d9190612e15565b60405180910390a35050565b611744848484611cca565b6117638373ffffffffffffffffffffffffffffffffffffffff1661252c565b801561177857506117768484848461254f565b155b156117af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606117f982611bc5565b611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f906139d8565b60405180910390fd5b6000600a8054611847906134d6565b90501161186357604051806020016040528060008152506118c6565b600a61186e8361269f565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016118b693929190613ac8565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b80546118f2906134d6565b80601f016020809104026020016040519081016040528092919081815260200182805461191e906134d6565b801561196b5780601f106119405761010080835404028352916020019161196b565b820191906000526020600020905b81548152906001019060200180831161194e57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119dd9190612fe8565b602060405180830381865afa1580156119fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1e9190613b37565b73ffffffffffffffffffffffffffffffffffffffff1603611a43576001915050611a51565b611a4d84846127ff565b9150505b92915050565b611a5f611bbd565b73ffffffffffffffffffffffffffffffffffffffff16611a7d61115f565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90613487565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613bd6565b60405180910390fd5b611b4b81612448565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611bd0611cc5565b11158015611bdf575060005482105b8015611c0c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cd5826121b9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cfc611bbd565b73ffffffffffffffffffffffffffffffffffffffff161480611d2f5750611d2e8260000151611d29611bbd565b611973565b5b80611d745750611d3d611bbd565b73ffffffffffffffffffffffffffffffffffffffff16611d5c846109f9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dad576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e16576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e7c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e898585856001612893565b611e996000848460000151611c13565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612149576000548110156121485782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121b28585856001612899565b5050505050565b6121c1612d01565b6000829050806121cf611cc5565b111580156121de575060005481105b15612411576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161240f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122f3578092505050612443565b5b60011561240e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612409578092505050612443565b6122f4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61252882826040518060200160405280600081525061289f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612575611bbd565b8786866040518563ffffffff1660e01b81526004016125979493929190613c4b565b6020604051808303816000875af19250505080156125d357506040513d601f19601f820116820180604052508101906125d09190613cac565b60015b61264c573d8060008114612603576040519150601f19603f3d011682016040523d82523d6000602084013e612608565b606091505b506000815103612644576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036126e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127fa565b600082905060005b6000821461271857808061270190613cd9565b915050600a826127119190613d50565b91506126ee565b60008167ffffffffffffffff811115612734576127336130f6565b5b6040519080825280601f01601f1916602001820160405280156127665781602001600182028036833780820191505090505b5090505b600085146127f35760018261277f9190613d81565b9150600a8561278e9190613db5565b603061279a9190613654565b60f81b8183815181106127b0576127af613de6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127ec9190613d50565b945061276a565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6128ac83838360016128b1565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361291d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612957576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129646000868387612893565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b2e5750612b2d8773ffffffffffffffffffffffffffffffffffffffff1661252c565b5b15612bf3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ba3600088848060010195508861254f565b612bd9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612b34578260005414612bee57600080fd5b612c5e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612bf4575b816000819055505050612c746000868387612899565b5050505050565b828054612c87906134d6565b90600052602060002090601f016020900481019282612ca95760008555612cf0565b82601f10612cc257805160ff1916838001178555612cf0565b82800160010185558215612cf0579182015b82811115612cef578251825591602001919060010190612cd4565b5b509050612cfd9190612d44565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d5d576000816000905550600101612d45565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612daa81612d75565b8114612db557600080fd5b50565b600081359050612dc781612da1565b92915050565b600060208284031215612de357612de2612d6b565b5b6000612df184828501612db8565b91505092915050565b60008115159050919050565b612e0f81612dfa565b82525050565b6000602082019050612e2a6000830184612e06565b92915050565b612e3981612dfa565b8114612e4457600080fd5b50565b600081359050612e5681612e30565b92915050565b600060208284031215612e7257612e71612d6b565b5b6000612e8084828501612e47565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ec3578082015181840152602081019050612ea8565b83811115612ed2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ef482612e89565b612efe8185612e94565b9350612f0e818560208601612ea5565b612f1781612ed8565b840191505092915050565b60006020820190508181036000830152612f3c8184612ee9565b905092915050565b6000819050919050565b612f5781612f44565b8114612f6257600080fd5b50565b600081359050612f7481612f4e565b92915050565b600060208284031215612f9057612f8f612d6b565b5b6000612f9e84828501612f65565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fd282612fa7565b9050919050565b612fe281612fc7565b82525050565b6000602082019050612ffd6000830184612fd9565b92915050565b61300c81612fc7565b811461301757600080fd5b50565b60008135905061302981613003565b92915050565b6000806040838503121561304657613045612d6b565b5b60006130548582860161301a565b925050602061306585828601612f65565b9150509250929050565b61307881612f44565b82525050565b6000602082019050613093600083018461306f565b92915050565b6000806000606084860312156130b2576130b1612d6b565b5b60006130c08682870161301a565b93505060206130d18682870161301a565b92505060406130e286828701612f65565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61312e82612ed8565b810181811067ffffffffffffffff8211171561314d5761314c6130f6565b5b80604052505050565b6000613160612d61565b905061316c8282613125565b919050565b600067ffffffffffffffff82111561318c5761318b6130f6565b5b61319582612ed8565b9050602081019050919050565b82818337600083830152505050565b60006131c46131bf84613171565b613156565b9050828152602081018484840111156131e0576131df6130f1565b5b6131eb8482856131a2565b509392505050565b600082601f830112613208576132076130ec565b5b81356132188482602086016131b1565b91505092915050565b60006020828403121561323757613236612d6b565b5b600082013567ffffffffffffffff81111561325557613254612d70565b5b613261848285016131f3565b91505092915050565b6000602082840312156132805761327f612d6b565b5b600061328e8482850161301a565b91505092915050565b600080604083850312156132ae576132ad612d6b565b5b60006132bc8582860161301a565b92505060206132cd85828601612e47565b9150509250929050565b600067ffffffffffffffff8211156132f2576132f16130f6565b5b6132fb82612ed8565b9050602081019050919050565b600061331b613316846132d7565b613156565b905082815260208101848484011115613337576133366130f1565b5b6133428482856131a2565b509392505050565b600082601f83011261335f5761335e6130ec565b5b813561336f848260208601613308565b91505092915050565b6000806000806080858703121561339257613391612d6b565b5b60006133a08782880161301a565b94505060206133b18782880161301a565b93505060406133c287828801612f65565b925050606085013567ffffffffffffffff8111156133e3576133e2612d70565b5b6133ef8782880161334a565b91505092959194509250565b6000806040838503121561341257613411612d6b565b5b60006134208582860161301a565b92505060206134318582860161301a565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613471602083612e94565b915061347c8261343b565b602082019050919050565b600060208201905081810360008301526134a081613464565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ee57607f821691505b602082108103613501576135006134a7565b5b50919050565b600081905092915050565b50565b6000613522600083613507565b915061352d82613512565b600082019050919050565b600061354382613515565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6000613583600e83612e94565b915061358e8261354d565b602082019050919050565b600060208201905081810360008301526135b281613576565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006135ef600683612e94565b91506135fa826135b9565b602082019050919050565b6000602082019050818103600083015261361e816135e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061365f82612f44565b915061366a83612f44565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561369f5761369e613625565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006136e0601283612e94565b91506136eb826136aa565b602082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b600061374c600a83612e94565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006137b8600c83612e94565b91506137c382613782565b602082019050919050565b600060208201905081810360008301526137e7816137ab565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613824601683612e94565b915061382f826137ee565b602082019050919050565b6000602082019050818103600083015261385381613817565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613890601683612e94565b915061389b8261385a565b602082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b60006138d182612f44565b91506138dc83612f44565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391557613914613625565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613956601683612e94565b915061396182613920565b602082019050919050565b6000602082019050818103600083015261398581613949565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006139c2601583612e94565b91506139cd8261398c565b602082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613a25816134d6565b613a2f81866139f8565b94506001821660008114613a4a5760018114613a5b57613a8e565b60ff19831686528186019350613a8e565b613a6485613a03565b60005b83811015613a8657815481890152600182019150602081019050613a67565b838801955050505b50505092915050565b6000613aa282612e89565b613aac81856139f8565b9350613abc818560208601612ea5565b80840191505092915050565b6000613ad48286613a18565b9150613ae08285613a97565b9150613aec8284613a97565b9150819050949350505050565b6000613b0482612fc7565b9050919050565b613b1481613af9565b8114613b1f57600080fd5b50565b600081519050613b3181613b0b565b92915050565b600060208284031215613b4d57613b4c612d6b565b5b6000613b5b84828501613b22565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bc0602683612e94565b9150613bcb82613b64565b604082019050919050565b60006020820190508181036000830152613bef81613bb3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c1d82613bf6565b613c278185613c01565b9350613c37818560208601612ea5565b613c4081612ed8565b840191505092915050565b6000608082019050613c606000830187612fd9565b613c6d6020830186612fd9565b613c7a604083018561306f565b8181036060830152613c8c8184613c12565b905095945050505050565b600081519050613ca681612da1565b92915050565b600060208284031215613cc257613cc1612d6b565b5b6000613cd084828501613c97565b91505092915050565b6000613ce482612f44565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d1657613d15613625565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d5b82612f44565b9150613d6683612f44565b925082613d7657613d75613d21565b5b828204905092915050565b6000613d8c82612f44565b9150613d9783612f44565b925082821015613daa57613da9613625565b5b828203905092915050565b6000613dc082612f44565b9150613dcb83612f44565b925082613ddb57613dda613d21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220cb5c94482e0aecf8fa68512acbdabe1584fb26e0da18f6b4aa1a22690ae3fa5664736f6c634300080e0033697066733a2f2f516d5a6831427656723157623170584143784271506b376973744a626938506a487957584b7a75665362557068712f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c0326146106a6578063e8a3d485146106d1578063e985e9c5146106fc578063f2fde38b14610739578063f43a22dc14610762576101ee565b8063a22cb465146105ec578063b88d4fde14610615578063c66828621461063e578063c87b56dd14610669576101ee565b8063938e3d7b116100dc578063938e3d7b1461055157806395d89b411461057a578063a035b1fe146105a5578063a0712d68146105d0576101ee565b8063715018a6146104cd5780637a73b48b146104e45780638069876d146104fb5780638da5cb5b14610526576101ee565b80633ccfd60b116101855780635c975abb116101545780635c975abb146103fd5780636352211e146104285780636c0360eb1461046557806370a0823114610490576101ee565b80633ccfd60b1461036957806342842e0e14610380578063463fff79146103a957806355f804b3146103d4576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd1461031557806332cb6b0c1461033e576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612dcd565b61078d565b6040516102279190612e15565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612e5c565b61086f565b005b34801561026557600080fd5b5061026e610967565b60405161027b9190612f22565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612f7a565b6109f9565b6040516102b89190612fe8565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e3919061302f565b610a75565b005b3480156102f657600080fd5b506102ff610b7f565b60405161030c919061307e565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613099565b610b96565b005b34801561034a57600080fd5b50610353610ba6565b604051610360919061307e565b60405180910390f35b34801561037557600080fd5b5061037e610bac565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613099565b610d43565b005b3480156103b557600080fd5b506103be610d63565b6040516103cb919061307e565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613221565b610d68565b005b34801561040957600080fd5b50610412610e5d565b60405161041f9190612e15565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612f7a565b610e70565b60405161045c9190612fe8565b60405180910390f35b34801561047157600080fd5b5061047a610e86565b6040516104879190612f22565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b2919061326a565b610f14565b6040516104c4919061307e565b60405180910390f35b3480156104d957600080fd5b506104e2610fe3565b005b3480156104f057600080fd5b506104f961106b565b005b34801561050757600080fd5b5061051061115a565b60405161051d919061307e565b60405180910390f35b34801561053257600080fd5b5061053b61115f565b6040516105489190612fe8565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613221565b611189565b005b34801561058657600080fd5b5061058f61127e565b60405161059c9190612f22565b60405180910390f35b3480156105b157600080fd5b506105ba611310565b6040516105c7919061307e565b60405180910390f35b6105ea60048036038101906105e59190612f7a565b61131b565b005b3480156105f857600080fd5b50610613600480360381019061060e9190613297565b6115c2565b005b34801561062157600080fd5b5061063c60048036038101906106379190613378565b611739565b005b34801561064a57600080fd5b506106536117b5565b6040516106609190612f22565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190612f7a565b6117ee565b60405161069d9190612f22565b60405180910390f35b3480156106b257600080fd5b506106bb6118cd565b6040516106c89190612fe8565b60405180910390f35b3480156106dd57600080fd5b506106e66118e5565b6040516106f39190612f22565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e91906133fb565b611973565b6040516107309190612e15565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b919061326a565b611a57565b005b34801561076e57600080fd5b50610777611b4e565b604051610784919061307e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610868575061086782611b53565b5b9050919050565b610877611bbd565b73ffffffffffffffffffffffffffffffffffffffff1661089561115f565b73ffffffffffffffffffffffffffffffffffffffff16148061090b57506108ba611bbd565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190613487565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606060028054610976906134d6565b80601f01602080910402602001604051908101604052809291908181526020018280546109a2906134d6565b80156109ef5780601f106109c4576101008083540402835291602001916109ef565b820191906000526020600020905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b6000610a0482611bc5565b610a3a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8082610e70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b06611bbd565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b385750610b3681610b31611bbd565b611973565b155b15610b6f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b7a838383611c13565b505050565b6000610b89611cc5565b6001546000540303905090565b610ba1838383611cca565b505050565b6103e781565b610bb4611bbd565b73ffffffffffffffffffffffffffffffffffffffff16610bd261115f565b73ffffffffffffffffffffffffffffffffffffffff161480610c485750610bf7611bbd565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90613487565b60405180910390fd5b60004790506000610c96611bbd565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cb990613538565b60006040518083038185875af1925050503d8060008114610cf6576040519150601f19603f3d011682016040523d82523d6000602084013e610cfb565b606091505b5050905080610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690613599565b60405180910390fd5b5050565b610d5e83838360405180602001604052806000815250611739565b505050565b600381565b610d70611bbd565b73ffffffffffffffffffffffffffffffffffffffff16610d8e61115f565b73ffffffffffffffffffffffffffffffffffffffff161480610e045750610db3611bbd565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90613487565b60405180910390fd5b80600a9080519060200190610e59929190612c7b565b5050565b600c60009054906101000a900460ff1681565b6000610e7b826121b9565b600001519050919050565b600a8054610e93906134d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebf906134d6565b8015610f0c5780601f10610ee157610100808354040283529160200191610f0c565b820191906000526020600020905b815481529060010190602001808311610eef57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610feb611bbd565b73ffffffffffffffffffffffffffffffffffffffff1661100961115f565b73ffffffffffffffffffffffffffffffffffffffff161461105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613487565b60405180910390fd5b6110696000612448565b565b611073611bbd565b73ffffffffffffffffffffffffffffffffffffffff1661109161115f565b73ffffffffffffffffffffffffffffffffffffffff16148061110757506110b6611bbd565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613487565b60405180910390fd5b611158611151611bbd565b600561250e565b565b60de81565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611191611bbd565b73ffffffffffffffffffffffffffffffffffffffff166111af61115f565b73ffffffffffffffffffffffffffffffffffffffff16148061122557506111d4611bbd565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90613487565b60405180910390fd5b80600b908051906020019061127a929190612c7b565b5050565b60606003805461128d906134d6565b80601f01602080910402602001604051908101604052809291908181526020018280546112b9906134d6565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b5050505050905090565b660e35fa931a000081565b6000611325611bbd565b9050600c60009054906101000a900460ff1615611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90613605565b60405180910390fd5b81611380610b7f565b61138a9190613654565b6103e710156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906136f6565b60405180910390fd5b60008211611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613762565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461147f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611476906137ce565b60405180910390fd5b81600a10156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba9061383a565b60405180910390fd5b6114cb610b7f565b60de1061151b578160031015611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d906138a6565b60405180910390fd5b6115b4565b81600a101561155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061383a565b60405180910390fd5b34660e35fa931a00008361157391906138c6565b146115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa9061396c565b60405180910390fd5b5b6115be818361250e565b5050565b6115ca611bbd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061163b611bbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e8611bbd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172d9190612e15565b60405180910390a35050565b611744848484611cca565b6117638373ffffffffffffffffffffffffffffffffffffffff1661252c565b801561177857506117768484848461254f565b155b156117af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606117f982611bc5565b611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f906139d8565b60405180910390fd5b6000600a8054611847906134d6565b90501161186357604051806020016040528060008152506118c6565b600a61186e8361269f565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016118b693929190613ac8565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b80546118f2906134d6565b80601f016020809104026020016040519081016040528092919081815260200182805461191e906134d6565b801561196b5780601f106119405761010080835404028352916020019161196b565b820191906000526020600020905b81548152906001019060200180831161194e57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119dd9190612fe8565b602060405180830381865afa1580156119fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1e9190613b37565b73ffffffffffffffffffffffffffffffffffffffff1603611a43576001915050611a51565b611a4d84846127ff565b9150505b92915050565b611a5f611bbd565b73ffffffffffffffffffffffffffffffffffffffff16611a7d61115f565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90613487565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613bd6565b60405180910390fd5b611b4b81612448565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611bd0611cc5565b11158015611bdf575060005482105b8015611c0c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cd5826121b9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cfc611bbd565b73ffffffffffffffffffffffffffffffffffffffff161480611d2f5750611d2e8260000151611d29611bbd565b611973565b5b80611d745750611d3d611bbd565b73ffffffffffffffffffffffffffffffffffffffff16611d5c846109f9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dad576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e16576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e7c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e898585856001612893565b611e996000848460000151611c13565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612149576000548110156121485782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121b28585856001612899565b5050505050565b6121c1612d01565b6000829050806121cf611cc5565b111580156121de575060005481105b15612411576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161240f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122f3578092505050612443565b5b60011561240e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612409578092505050612443565b6122f4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61252882826040518060200160405280600081525061289f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612575611bbd565b8786866040518563ffffffff1660e01b81526004016125979493929190613c4b565b6020604051808303816000875af19250505080156125d357506040513d601f19601f820116820180604052508101906125d09190613cac565b60015b61264c573d8060008114612603576040519150601f19603f3d011682016040523d82523d6000602084013e612608565b606091505b506000815103612644576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036126e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127fa565b600082905060005b6000821461271857808061270190613cd9565b915050600a826127119190613d50565b91506126ee565b60008167ffffffffffffffff811115612734576127336130f6565b5b6040519080825280601f01601f1916602001820160405280156127665781602001600182028036833780820191505090505b5090505b600085146127f35760018261277f9190613d81565b9150600a8561278e9190613db5565b603061279a9190613654565b60f81b8183815181106127b0576127af613de6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127ec9190613d50565b945061276a565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6128ac83838360016128b1565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361291d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612957576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129646000868387612893565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b2e5750612b2d8773ffffffffffffffffffffffffffffffffffffffff1661252c565b5b15612bf3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ba3600088848060010195508861254f565b612bd9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612b34578260005414612bee57600080fd5b612c5e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612bf4575b816000819055505050612c746000868387612899565b5050505050565b828054612c87906134d6565b90600052602060002090601f016020900481019282612ca95760008555612cf0565b82601f10612cc257805160ff1916838001178555612cf0565b82800160010185558215612cf0579182015b82811115612cef578251825591602001919060010190612cd4565b5b509050612cfd9190612d44565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d5d576000816000905550600101612d45565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612daa81612d75565b8114612db557600080fd5b50565b600081359050612dc781612da1565b92915050565b600060208284031215612de357612de2612d6b565b5b6000612df184828501612db8565b91505092915050565b60008115159050919050565b612e0f81612dfa565b82525050565b6000602082019050612e2a6000830184612e06565b92915050565b612e3981612dfa565b8114612e4457600080fd5b50565b600081359050612e5681612e30565b92915050565b600060208284031215612e7257612e71612d6b565b5b6000612e8084828501612e47565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ec3578082015181840152602081019050612ea8565b83811115612ed2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ef482612e89565b612efe8185612e94565b9350612f0e818560208601612ea5565b612f1781612ed8565b840191505092915050565b60006020820190508181036000830152612f3c8184612ee9565b905092915050565b6000819050919050565b612f5781612f44565b8114612f6257600080fd5b50565b600081359050612f7481612f4e565b92915050565b600060208284031215612f9057612f8f612d6b565b5b6000612f9e84828501612f65565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fd282612fa7565b9050919050565b612fe281612fc7565b82525050565b6000602082019050612ffd6000830184612fd9565b92915050565b61300c81612fc7565b811461301757600080fd5b50565b60008135905061302981613003565b92915050565b6000806040838503121561304657613045612d6b565b5b60006130548582860161301a565b925050602061306585828601612f65565b9150509250929050565b61307881612f44565b82525050565b6000602082019050613093600083018461306f565b92915050565b6000806000606084860312156130b2576130b1612d6b565b5b60006130c08682870161301a565b93505060206130d18682870161301a565b92505060406130e286828701612f65565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61312e82612ed8565b810181811067ffffffffffffffff8211171561314d5761314c6130f6565b5b80604052505050565b6000613160612d61565b905061316c8282613125565b919050565b600067ffffffffffffffff82111561318c5761318b6130f6565b5b61319582612ed8565b9050602081019050919050565b82818337600083830152505050565b60006131c46131bf84613171565b613156565b9050828152602081018484840111156131e0576131df6130f1565b5b6131eb8482856131a2565b509392505050565b600082601f830112613208576132076130ec565b5b81356132188482602086016131b1565b91505092915050565b60006020828403121561323757613236612d6b565b5b600082013567ffffffffffffffff81111561325557613254612d70565b5b613261848285016131f3565b91505092915050565b6000602082840312156132805761327f612d6b565b5b600061328e8482850161301a565b91505092915050565b600080604083850312156132ae576132ad612d6b565b5b60006132bc8582860161301a565b92505060206132cd85828601612e47565b9150509250929050565b600067ffffffffffffffff8211156132f2576132f16130f6565b5b6132fb82612ed8565b9050602081019050919050565b600061331b613316846132d7565b613156565b905082815260208101848484011115613337576133366130f1565b5b6133428482856131a2565b509392505050565b600082601f83011261335f5761335e6130ec565b5b813561336f848260208601613308565b91505092915050565b6000806000806080858703121561339257613391612d6b565b5b60006133a08782880161301a565b94505060206133b18782880161301a565b93505060406133c287828801612f65565b925050606085013567ffffffffffffffff8111156133e3576133e2612d70565b5b6133ef8782880161334a565b91505092959194509250565b6000806040838503121561341257613411612d6b565b5b60006134208582860161301a565b92505060206134318582860161301a565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613471602083612e94565b915061347c8261343b565b602082019050919050565b600060208201905081810360008301526134a081613464565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ee57607f821691505b602082108103613501576135006134a7565b5b50919050565b600081905092915050565b50565b6000613522600083613507565b915061352d82613512565b600082019050919050565b600061354382613515565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6000613583600e83612e94565b915061358e8261354d565b602082019050919050565b600060208201905081810360008301526135b281613576565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006135ef600683612e94565b91506135fa826135b9565b602082019050919050565b6000602082019050818103600083015261361e816135e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061365f82612f44565b915061366a83612f44565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561369f5761369e613625565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006136e0601283612e94565b91506136eb826136aa565b602082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b600061374c600a83612e94565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006137b8600c83612e94565b91506137c382613782565b602082019050919050565b600060208201905081810360008301526137e7816137ab565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613824601683612e94565b915061382f826137ee565b602082019050919050565b6000602082019050818103600083015261385381613817565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613890601683612e94565b915061389b8261385a565b602082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b60006138d182612f44565b91506138dc83612f44565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391557613914613625565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613956601683612e94565b915061396182613920565b602082019050919050565b6000602082019050818103600083015261398581613949565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006139c2601583612e94565b91506139cd8261398c565b602082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613a25816134d6565b613a2f81866139f8565b94506001821660008114613a4a5760018114613a5b57613a8e565b60ff19831686528186019350613a8e565b613a6485613a03565b60005b83811015613a8657815481890152600182019150602081019050613a67565b838801955050505b50505092915050565b6000613aa282612e89565b613aac81856139f8565b9350613abc818560208601612ea5565b80840191505092915050565b6000613ad48286613a18565b9150613ae08285613a97565b9150613aec8284613a97565b9150819050949350505050565b6000613b0482612fc7565b9050919050565b613b1481613af9565b8114613b1f57600080fd5b50565b600081519050613b3181613b0b565b92915050565b600060208284031215613b4d57613b4c612d6b565b5b6000613b5b84828501613b22565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bc0602683612e94565b9150613bcb82613b64565b604082019050919050565b60006020820190508181036000830152613bef81613bb3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c1d82613bf6565b613c278185613c01565b9350613c37818560208601612ea5565b613c4081612ed8565b840191505092915050565b6000608082019050613c606000830187612fd9565b613c6d6020830186612fd9565b613c7a604083018561306f565b8181036060830152613c8c8184613c12565b905095945050505050565b600081519050613ca681612da1565b92915050565b600060208284031215613cc257613cc1612d6b565b5b6000613cd084828501613c97565b91505092915050565b6000613ce482612f44565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d1657613d15613625565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d5b82612f44565b9150613d6683612f44565b925082613d7657613d75613d21565b5b828204905092915050565b6000613d8c82612f44565b9150613d9783612f44565b925082821015613daa57613da9613625565b5b828203905092915050565b6000613dc082612f44565b9150613dcb83612f44565b925082613ddb57613dda613d21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220cb5c94482e0aecf8fa68512acbdabe1584fb26e0da18f6b4aa1a22690ae3fa5664736f6c634300080e0033
Deployed Bytecode Sourcemap
46702:2849:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29235:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48865:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32620:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34123:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33686:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28484:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34980:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47171:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48550:209;;;;;;;;;;;;;:::i;:::-;;35221:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47023:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48954:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47270:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32429:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46748:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29604:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3434:103;;;;;;;;;;;;;:::i;:::-;;48767:90;;;;;;;;;;;;;:::i;:::-;;47073:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2783:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49062:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32789:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47218:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47356:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34399:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35477:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46872:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49186:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46925:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46835:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48097:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3692:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47125:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29235:305;29337:4;29389:25;29374:40;;;:11;:40;;;;:105;;;;29446:33;29431:48;;;:11;:48;;;;29374:105;:158;;;;29496:36;29520:11;29496:23;:36::i;:::-;29374:158;29354:178;;29235:305;;;:::o;48865:81::-;25716:12;:10;:12::i;:::-;25705:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25742:12;:10;:12::i;:::-;25732:22;;:6;;;;;;;;;;;:22;;;25705:49;25697:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48932:6:::1;48923;;:15;;;;;;;;;;;;;;;;;;48865:81:::0;:::o;32620:100::-;32674:13;32707:5;32700:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32620:100;:::o;34123:204::-;34191:7;34216:16;34224:7;34216;:16::i;:::-;34211:64;;34241:34;;;;;;;;;;;;;;34211:64;34295:15;:24;34311:7;34295:24;;;;;;;;;;;;;;;;;;;;;34288:31;;34123:204;;;:::o;33686:371::-;33759:13;33775:24;33791:7;33775:15;:24::i;:::-;33759:40;;33820:5;33814:11;;:2;:11;;;33810:48;;33834:24;;;;;;;;;;;;;;33810:48;33891:5;33875:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33901:37;33918:5;33925:12;:10;:12::i;:::-;33901:16;:37::i;:::-;33900:38;33875:63;33871:138;;;33962:35;;;;;;;;;;;;;;33871:138;34021:28;34030:2;34034:7;34043:5;34021:8;:28::i;:::-;33748:309;33686:371;;:::o;28484:303::-;28528:7;28753:15;:13;:15::i;:::-;28738:12;;28722:13;;:28;:46;28715:53;;28484:303;:::o;34980:170::-;35114:28;35124:4;35130:2;35134:7;35114:9;:28::i;:::-;34980:170;;;:::o;47171:40::-;47208:3;47171:40;:::o;48550:209::-;25716:12;:10;:12::i;:::-;25705:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25742:12;:10;:12::i;:::-;25732:22;;:6;;;;;;;;;;;:22;;;25705:49;25697:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48600:15:::1;48618:21;48600:39;;48651:12;48669;:10;:12::i;:::-;:17;;48694:7;48669:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48650:56;;;48725:7;48717:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48589:170;;48550:209::o:0;35221:185::-;35359:39;35376:4;35382:2;35386:7;35359:39;;;;;;;;;;;;:16;:39::i;:::-;35221:185;;;:::o;47023:43::-;47065:1;47023:43;:::o;48954:100::-;25716:12;:10;:12::i;:::-;25705:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25742:12;:10;:12::i;:::-;25732:22;;:6;;;;;;;;;;;:22;;;25705:49;25697:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49038:8:::1;49028:7;:18;;;;;;;;;;;;:::i;:::-;;48954:100:::0;:::o;47270:25::-;;;;;;;;;;;;;:::o;32429:124::-;32493:7;32520:20;32532:7;32520:11;:20::i;:::-;:25;;;32513:32;;32429:124;;;:::o;46748:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29604:206::-;29668:7;29709:1;29692:19;;:5;:19;;;29688:60;;29720:28;;;;;;;;;;;;;;29688:60;29774:12;:19;29787:5;29774:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29766:36;;29759:43;;29604:206;;;:::o;3434:103::-;3014:12;:10;:12::i;:::-;3003:23;;:7;:5;:7::i;:::-;:23;;;2995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3499:30:::1;3526:1;3499:18;:30::i;:::-;3434:103::o:0;48767:90::-;25716:12;:10;:12::i;:::-;25705:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25742:12;:10;:12::i;:::-;25732:22;;:6;;;;;;;;;;;:22;;;25705:49;25697:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48823:26:::1;48833:12;:10;:12::i;:::-;48847:1;48823:9;:26::i;:::-;48767:90::o:0;47073:45::-;47115:3;47073:45;:::o;2783:87::-;2829:7;2856:6;;;;;;;;;;;2849:13;;2783:87;:::o;49062:116::-;25716:12;:10;:12::i;:::-;25705:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25742:12;:10;:12::i;:::-;25732:22;;:6;;;;;;;;;;;:22;;;25705:49;25697:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49158:12:::1;49144:11;:26;;;;;;;;;;;;:::i;:::-;;49062:116:::0;:::o;32789:104::-;32845:13;32878:7;32871:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32789:104;:::o;47218:43::-;47250:11;47218:43;:::o;47356:733::-;47415:15;47433:12;:10;:12::i;:::-;47415:30;;47465:6;;;;;;;;;;;47464:7;47456:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47531:7;47515:13;:11;:13::i;:::-;:23;;;;:::i;:::-;47208:3;47501:37;;47493:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47590:1;47580:7;:11;47572:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47638:7;47625:20;;:9;:20;;;47617:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47695:7;47162:2;47681:21;;47673:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47771:13;:11;:13::i;:::-;47115:3;47752:32;47749:291;;47827:7;47065:1;47808:26;;47800:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47749:291;;;47915:7;47162:2;47901:21;;47893:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47992:9;47250:11;47973:7;:15;;;;:::i;:::-;:28;47965:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47749:291;48054:27;48064:7;48073;48054:9;:27::i;:::-;47404:685;47356:733;:::o;34399:279::-;34502:12;:10;:12::i;:::-;34490:24;;:8;:24;;;34486:54;;34523:17;;;;;;;;;;;;;;34486:54;34598:8;34553:18;:32;34572:12;:10;:12::i;:::-;34553:32;;;;;;;;;;;;;;;:42;34586:8;34553:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34651:8;34622:48;;34637:12;:10;:12::i;:::-;34622:48;;;34661:8;34622:48;;;;;;:::i;:::-;;;;;;;;34399:279;;:::o;35477:369::-;35644:28;35654:4;35660:2;35664:7;35644:9;:28::i;:::-;35687:15;:2;:13;;;:15::i;:::-;:76;;;;;35707:56;35738:4;35744:2;35748:7;35757:5;35707:30;:56::i;:::-;35706:57;35687:76;35683:156;;;35787:40;;;;;;;;;;;;;;35683:156;35477:369;;;;:::o;46872:46::-;;;;;;;;;;;;;;;;;;;:::o;49186:362::-;49252:13;49286:17;49294:8;49286:7;:17::i;:::-;49278:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49371:1;49353:7;49347:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49429:7;49453:26;49470:8;49453:16;:26::i;:::-;49496:13;;;;;;;;;;;;;;;;;49396:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49347:193;49340:200;;49186:362;;;:::o;46925:89::-;46972:42;46925:89;:::o;46835:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48097:445::-;48222:4;48307:27;46972:42;48307:65;;48428:8;48387:49;;48395:13;:21;;;48417:5;48395:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48387:49;;;48383:93;;48460:4;48453:11;;;;;48383:93;48495:39;48518:5;48525:8;48495:22;:39::i;:::-;48488:46;;;48097:445;;;;;:::o;3692:201::-;3014:12;:10;:12::i;:::-;3003:23;;:7;:5;:7::i;:::-;:23;;;2995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3801:1:::1;3781:22;;:8;:22;;::::0;3773:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3857:28;3876:8;3857:18;:28::i;:::-;3692:201:::0;:::o;47125:39::-;47162:2;47125:39;:::o;24337:157::-;24422:4;24461:25;24446:40;;;:11;:40;;;;24439:47;;24337:157;;;:::o;1524:98::-;1577:7;1604:10;1597:17;;1524:98;:::o;36101:187::-;36158:4;36201:7;36182:15;:13;:15::i;:::-;:26;;:53;;;;;36222:13;;36212:7;:23;36182:53;:98;;;;;36253:11;:20;36265:7;36253:20;;;;;;;;;;;:27;;;;;;;;;;;;36252:28;36182:98;36175:105;;36101:187;;;:::o;43712:196::-;43854:2;43827:15;:24;43843:7;43827:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43892:7;43888:2;43872:28;;43881:5;43872:28;;;;;;;;;;;;43712:196;;;:::o;28208:92::-;28264:7;28208:92;:::o;39214:2112::-;39329:35;39367:20;39379:7;39367:11;:20::i;:::-;39329:58;;39400:22;39442:13;:18;;;39426:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39477:50;39494:13;:18;;;39514:12;:10;:12::i;:::-;39477:16;:50::i;:::-;39426:101;:154;;;;39568:12;:10;:12::i;:::-;39544:36;;:20;39556:7;39544:11;:20::i;:::-;:36;;;39426:154;39400:181;;39599:17;39594:66;;39625:35;;;;;;;;;;;;;;39594:66;39697:4;39675:26;;:13;:18;;;:26;;;39671:67;;39710:28;;;;;;;;;;;;;;39671:67;39767:1;39753:16;;:2;:16;;;39749:52;;39778:23;;;;;;;;;;;;;;39749:52;39814:43;39836:4;39842:2;39846:7;39855:1;39814:21;:43::i;:::-;39922:49;39939:1;39943:7;39952:13;:18;;;39922:8;:49::i;:::-;40297:1;40267:12;:18;40280:4;40267:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40341:1;40313:12;:16;40326:2;40313:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40387:2;40359:11;:20;40371:7;40359:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40449:15;40404:11;:20;40416:7;40404:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40717:19;40749:1;40739:7;:11;40717:33;;40810:1;40769:43;;:11;:24;40781:11;40769:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40765:445;;40994:13;;40980:11;:27;40976:219;;;41064:13;:18;;;41032:11;:24;41044:11;41032:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;41147:13;:28;;;41105:11;:24;41117:11;41105:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40976:219;40765:445;40242:979;41257:7;41253:2;41238:27;;41247:4;41238:27;;;;;;;;;;;;41276:42;41297:4;41303:2;41307:7;41316:1;41276:20;:42::i;:::-;39318:2008;;39214:2112;;;:::o;31259:1108::-;31320:21;;:::i;:::-;31354:12;31369:7;31354:22;;31437:4;31418:15;:13;:15::i;:::-;:23;;:47;;;;;31452:13;;31445:4;:20;31418:47;31414:886;;;31486:31;31520:11;:17;31532:4;31520:17;;;;;;;;;;;31486:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31561:9;:16;;;31556:729;;31632:1;31606:28;;:9;:14;;;:28;;;31602:101;;31670:9;31663:16;;;;;;31602:101;32005:261;32012:4;32005:261;;;32045:6;;;;;;;;32090:11;:17;32102:4;32090:17;;;;;;;;;;;32078:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32164:1;32138:28;;:9;:14;;;:28;;;32134:109;;32206:9;32199:16;;;;;;32134:109;32005:261;;;31556:729;31467:833;31414:886;32328:31;;;;;;;;;;;;;;31259:1108;;;;:::o;4053:191::-;4127:16;4146:6;;;;;;;;;;;4127:25;;4172:8;4163:6;;:17;;;;;;;;;;;;;;;;;;4227:8;4196:40;;4217:8;4196:40;;;;;;;;;;;;4116:128;4053:191;:::o;36296:104::-;36365:27;36375:2;36379:8;36365:27;;;;;;;;;;;;:9;:27::i;:::-;36296:104;;:::o;14114:326::-;14174:4;14431:1;14409:7;:19;;;:23;14402:30;;14114:326;;;:::o;44400:667::-;44563:4;44600:2;44584:36;;;44621:12;:10;:12::i;:::-;44635:4;44641:7;44650:5;44584:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44580:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44835:1;44818:6;:13;:18;44814:235;;44864:40;;;;;;;;;;;;;;44814:235;45007:6;45001:13;44992:6;44988:2;44984:15;44977:38;44580:480;44713:45;;;44703:55;;;:6;:55;;;;44696:62;;;44400:667;;;;;;:::o;21734:723::-;21790:13;22020:1;22011:5;:10;22007:53;;22038:10;;;;;;;;;;;;;;;;;;;;;22007:53;22070:12;22085:5;22070:20;;22101:14;22126:78;22141:1;22133:4;:9;22126:78;;22159:8;;;;;:::i;:::-;;;;22190:2;22182:10;;;;;:::i;:::-;;;22126:78;;;22214:19;22246:6;22236:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22214:39;;22264:154;22280:1;22271:5;:10;22264:154;;22308:1;22298:11;;;;;:::i;:::-;;;22375:2;22367:5;:10;;;;:::i;:::-;22354:2;:24;;;;:::i;:::-;22341:39;;22324:6;22331;22324:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;22404:2;22395:11;;;;;:::i;:::-;;;22264:154;;;22442:6;22428:21;;;;;21734:723;;;;:::o;34749:164::-;34846:4;34870:18;:25;34889:5;34870:25;;;;;;;;;;;;;;;:35;34896:8;34870:35;;;;;;;;;;;;;;;;;;;;;;;;;34863:42;;34749:164;;;;:::o;45715:159::-;;;;;:::o;46533:158::-;;;;;:::o;36763:163::-;36886:32;36892:2;36896:8;36906:5;36913:4;36886:5;:32::i;:::-;36763:163;;;:::o;37185:1775::-;37324:20;37347:13;;37324:36;;37389:1;37375:16;;:2;:16;;;37371:48;;37400:19;;;;;;;;;;;;;;37371:48;37446:1;37434:8;:13;37430:44;;37456:18;;;;;;;;;;;;;;37430:44;37487:61;37517:1;37521:2;37525:12;37539:8;37487:21;:61::i;:::-;37860:8;37825:12;:16;37838:2;37825:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37924:8;37884:12;:16;37897:2;37884:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37983:2;37950:11;:25;37962:12;37950:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38050:15;38000:11;:25;38012:12;38000:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38083:20;38106:12;38083:35;;38133:11;38162:8;38147:12;:23;38133:37;;38191:4;:23;;;;;38199:15;:2;:13;;;:15::i;:::-;38191:23;38187:641;;;38235:314;38291:12;38287:2;38266:38;;38283:1;38266:38;;;;;;;;;;;;38332:69;38371:1;38375:2;38379:14;;;;;;38395:5;38332:30;:69::i;:::-;38327:174;;38437:40;;;;;;;;;;;;;;38327:174;38544:3;38528:12;:19;38235:314;;38630:12;38613:13;;:29;38609:43;;38644:8;;;38609:43;38187:641;;;38693:120;38749:14;;;;;;38745:2;38724:40;;38741:1;38724:40;;;;;;;;;;;;38808:3;38792:12;:19;38693:120;;38187:641;38858:12;38842:13;:28;;;;37800:1082;;38892:60;38921:1;38925:2;38929:12;38943:8;38892:20;:60::i;:::-;37313:1647;37185:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:164::-;15149:16;15145:1;15137:6;15133:14;15126:40;15009:164;:::o;15179:366::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:419::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15804:9;15798:4;15794:20;15790:1;15779:9;15775:17;15768:47;15832:131;15958:4;15832:131;:::i;:::-;15824:139;;15551:419;;;:::o;15976:156::-;16116:8;16112:1;16104:6;16100:14;16093:32;15976:156;:::o;16138:365::-;16280:3;16301:66;16365:1;16360:3;16301:66;:::i;:::-;16294:73;;16376:93;16465:3;16376:93;:::i;:::-;16494:2;16489:3;16485:12;16478:19;;16138:365;;;:::o;16509:419::-;16675:4;16713:2;16702:9;16698:18;16690:26;;16762:9;16756:4;16752:20;16748:1;16737:9;16733:17;16726:47;16790:131;16916:4;16790:131;:::i;:::-;16782:139;;16509:419;;;:::o;16934:180::-;16982:77;16979:1;16972:88;17079:4;17076:1;17069:15;17103:4;17100:1;17093:15;17120:305;17160:3;17179:20;17197:1;17179:20;:::i;:::-;17174:25;;17213:20;17231:1;17213:20;:::i;:::-;17208:25;;17367:1;17299:66;17295:74;17292:1;17289:81;17286:107;;;17373:18;;:::i;:::-;17286:107;17417:1;17414;17410:9;17403:16;;17120:305;;;;:::o;17431:168::-;17571:20;17567:1;17559:6;17555:14;17548:44;17431:168;:::o;17605:366::-;17747:3;17768:67;17832:2;17827:3;17768:67;:::i;:::-;17761:74;;17844:93;17933:3;17844:93;:::i;:::-;17962:2;17957:3;17953:12;17946:19;;17605:366;;;:::o;17977:419::-;18143:4;18181:2;18170:9;18166:18;18158:26;;18230:9;18224:4;18220:20;18216:1;18205:9;18201:17;18194:47;18258:131;18384:4;18258:131;:::i;:::-;18250:139;;17977:419;;;:::o;18402:160::-;18542:12;18538:1;18530:6;18526:14;18519:36;18402:160;:::o;18568:366::-;18710:3;18731:67;18795:2;18790:3;18731:67;:::i;:::-;18724:74;;18807:93;18896:3;18807:93;:::i;:::-;18925:2;18920:3;18916:12;18909:19;;18568:366;;;:::o;18940:419::-;19106:4;19144:2;19133:9;19129:18;19121:26;;19193:9;19187:4;19183:20;19179:1;19168:9;19164:17;19157:47;19221:131;19347:4;19221:131;:::i;:::-;19213:139;;18940:419;;;:::o;19365:162::-;19505:14;19501:1;19493:6;19489:14;19482:38;19365:162;:::o;19533:366::-;19675:3;19696:67;19760:2;19755:3;19696:67;:::i;:::-;19689:74;;19772:93;19861:3;19772:93;:::i;:::-;19890:2;19885:3;19881:12;19874:19;;19533:366;;;:::o;19905:419::-;20071:4;20109:2;20098:9;20094:18;20086:26;;20158:9;20152:4;20148:20;20144:1;20133:9;20129:17;20122:47;20186:131;20312:4;20186:131;:::i;:::-;20178:139;;19905:419;;;:::o;20330:172::-;20470:24;20466:1;20458:6;20454:14;20447:48;20330:172;:::o;20508:366::-;20650:3;20671:67;20735:2;20730:3;20671:67;:::i;:::-;20664:74;;20747:93;20836:3;20747:93;:::i;:::-;20865:2;20860:3;20856:12;20849:19;;20508:366;;;:::o;20880:419::-;21046:4;21084:2;21073:9;21069:18;21061:26;;21133:9;21127:4;21123:20;21119:1;21108:9;21104:17;21097:47;21161:131;21287:4;21161:131;:::i;:::-;21153:139;;20880:419;;;:::o;21305:172::-;21445:24;21441:1;21433:6;21429:14;21422:48;21305:172;:::o;21483:366::-;21625:3;21646:67;21710:2;21705:3;21646:67;:::i;:::-;21639:74;;21722:93;21811:3;21722:93;:::i;:::-;21840:2;21835:3;21831:12;21824:19;;21483:366;;;:::o;21855:419::-;22021:4;22059:2;22048:9;22044:18;22036:26;;22108:9;22102:4;22098:20;22094:1;22083:9;22079:17;22072:47;22136:131;22262:4;22136:131;:::i;:::-;22128:139;;21855:419;;;:::o;22280:348::-;22320:7;22343:20;22361:1;22343:20;:::i;:::-;22338:25;;22377:20;22395:1;22377:20;:::i;:::-;22372:25;;22565:1;22497:66;22493:74;22490:1;22487:81;22482:1;22475:9;22468:17;22464:105;22461:131;;;22572:18;;:::i;:::-;22461:131;22620:1;22617;22613:9;22602:20;;22280:348;;;;:::o;22634:172::-;22774:24;22770:1;22762:6;22758:14;22751:48;22634:172;:::o;22812:366::-;22954:3;22975:67;23039:2;23034:3;22975:67;:::i;:::-;22968:74;;23051:93;23140:3;23051:93;:::i;:::-;23169:2;23164:3;23160:12;23153:19;;22812:366;;;:::o;23184:419::-;23350:4;23388:2;23377:9;23373:18;23365:26;;23437:9;23431:4;23427:20;23423:1;23412:9;23408:17;23401:47;23465:131;23591:4;23465:131;:::i;:::-;23457:139;;23184:419;;;:::o;23609:171::-;23749:23;23745:1;23737:6;23733:14;23726:47;23609:171;:::o;23786:366::-;23928:3;23949:67;24013:2;24008:3;23949:67;:::i;:::-;23942:74;;24025:93;24114:3;24025:93;:::i;:::-;24143:2;24138:3;24134:12;24127:19;;23786:366;;;:::o;24158:419::-;24324:4;24362:2;24351:9;24347:18;24339:26;;24411:9;24405:4;24401:20;24397:1;24386:9;24382:17;24375:47;24439:131;24565:4;24439:131;:::i;:::-;24431:139;;24158:419;;;:::o;24583:148::-;24685:11;24722:3;24707:18;;24583:148;;;;:::o;24737:141::-;24786:4;24809:3;24801:11;;24832:3;24829:1;24822:14;24866:4;24863:1;24853:18;24845:26;;24737:141;;;:::o;24908:845::-;25011:3;25048:5;25042:12;25077:36;25103:9;25077:36;:::i;:::-;25129:89;25211:6;25206:3;25129:89;:::i;:::-;25122:96;;25249:1;25238:9;25234:17;25265:1;25260:137;;;;25411:1;25406:341;;;;25227:520;;25260:137;25344:4;25340:9;25329;25325:25;25320:3;25313:38;25380:6;25375:3;25371:16;25364:23;;25260:137;;25406:341;25473:38;25505:5;25473:38;:::i;:::-;25533:1;25547:154;25561:6;25558:1;25555:13;25547:154;;;25635:7;25629:14;25625:1;25620:3;25616:11;25609:35;25685:1;25676:7;25672:15;25661:26;;25583:4;25580:1;25576:12;25571:17;;25547:154;;;25730:6;25725:3;25721:16;25714:23;;25413:334;;25227:520;;25015:738;;24908:845;;;;:::o;25759:377::-;25865:3;25893:39;25926:5;25893:39;:::i;:::-;25948:89;26030:6;26025:3;25948:89;:::i;:::-;25941:96;;26046:52;26091:6;26086:3;26079:4;26072:5;26068:16;26046:52;:::i;:::-;26123:6;26118:3;26114:16;26107:23;;25869:267;25759:377;;;;:::o;26142:589::-;26367:3;26389:92;26477:3;26468:6;26389:92;:::i;:::-;26382:99;;26498:95;26589:3;26580:6;26498:95;:::i;:::-;26491:102;;26610:95;26701:3;26692:6;26610:95;:::i;:::-;26603:102;;26722:3;26715:10;;26142:589;;;;;;:::o;26737:125::-;26803:7;26832:24;26850:5;26832:24;:::i;:::-;26821:35;;26737:125;;;:::o;26868:180::-;26970:53;27017:5;26970:53;:::i;:::-;26963:5;26960:64;26950:92;;27038:1;27035;27028:12;26950:92;26868:180;:::o;27054:201::-;27140:5;27171:6;27165:13;27156:22;;27187:62;27243:5;27187:62;:::i;:::-;27054:201;;;;:::o;27261:409::-;27360:6;27409:2;27397:9;27388:7;27384:23;27380:32;27377:119;;;27415:79;;:::i;:::-;27377:119;27535:1;27560:93;27645:7;27636:6;27625:9;27621:22;27560:93;:::i;:::-;27550:103;;27506:157;27261:409;;;;:::o;27676:225::-;27816:34;27812:1;27804:6;27800:14;27793:58;27885:8;27880:2;27872:6;27868:15;27861:33;27676:225;:::o;27907:366::-;28049:3;28070:67;28134:2;28129:3;28070:67;:::i;:::-;28063:74;;28146:93;28235:3;28146:93;:::i;:::-;28264:2;28259:3;28255:12;28248:19;;27907:366;;;:::o;28279:419::-;28445:4;28483:2;28472:9;28468:18;28460:26;;28532:9;28526:4;28522:20;28518:1;28507:9;28503:17;28496:47;28560:131;28686:4;28560:131;:::i;:::-;28552:139;;28279:419;;;:::o;28704:98::-;28755:6;28789:5;28783:12;28773:22;;28704:98;;;:::o;28808:168::-;28891:11;28925:6;28920:3;28913:19;28965:4;28960:3;28956:14;28941:29;;28808:168;;;;:::o;28982:360::-;29068:3;29096:38;29128:5;29096:38;:::i;:::-;29150:70;29213:6;29208:3;29150:70;:::i;:::-;29143:77;;29229:52;29274:6;29269:3;29262:4;29255:5;29251:16;29229:52;:::i;:::-;29306:29;29328:6;29306:29;:::i;:::-;29301:3;29297:39;29290:46;;29072:270;28982:360;;;;:::o;29348:640::-;29543:4;29581:3;29570:9;29566:19;29558:27;;29595:71;29663:1;29652:9;29648:17;29639:6;29595:71;:::i;:::-;29676:72;29744:2;29733:9;29729:18;29720:6;29676:72;:::i;:::-;29758;29826:2;29815:9;29811:18;29802:6;29758:72;:::i;:::-;29877:9;29871:4;29867:20;29862:2;29851:9;29847:18;29840:48;29905:76;29976:4;29967:6;29905:76;:::i;:::-;29897:84;;29348:640;;;;;;;:::o;29994:141::-;30050:5;30081:6;30075:13;30066:22;;30097:32;30123:5;30097:32;:::i;:::-;29994:141;;;;:::o;30141:349::-;30210:6;30259:2;30247:9;30238:7;30234:23;30230:32;30227:119;;;30265:79;;:::i;:::-;30227:119;30385:1;30410:63;30465:7;30456:6;30445:9;30441:22;30410:63;:::i;:::-;30400:73;;30356:127;30141:349;;;;:::o;30496:233::-;30535:3;30558:24;30576:5;30558:24;:::i;:::-;30549:33;;30604:66;30597:5;30594:77;30591:103;;30674:18;;:::i;:::-;30591:103;30721:1;30714:5;30710:13;30703:20;;30496:233;;;:::o;30735:180::-;30783:77;30780:1;30773:88;30880:4;30877:1;30870:15;30904:4;30901:1;30894:15;30921:185;30961:1;30978:20;30996:1;30978:20;:::i;:::-;30973:25;;31012:20;31030:1;31012:20;:::i;:::-;31007:25;;31051:1;31041:35;;31056:18;;:::i;:::-;31041:35;31098:1;31095;31091:9;31086:14;;30921:185;;;;:::o;31112:191::-;31152:4;31172:20;31190:1;31172:20;:::i;:::-;31167:25;;31206:20;31224:1;31206:20;:::i;:::-;31201:25;;31245:1;31242;31239:8;31236:34;;;31250:18;;:::i;:::-;31236:34;31295:1;31292;31288:9;31280:17;;31112:191;;;;:::o;31309:176::-;31341:1;31358:20;31376:1;31358:20;:::i;:::-;31353:25;;31392:20;31410:1;31392:20;:::i;:::-;31387:25;;31431:1;31421:35;;31436:18;;:::i;:::-;31421:35;31477:1;31474;31470:9;31465:14;;31309:176;;;;:::o;31491:180::-;31539:77;31536:1;31529:88;31636:4;31633:1;31626:15;31660:4;31657:1;31650:15
Swarm Source
ipfs://cb5c94482e0aecf8fa68512acbdabe1584fb26e0da18f6b4aa1a22690ae3fa56
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.