ERC-721
Overview
Max Total Supply
0 YSC
Holders
207
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 YSCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YourSphynxCat
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-15 */ // File: contracts/WithLimitedSupply.sol pragma solidity ^0.8.4; /// @author Modified version of original code by 1001.digital /// @title A token tracker that limits the token supply and increments token IDs on each new mint. abstract contract WithLimitedSupply { // Keeps track of how many we have minted uint256 private _tokenCount; /// @dev The maximum count of tokens this token tracker will issue. uint256 private immutable _maxAvailableSupply = 9099; function maxAvailableSupply() public pure returns (uint256) { return _maxAvailableSupply; } /// @dev Get the current token count /// @return the created token count /// TODO: if this is not required externally, does making it `public view` use unneccary gas? function tokenCount() public view returns (uint256) { return _tokenCount; } /// @dev Check whether tokens are still available /// @return the available token count function availableTokenCount() public view returns (uint256) { return maxAvailableSupply() - tokenCount(); } /// @dev Increment the token count and fetch the latest count /// @return the next token id function nextToken() internal virtual ensureAvailability returns (uint256) { return _tokenCount++; } /// @dev Check whether another token is still available modifier ensureAvailability() { require(availableTokenCount() > 0, 'No more tokens available'); _; } /// @param amount Check whether number of tokens are still available /// @dev Check whether tokens are still available modifier ensureAvailabilityFor(uint256 amount) { require( availableTokenCount() >= amount, 'Requested number of tokens not available' ); _; } } // File: contracts/RandomlyAssigned.sol pragma solidity ^0.8.4; /// @author Modified version of original code by 1001.digital /// @title Randomly assign tokenIDs from a given set of tokens. abstract contract RandomlyAssigned is WithLimitedSupply { // Used for random index assignment mapping(uint256 => uint256) private tokenMatrix; // The initial token ID uint256 private immutable startFrom = 1; /// Get the next token ID /// @dev Randomly gets a new token ID and keeps track of the ones that are still available. /// @return the next token ID function nextToken() internal override returns (uint256) { uint256 maxIndex = maxAvailableSupply() - tokenCount(); uint256 random = uint256( keccak256( abi.encodePacked( msg.sender, block.coinbase, block.difficulty, block.gaslimit, block.timestamp ) ) ) % maxIndex; uint256 value = 0; if (tokenMatrix[random] == 0) { // If this matrix position is empty, set the value to the generated random number. value = random; } else { // Otherwise, use the previously stored number from the matrix. value = tokenMatrix[random]; } // If the last available tokenID is still unused... if (tokenMatrix[maxIndex - 1] == 0) { // ...store that ID in the current matrix position. tokenMatrix[random] = maxIndex - 1; } else { // ...otherwise copy over the stored number to the current matrix position. tokenMatrix[random] = tokenMatrix[maxIndex - 1]; } // Increment counts (ie. qty minted) super.nextToken(); return value + startFrom; } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/YourSphynxCat.sol pragma solidity ^0.8.4; //import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; //import "@openzeppelin/contracts/utils/Counters.sol"; //import "@openzeppelin/contracts/access/Ownable.sol"; //import './RandomlyAssigned.sol'; /* ,,,,,@@@@@@@@,,,,,,,,,,,,, #@@@@@@@@@@@@@@@@@@&@@@@@@@@@@@@@@@@@@# &@@@@@,. ,&@@@@@.. @& ..@@@@&, .@@@@@@& /&@@&,. @@@#, &@@% .#@@@# .%@@@&/ .#@#/ &@@&, &@@% *&@&* (@@@@( #/ %@@& %@@@@( @@%. ,&@@@ %@@& %@@@@( @@@( /@@& @# %@@& %@@@@( @@% @@@@* @@@@&, &@@&/ &@@% (@@&. (@@@%. @@&#@@@( @@@%(. &@@% .%@@@/ .%@@@@* @@% *&@@@@%. .%@@@@**, @& **@@@@%. *@@@@%( @@% &@@@@@@... (%@@@@@@@@@@@@@@@@@%#.(@@@@@%/ @@% &@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@, @@% ....,@@@@@@@@@@@@*... @@@( (@@( @@@/ .@@@* ,@@@, #@@@@@@@@@@@# *@@@# ., ,@@@/ (@@@/ .@@@* (@@@%. *@@&, &@@@@,. .&@@@( #@@@@@@@&&&&&@@@@@@@ ,,,,,,,,,,, */ contract YourSphynxCat is ERC721, Ownable, RandomlyAssigned { using Strings for uint256; using Counters for Counters.Counter; mapping(address => bool) whitelistedAddresses; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public teamTokensMinted; uint256 public cost = 10000000 gwei; uint256 public maxSupply = 9099; uint256 public maxMintAmountPerTx = 10; bool public paused = false; bool public revealed = false; bool public ogmint = true; uint256 private constant maxTeamCats = 99; address private immutable _teamAddress = 0xD7c109808Ae28f6618D4596aFc91363521F4C070; constructor() ERC721("YourSphynxCat", "YSC") { setHiddenMetadataUri("ipfs://bafybeibhpbxwqlksdho4rcpsvrvhpcdlk2h2h3jogtc3hnqwzq6v6kuo3u/metadata/hidden.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function addUser(address _addressToWhitelist) public onlyOwner { whitelistedAddresses[_addressToWhitelist] = true; } modifier isWhitelisted(address _address) { require(whitelistedAddresses[_address], "Whitelist: You need to be whitelisted"); _; } function verifyUser(address _whitelistedAddress) public view returns(bool) { bool userIsWhitelisted = whitelistedAddresses[_whitelistedAddress]; return userIsWhitelisted; } function addWhitelisted(address[] memory accounts) public onlyOwner { for (uint256 account = 0; account < accounts.length; account++) { addUser(accounts[account]); } } function checkOG() public view isWhitelisted(msg.sender) returns(bool){ return (true); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); if (ogmint == true) { require(checkOG() == true, "Only OGs can mint now!"); } require(balanceOf(msg.sender)+_mintAmount <= 10, "Each wallet may only own 10 cats!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setOG(bool _state) public onlyOwner { ogmint = _state; } function withdraw() public onlyOwner { // Share (bool hs, ) = payable(0xC3638e7e6a8cdbC31Ae7a2D2EaC50d55c16b137a).call{value: address(this).balance * 30 / 100}(""); require(hs); // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _mintRandomId(_receiver); } } function _mintRandomId(address to) private { uint256 id = nextToken(); assert( id > 0 && id <= maxSupply ); _safeMint(to, id); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function devReserveTokens(uint256 count) external onlyOwner ensureAvailabilityFor(count) { require( count + teamTokensMinted <= maxTeamCats, 'Exceeds the reserved supply of team tokens' ); for (uint256 i = 0; i < count; i++) { _mintRandomId(_teamAddress); } teamTokensMinted += count; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_addressToWhitelist","type":"address"}],"name":"addUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkOG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devReserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAvailableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogmint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[],"name":"teamTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistedAddress","type":"address"}],"name":"verifyUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61238b608052600160a0526101006040819052600060e08190526200002791600b916200022b565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005691600c916200022b565b50662386f26fc10000600f5561238b601055600a6011556012805462ffffff1916620100001790557fd7c109808ae28f6618d4596afc91363521f4c07000000000000000000000000060c052348015620000af57600080fd5b50604080518082018252600d81526c165bdd5c94dc1a1e5b9e10d85d609a1b60208083019182528351808501909452600384526259534360e81b90840152815191929162000100916000916200022b565b508051620001169060019060208401906200022b565b505050620001336200012d6200015d60201b60201c565b62000161565b620001576040518060800160405280605781526020016200340260579139620001b3565b6200030e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200022790600d9060208401906200022b565b5050565b8280546200023990620002d1565b90600052602060002090601f0160209004810192826200025d5760008555620002a8565b82601f106200027857805160ff1916838001178555620002a8565b82800160010185558215620002a8579182015b82811115620002a85782518255916020019190600101906200028b565b50620002b6929150620002ba565b5090565b5b80821115620002b65760008155600101620002bb565b600181811c90821680620002e657607f821691505b602082108114156200030857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160601c6130b36200034f600039600061181b015260006125540152600081816103e601528181611b55015261241701526130b36000f3fe6080604052600436106102fd5760003560e01c80635c975abb1161018f578063a22cb465116100e1578063d5abeb011161008a578063e985e9c511610064578063e985e9c514610839578063efbd73f414610882578063f2fde38b146108a257600080fd5b8063d5abeb01146107ee578063e0a8085314610804578063e14ca3531461082457600080fd5b8063b071401b116100bb578063b071401b1461078e578063b88d4fde146107ae578063c87b56dd146107ce57600080fd5b8063a22cb46514610739578063a253b43f14610759578063a45ba8e71461077957600080fd5b80637ec4a6591161014357806395d89b411161011d57806395d89b41146106fc5780639f181b5e14610711578063a0712d681461072657600080fd5b80637ec4a659146106a85780638da5cb5b146106c857806394354fd0146106e657600080fd5b80636352211e116101745780636352211e1461065357806370a0823114610673578063715018a61461069357600080fd5b80635c975abb1461062457806362b99ad41461063e57600080fd5b806325a8a88e11610253578063438b6300116101fc5780634fdd43cb116101d65780634fdd43cb146105d057806351830227146105f05780635503a0e81461060f57600080fd5b8063438b63001461054a57806344a0d68a146105775780634d8131201461059757600080fd5b80633ccfd60b1161022d5780633ccfd60b146104f5578063421b2d8b1461050a57806342842e0e1461052a57600080fd5b806325a8a88e146104a05780632c646b43146104c05780632d8062bc146104d557600080fd5b806315f91c18116102b5578063227275ef1161028f578063227275ef1461044a57806322cb1ec81461046a57806323b872dd1461048057600080fd5b806315f91c18146103d757806316ba10e01461040a57806316c38b3c1461042a57600080fd5b8063081812fc116102e6578063081812fc14610359578063095ea7b31461039157806313faede6146103b357600080fd5b806301ffc9a71461030257806306fdde0314610337575b600080fd5b34801561030e57600080fd5b5061032261031d366004612c6e565b6108c2565b60405190151581526020015b60405180910390f35b34801561034357600080fd5b5061034c61095f565b60405161032e9190612e9d565b34801561036557600080fd5b50610379610374366004612cf1565b6109f1565b6040516001600160a01b03909116815260200161032e565b34801561039d57600080fd5b506103b16103ac366004612b75565b610a8b565b005b3480156103bf57600080fd5b506103c9600f5481565b60405190815260200161032e565b3480156103e357600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006103c9565b34801561041657600080fd5b506103b1610425366004612ca8565b610bbd565b34801561043657600080fd5b506103b1610445366004612c53565b610c1c565b34801561045657600080fd5b506103b1610465366004612b9f565b610c77565b34801561047657600080fd5b506103c9600e5481565b34801561048c57600080fd5b506103b161049b366004612a93565b610cff565b3480156104ac57600080fd5b506103b16104bb366004612c53565b610d86565b3480156104cc57600080fd5b50610322610dea565b3480156104e157600080fd5b506012546103229062010000900460ff1681565b34801561050157600080fd5b506103b1610e7b565b34801561051657600080fd5b506103b1610525366004612a45565b610fb1565b34801561053657600080fd5b506103b1610545366004612a93565b61101d565b34801561055657600080fd5b5061056a610565366004612a45565b611038565b60405161032e9190612e59565b34801561058357600080fd5b506103b1610592366004612cf1565b611119565b3480156105a357600080fd5b506103226105b2366004612a45565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156105dc57600080fd5b506103b16105eb366004612ca8565b611166565b3480156105fc57600080fd5b5060125461032290610100900460ff1681565b34801561061b57600080fd5b5061034c6111c1565b34801561063057600080fd5b506012546103229060ff1681565b34801561064a57600080fd5b5061034c61124f565b34801561065f57600080fd5b5061037961066e366004612cf1565b61125c565b34801561067f57600080fd5b506103c961068e366004612a45565b6112e7565b34801561069f57600080fd5b506103b1611381565b3480156106b457600080fd5b506103b16106c3366004612ca8565b6113d5565b3480156106d457600080fd5b506006546001600160a01b0316610379565b3480156106f257600080fd5b506103c960115481565b34801561070857600080fd5b5061034c611430565b34801561071d57600080fd5b506007546103c9565b6103b1610734366004612cf1565b61143f565b34801561074557600080fd5b506103b1610754366004612b4b565b6116b6565b34801561076557600080fd5b506103b1610774366004612cf1565b6116c1565b34801561078557600080fd5b5061034c61186d565b34801561079a57600080fd5b506103b16107a9366004612cf1565b61187a565b3480156107ba57600080fd5b506103b16107c9366004612acf565b6118c7565b3480156107da57600080fd5b5061034c6107e9366004612cf1565b611955565b3480156107fa57600080fd5b506103c960105481565b34801561081057600080fd5b506103b161081f366004612c53565b611ae2565b34801561083057600080fd5b506103c9611b44565b34801561084557600080fd5b50610322610854366004612a60565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088e57600080fd5b506103b161089d366004612d0a565b611b7e565b3480156108ae57600080fd5b506103b16108bd366004612a45565b611c94565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061092557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061095957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606000805461096e90612f6f565b80601f016020809104026020016040519081016040528092919081815260200182805461099a90612f6f565b80156109e75780601f106109bc576101008083540402835291602001916109e7565b820191906000526020600020905b8154815290600101906020018083116109ca57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a968261125c565b9050806001600160a01b0316836001600160a01b03161415610b205760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a66565b336001600160a01b0382161480610b3c5750610b3c8133610854565b610bae5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a66565b610bb88383611d64565b505050565b6006546001600160a01b03163314610c055760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b8051610c1890600c906020840190612931565b5050565b6006546001600160a01b03163314610c645760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b6012805460ff1916911515919091179055565b6006546001600160a01b03163314610cbf5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b60005b8151811015610c1857610ced828281518110610ce057610ce061301b565b6020026020010151610fb1565b80610cf781612faa565b915050610cc2565b610d093382611ddf565b610d7b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a66565b610bb8838383611ed6565b6006546001600160a01b03163314610dce5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b60128054911515620100000262ff000019909216919091179055565b3360008181526009602052604081205490919060ff16610e725760405162461bcd60e51b815260206004820152602560248201527f57686974656c6973743a20596f75206e65656420746f2062652077686974656c60448201527f69737465640000000000000000000000000000000000000000000000000000006064820152608401610a66565b600191505b5090565b6006546001600160a01b03163314610ec35760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b600073c3638e7e6a8cdbc31ae7a2d2eac50d55c16b137a6064610ee747601e612f0d565b610ef19190612ef9565b604051600081818185875af1925050503d8060008114610f2d576040519150601f19603f3d011682016040523d82523d6000602084013e610f32565b606091505b5050905080610f4057600080fd5b6000610f546006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f9e576040519150601f19603f3d011682016040523d82523d6000602084013e610fa3565b606091505b5050905080610c1857600080fd5b6006546001600160a01b03163314610ff95760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b610bb8838383604051806020016040528060008152506118c7565b60606000611045836112e7565b905060008167ffffffffffffffff81111561106257611062613031565b60405190808252806020026020018201604052801561108b578160200160208202803683370190505b509050600160005b83811080156110a457506010548211155b1561110f5760006110b48361125c565b9050866001600160a01b0316816001600160a01b031614156110fc57828483815181106110e3576110e361301b565b6020908102919091010152816110f881612faa565b9250505b8261110681612faa565b93505050611093565b5090949350505050565b6006546001600160a01b031633146111615760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b600f55565b6006546001600160a01b031633146111ae5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b8051610c1890600d906020840190612931565b600c80546111ce90612f6f565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa90612f6f565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b505050505081565b600b80546111ce90612f6f565b6000818152600260205260408120546001600160a01b0316806109595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a66565b60006001600160a01b0382166113655760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a66565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146113c95760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b6113d360006120b0565b565b6006546001600160a01b0316331461141d5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b8051610c1890600b906020840190612931565b60606001805461096e90612f6f565b8060008111801561145257506011548111155b61149e5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a66565b601054816114ab600a5490565b6114b59190612ee1565b11156115035760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a66565b60125460ff16156115565760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610a66565b60125462010000900460ff161515600114156115c557611574610dea565b15156001146115c55760405162461bcd60e51b815260206004820152601660248201527f4f6e6c79204f47732063616e206d696e74206e6f7721000000000000000000006044820152606401610a66565b600a826115d1336112e7565b6115db9190612ee1565b111561164f5760405162461bcd60e51b815260206004820152602160248201527f456163682077616c6c6574206d6179206f6e6c79206f776e203130206361747360448201527f21000000000000000000000000000000000000000000000000000000000000006064820152608401610a66565b81600f5461165d9190612f0d565b3410156116ac5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610a66565b610c18338361210f565b610c18338383612143565b6006546001600160a01b031633146117095760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b8080611713611b44565b10156117875760405162461bcd60e51b815260206004820152602860248201527f526571756573746564206e756d626572206f6620746f6b656e73206e6f74206160448201527f7661696c61626c650000000000000000000000000000000000000000000000006064820152608401610a66565b6063600e54836117979190612ee1565b111561180b5760405162461bcd60e51b815260206004820152602a60248201527f457863656564732074686520726573657276656420737570706c79206f66207460448201527f65616d20746f6b656e73000000000000000000000000000000000000000000006064820152608401610a66565b60005b828110156118515761183f7f0000000000000000000000000000000000000000000000000000000000000000612212565b8061184981612faa565b91505061180e565b5081600e60008282546118649190612ee1565b90915550505050565b600d80546111ce90612f6f565b6006546001600160a01b031633146118c25760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b601155565b6118d13383611ddf565b6119435760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a66565b61194f84848484612246565b50505050565b6000818152600260205260409020546060906001600160a01b03166119e25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a66565b601254610100900460ff16611a8357600d80546119fe90612f6f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2a90612f6f565b8015611a775780601f10611a4c57610100808354040283529160200191611a77565b820191906000526020600020905b815481529060010190602001808311611a5a57829003601f168201915b50505050509050919050565b6000611a8d6122c4565b90506000815111611aad5760405180602001604052806000815250611adb565b80611ab7846122d3565b600c604051602001611acb93929190612d59565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611b2a5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b601280549115156101000261ff0019909216919091179055565b6000611b4f60075490565b611b79907f0000000000000000000000000000000000000000000000000000000000000000612f2c565b905090565b81600081118015611b9157506011548111155b611bdd5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a66565b60105481611bea600a5490565b611bf49190612ee1565b1115611c425760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a66565b6006546001600160a01b03163314611c8a5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b610bb8828461210f565b6006546001600160a01b03163314611cdc5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b6001600160a01b038116611d585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a66565b611d61816120b0565b50565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611da68261125c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a66565b6000611e638361125c565b9050806001600160a01b0316846001600160a01b03161480611e9e5750836001600160a01b0316611e93846109f1565b6001600160a01b0316145b80611ece57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ee98261125c565b6001600160a01b031614611f655760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a66565b6001600160a01b038216611fe05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a66565b611feb600082611d64565b6001600160a01b0383166000908152600360205260408120805460019290612014908490612f2c565b90915550506001600160a01b0382166000908152600360205260408120805460019290612042908490612ee1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610bb857612128600a80546001019055565b61213183612212565b8061213b81612faa565b915050612112565b816001600160a01b0316836001600160a01b031614156121a55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a66565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600061221c612405565b905060008111801561223057506010548111155b61223c5761223c612fd9565b610c188282612581565b612251848484611ed6565b61225d8484848461259b565b61194f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a66565b6060600b805461096e90612f6f565b60608161231357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561233d578061232781612faa565b91506123369050600a83612ef9565b9150612317565b60008167ffffffffffffffff81111561235857612358613031565b6040519080825280601f01601f191660200182016040528015612382576020820181803683370190505b5090505b8415611ece57612397600183612f2c565b91506123a4600a86612fc5565b6123af906030612ee1565b60f81b8183815181106123c4576123c461301b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506123fe600a86612ef9565b9450612386565b60008061241160075490565b61243b907f0000000000000000000000000000000000000000000000000000000000000000612f2c565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c6124a29190612fc5565b600081815260086020526040812054919250906124c05750806124d1565b506000818152600860205260409020545b600860006124e0600186612f2c565b8152602001908152602001600020546000141561251657612502600184612f2c565b600083815260086020526040902055612546565b60086000612525600186612f2c565b81526020808201929092526040908101600090812054858252600890935220555b61254e6126f3565b506125797f000000000000000000000000000000000000000000000000000000000000000082612ee1565b935050505090565b610c18828260405180602001604052806000815250612764565b60006001600160a01b0384163b156126e857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125df903390899088908890600401612e1d565b602060405180830381600087803b1580156125f957600080fd5b505af1925050508015612629575060408051601f3d908101601f1916820190925261262691810190612c8b565b60015b6126ce573d808015612657576040519150601f19603f3d011682016040523d82523d6000602084013e61265c565b606091505b5080516126c65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a66565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ece565b506001949350505050565b6000806126fe611b44565b1161274b5760405162461bcd60e51b815260206004820152601860248201527f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000006044820152606401610a66565b6007805490600061275b83612faa565b91905055905090565b61276e83836127e2565b61277b600084848461259b565b610bb85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a66565b6001600160a01b0382166128385760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a66565b6000818152600260205260409020546001600160a01b03161561289d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a66565b6001600160a01b03821660009081526003602052604081208054600192906128c6908490612ee1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461293d90612f6f565b90600052602060002090601f01602090048101928261295f57600085556129a5565b82601f1061297857805160ff19168380011785556129a5565b828001600101855582156129a5579182015b828111156129a557825182559160200191906001019061298a565b50610e779291505b80821115610e7757600081556001016129ad565b600067ffffffffffffffff8311156129db576129db613031565b6129ee601f8401601f1916602001612eb0565b9050828152838383011115612a0257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612a3057600080fd5b919050565b80358015158114612a3057600080fd5b600060208284031215612a5757600080fd5b611adb82612a19565b60008060408385031215612a7357600080fd5b612a7c83612a19565b9150612a8a60208401612a19565b90509250929050565b600080600060608486031215612aa857600080fd5b612ab184612a19565b9250612abf60208501612a19565b9150604084013590509250925092565b60008060008060808587031215612ae557600080fd5b612aee85612a19565b9350612afc60208601612a19565b925060408501359150606085013567ffffffffffffffff811115612b1f57600080fd5b8501601f81018713612b3057600080fd5b612b3f878235602084016129c1565b91505092959194509250565b60008060408385031215612b5e57600080fd5b612b6783612a19565b9150612a8a60208401612a35565b60008060408385031215612b8857600080fd5b612b9183612a19565b946020939093013593505050565b60006020808385031215612bb257600080fd5b823567ffffffffffffffff80821115612bca57600080fd5b818501915085601f830112612bde57600080fd5b813581811115612bf057612bf0613031565b8060051b9150612c01848301612eb0565b8181528481019084860184860187018a1015612c1c57600080fd5b600095505b83861015612c4657612c3281612a19565b835260019590950194918601918601612c21565b5098975050505050505050565b600060208284031215612c6557600080fd5b611adb82612a35565b600060208284031215612c8057600080fd5b8135611adb81613047565b600060208284031215612c9d57600080fd5b8151611adb81613047565b600060208284031215612cba57600080fd5b813567ffffffffffffffff811115612cd157600080fd5b8201601f81018413612ce257600080fd5b611ece848235602084016129c1565b600060208284031215612d0357600080fd5b5035919050565b60008060408385031215612d1d57600080fd5b82359150612a8a60208401612a19565b60008151808452612d45816020860160208601612f43565b601f01601f19169290920160200192915050565b600084516020612d6c8285838a01612f43565b855191840191612d7f8184848a01612f43565b8554920191600090600181811c9080831680612d9c57607f831692505b858310811415612dba57634e487b7160e01b85526022600452602485fd5b808015612dce5760018114612ddf57612e0c565b60ff19851688528388019550612e0c565b60008b81526020902060005b85811015612e045781548a820152908401908801612deb565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612e4f6080830184612d2d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e9157835183529284019291840191600101612e75565b50909695505050505050565b602081526000611adb6020830184612d2d565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ed957612ed9613031565b604052919050565b60008219821115612ef457612ef4612fef565b500190565b600082612f0857612f08613005565b500490565b6000816000190483118215151615612f2757612f27612fef565b500290565b600082821015612f3e57612f3e612fef565b500390565b60005b83811015612f5e578181015183820152602001612f46565b8381111561194f5750506000910152565b600181811c90821680612f8357607f821691505b60208210811415612fa457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fbe57612fbe612fef565b5060010190565b600082612fd457612fd4613005565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611d6157600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212209eaa805b517d52d313eb600ab4c9c882028250fb5daf5b3c866ae619926f9a9a64736f6c63430008070033697066733a2f2f62616679626569626870627877716c6b7364686f3472637073767276687063646c6b32683268336a6f67746333686e71777a713676366b756f33752f6d657461646174612f68696464656e2e6a736f6e
Deployed Bytecode
0x6080604052600436106102fd5760003560e01c80635c975abb1161018f578063a22cb465116100e1578063d5abeb011161008a578063e985e9c511610064578063e985e9c514610839578063efbd73f414610882578063f2fde38b146108a257600080fd5b8063d5abeb01146107ee578063e0a8085314610804578063e14ca3531461082457600080fd5b8063b071401b116100bb578063b071401b1461078e578063b88d4fde146107ae578063c87b56dd146107ce57600080fd5b8063a22cb46514610739578063a253b43f14610759578063a45ba8e71461077957600080fd5b80637ec4a6591161014357806395d89b411161011d57806395d89b41146106fc5780639f181b5e14610711578063a0712d681461072657600080fd5b80637ec4a659146106a85780638da5cb5b146106c857806394354fd0146106e657600080fd5b80636352211e116101745780636352211e1461065357806370a0823114610673578063715018a61461069357600080fd5b80635c975abb1461062457806362b99ad41461063e57600080fd5b806325a8a88e11610253578063438b6300116101fc5780634fdd43cb116101d65780634fdd43cb146105d057806351830227146105f05780635503a0e81461060f57600080fd5b8063438b63001461054a57806344a0d68a146105775780634d8131201461059757600080fd5b80633ccfd60b1161022d5780633ccfd60b146104f5578063421b2d8b1461050a57806342842e0e1461052a57600080fd5b806325a8a88e146104a05780632c646b43146104c05780632d8062bc146104d557600080fd5b806315f91c18116102b5578063227275ef1161028f578063227275ef1461044a57806322cb1ec81461046a57806323b872dd1461048057600080fd5b806315f91c18146103d757806316ba10e01461040a57806316c38b3c1461042a57600080fd5b8063081812fc116102e6578063081812fc14610359578063095ea7b31461039157806313faede6146103b357600080fd5b806301ffc9a71461030257806306fdde0314610337575b600080fd5b34801561030e57600080fd5b5061032261031d366004612c6e565b6108c2565b60405190151581526020015b60405180910390f35b34801561034357600080fd5b5061034c61095f565b60405161032e9190612e9d565b34801561036557600080fd5b50610379610374366004612cf1565b6109f1565b6040516001600160a01b03909116815260200161032e565b34801561039d57600080fd5b506103b16103ac366004612b75565b610a8b565b005b3480156103bf57600080fd5b506103c9600f5481565b60405190815260200161032e565b3480156103e357600080fd5b507f000000000000000000000000000000000000000000000000000000000000238b6103c9565b34801561041657600080fd5b506103b1610425366004612ca8565b610bbd565b34801561043657600080fd5b506103b1610445366004612c53565b610c1c565b34801561045657600080fd5b506103b1610465366004612b9f565b610c77565b34801561047657600080fd5b506103c9600e5481565b34801561048c57600080fd5b506103b161049b366004612a93565b610cff565b3480156104ac57600080fd5b506103b16104bb366004612c53565b610d86565b3480156104cc57600080fd5b50610322610dea565b3480156104e157600080fd5b506012546103229062010000900460ff1681565b34801561050157600080fd5b506103b1610e7b565b34801561051657600080fd5b506103b1610525366004612a45565b610fb1565b34801561053657600080fd5b506103b1610545366004612a93565b61101d565b34801561055657600080fd5b5061056a610565366004612a45565b611038565b60405161032e9190612e59565b34801561058357600080fd5b506103b1610592366004612cf1565b611119565b3480156105a357600080fd5b506103226105b2366004612a45565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156105dc57600080fd5b506103b16105eb366004612ca8565b611166565b3480156105fc57600080fd5b5060125461032290610100900460ff1681565b34801561061b57600080fd5b5061034c6111c1565b34801561063057600080fd5b506012546103229060ff1681565b34801561064a57600080fd5b5061034c61124f565b34801561065f57600080fd5b5061037961066e366004612cf1565b61125c565b34801561067f57600080fd5b506103c961068e366004612a45565b6112e7565b34801561069f57600080fd5b506103b1611381565b3480156106b457600080fd5b506103b16106c3366004612ca8565b6113d5565b3480156106d457600080fd5b506006546001600160a01b0316610379565b3480156106f257600080fd5b506103c960115481565b34801561070857600080fd5b5061034c611430565b34801561071d57600080fd5b506007546103c9565b6103b1610734366004612cf1565b61143f565b34801561074557600080fd5b506103b1610754366004612b4b565b6116b6565b34801561076557600080fd5b506103b1610774366004612cf1565b6116c1565b34801561078557600080fd5b5061034c61186d565b34801561079a57600080fd5b506103b16107a9366004612cf1565b61187a565b3480156107ba57600080fd5b506103b16107c9366004612acf565b6118c7565b3480156107da57600080fd5b5061034c6107e9366004612cf1565b611955565b3480156107fa57600080fd5b506103c960105481565b34801561081057600080fd5b506103b161081f366004612c53565b611ae2565b34801561083057600080fd5b506103c9611b44565b34801561084557600080fd5b50610322610854366004612a60565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088e57600080fd5b506103b161089d366004612d0a565b611b7e565b3480156108ae57600080fd5b506103b16108bd366004612a45565b611c94565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061092557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061095957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606000805461096e90612f6f565b80601f016020809104026020016040519081016040528092919081815260200182805461099a90612f6f565b80156109e75780601f106109bc576101008083540402835291602001916109e7565b820191906000526020600020905b8154815290600101906020018083116109ca57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a968261125c565b9050806001600160a01b0316836001600160a01b03161415610b205760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a66565b336001600160a01b0382161480610b3c5750610b3c8133610854565b610bae5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a66565b610bb88383611d64565b505050565b6006546001600160a01b03163314610c055760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b8051610c1890600c906020840190612931565b5050565b6006546001600160a01b03163314610c645760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b6012805460ff1916911515919091179055565b6006546001600160a01b03163314610cbf5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b60005b8151811015610c1857610ced828281518110610ce057610ce061301b565b6020026020010151610fb1565b80610cf781612faa565b915050610cc2565b610d093382611ddf565b610d7b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a66565b610bb8838383611ed6565b6006546001600160a01b03163314610dce5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b60128054911515620100000262ff000019909216919091179055565b3360008181526009602052604081205490919060ff16610e725760405162461bcd60e51b815260206004820152602560248201527f57686974656c6973743a20596f75206e65656420746f2062652077686974656c60448201527f69737465640000000000000000000000000000000000000000000000000000006064820152608401610a66565b600191505b5090565b6006546001600160a01b03163314610ec35760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b600073c3638e7e6a8cdbc31ae7a2d2eac50d55c16b137a6064610ee747601e612f0d565b610ef19190612ef9565b604051600081818185875af1925050503d8060008114610f2d576040519150601f19603f3d011682016040523d82523d6000602084013e610f32565b606091505b5050905080610f4057600080fd5b6000610f546006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f9e576040519150601f19603f3d011682016040523d82523d6000602084013e610fa3565b606091505b5050905080610c1857600080fd5b6006546001600160a01b03163314610ff95760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b610bb8838383604051806020016040528060008152506118c7565b60606000611045836112e7565b905060008167ffffffffffffffff81111561106257611062613031565b60405190808252806020026020018201604052801561108b578160200160208202803683370190505b509050600160005b83811080156110a457506010548211155b1561110f5760006110b48361125c565b9050866001600160a01b0316816001600160a01b031614156110fc57828483815181106110e3576110e361301b565b6020908102919091010152816110f881612faa565b9250505b8261110681612faa565b93505050611093565b5090949350505050565b6006546001600160a01b031633146111615760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b600f55565b6006546001600160a01b031633146111ae5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b8051610c1890600d906020840190612931565b600c80546111ce90612f6f565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa90612f6f565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b505050505081565b600b80546111ce90612f6f565b6000818152600260205260408120546001600160a01b0316806109595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a66565b60006001600160a01b0382166113655760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a66565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146113c95760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b6113d360006120b0565b565b6006546001600160a01b0316331461141d5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b8051610c1890600b906020840190612931565b60606001805461096e90612f6f565b8060008111801561145257506011548111155b61149e5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a66565b601054816114ab600a5490565b6114b59190612ee1565b11156115035760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a66565b60125460ff16156115565760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610a66565b60125462010000900460ff161515600114156115c557611574610dea565b15156001146115c55760405162461bcd60e51b815260206004820152601660248201527f4f6e6c79204f47732063616e206d696e74206e6f7721000000000000000000006044820152606401610a66565b600a826115d1336112e7565b6115db9190612ee1565b111561164f5760405162461bcd60e51b815260206004820152602160248201527f456163682077616c6c6574206d6179206f6e6c79206f776e203130206361747360448201527f21000000000000000000000000000000000000000000000000000000000000006064820152608401610a66565b81600f5461165d9190612f0d565b3410156116ac5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610a66565b610c18338361210f565b610c18338383612143565b6006546001600160a01b031633146117095760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b8080611713611b44565b10156117875760405162461bcd60e51b815260206004820152602860248201527f526571756573746564206e756d626572206f6620746f6b656e73206e6f74206160448201527f7661696c61626c650000000000000000000000000000000000000000000000006064820152608401610a66565b6063600e54836117979190612ee1565b111561180b5760405162461bcd60e51b815260206004820152602a60248201527f457863656564732074686520726573657276656420737570706c79206f66207460448201527f65616d20746f6b656e73000000000000000000000000000000000000000000006064820152608401610a66565b60005b828110156118515761183f7f000000000000000000000000d7c109808ae28f6618d4596afc91363521f4c070612212565b8061184981612faa565b91505061180e565b5081600e60008282546118649190612ee1565b90915550505050565b600d80546111ce90612f6f565b6006546001600160a01b031633146118c25760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b601155565b6118d13383611ddf565b6119435760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a66565b61194f84848484612246565b50505050565b6000818152600260205260409020546060906001600160a01b03166119e25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a66565b601254610100900460ff16611a8357600d80546119fe90612f6f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2a90612f6f565b8015611a775780601f10611a4c57610100808354040283529160200191611a77565b820191906000526020600020905b815481529060010190602001808311611a5a57829003601f168201915b50505050509050919050565b6000611a8d6122c4565b90506000815111611aad5760405180602001604052806000815250611adb565b80611ab7846122d3565b600c604051602001611acb93929190612d59565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611b2a5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b601280549115156101000261ff0019909216919091179055565b6000611b4f60075490565b611b79907f000000000000000000000000000000000000000000000000000000000000238b612f2c565b905090565b81600081118015611b9157506011548111155b611bdd5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a66565b60105481611bea600a5490565b611bf49190612ee1565b1115611c425760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a66565b6006546001600160a01b03163314611c8a5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b610bb8828461210f565b6006546001600160a01b03163314611cdc5760405162461bcd60e51b8152602060048201819052602482015260008051602061305e8339815191526044820152606401610a66565b6001600160a01b038116611d585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a66565b611d61816120b0565b50565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611da68261125c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a66565b6000611e638361125c565b9050806001600160a01b0316846001600160a01b03161480611e9e5750836001600160a01b0316611e93846109f1565b6001600160a01b0316145b80611ece57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ee98261125c565b6001600160a01b031614611f655760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a66565b6001600160a01b038216611fe05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a66565b611feb600082611d64565b6001600160a01b0383166000908152600360205260408120805460019290612014908490612f2c565b90915550506001600160a01b0382166000908152600360205260408120805460019290612042908490612ee1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610bb857612128600a80546001019055565b61213183612212565b8061213b81612faa565b915050612112565b816001600160a01b0316836001600160a01b031614156121a55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a66565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600061221c612405565b905060008111801561223057506010548111155b61223c5761223c612fd9565b610c188282612581565b612251848484611ed6565b61225d8484848461259b565b61194f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a66565b6060600b805461096e90612f6f565b60608161231357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561233d578061232781612faa565b91506123369050600a83612ef9565b9150612317565b60008167ffffffffffffffff81111561235857612358613031565b6040519080825280601f01601f191660200182016040528015612382576020820181803683370190505b5090505b8415611ece57612397600183612f2c565b91506123a4600a86612fc5565b6123af906030612ee1565b60f81b8183815181106123c4576123c461301b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506123fe600a86612ef9565b9450612386565b60008061241160075490565b61243b907f000000000000000000000000000000000000000000000000000000000000238b612f2c565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c6124a29190612fc5565b600081815260086020526040812054919250906124c05750806124d1565b506000818152600860205260409020545b600860006124e0600186612f2c565b8152602001908152602001600020546000141561251657612502600184612f2c565b600083815260086020526040902055612546565b60086000612525600186612f2c565b81526020808201929092526040908101600090812054858252600890935220555b61254e6126f3565b506125797f000000000000000000000000000000000000000000000000000000000000000182612ee1565b935050505090565b610c18828260405180602001604052806000815250612764565b60006001600160a01b0384163b156126e857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125df903390899088908890600401612e1d565b602060405180830381600087803b1580156125f957600080fd5b505af1925050508015612629575060408051601f3d908101601f1916820190925261262691810190612c8b565b60015b6126ce573d808015612657576040519150601f19603f3d011682016040523d82523d6000602084013e61265c565b606091505b5080516126c65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a66565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ece565b506001949350505050565b6000806126fe611b44565b1161274b5760405162461bcd60e51b815260206004820152601860248201527f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000006044820152606401610a66565b6007805490600061275b83612faa565b91905055905090565b61276e83836127e2565b61277b600084848461259b565b610bb85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a66565b6001600160a01b0382166128385760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a66565b6000818152600260205260409020546001600160a01b03161561289d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a66565b6001600160a01b03821660009081526003602052604081208054600192906128c6908490612ee1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461293d90612f6f565b90600052602060002090601f01602090048101928261295f57600085556129a5565b82601f1061297857805160ff19168380011785556129a5565b828001600101855582156129a5579182015b828111156129a557825182559160200191906001019061298a565b50610e779291505b80821115610e7757600081556001016129ad565b600067ffffffffffffffff8311156129db576129db613031565b6129ee601f8401601f1916602001612eb0565b9050828152838383011115612a0257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612a3057600080fd5b919050565b80358015158114612a3057600080fd5b600060208284031215612a5757600080fd5b611adb82612a19565b60008060408385031215612a7357600080fd5b612a7c83612a19565b9150612a8a60208401612a19565b90509250929050565b600080600060608486031215612aa857600080fd5b612ab184612a19565b9250612abf60208501612a19565b9150604084013590509250925092565b60008060008060808587031215612ae557600080fd5b612aee85612a19565b9350612afc60208601612a19565b925060408501359150606085013567ffffffffffffffff811115612b1f57600080fd5b8501601f81018713612b3057600080fd5b612b3f878235602084016129c1565b91505092959194509250565b60008060408385031215612b5e57600080fd5b612b6783612a19565b9150612a8a60208401612a35565b60008060408385031215612b8857600080fd5b612b9183612a19565b946020939093013593505050565b60006020808385031215612bb257600080fd5b823567ffffffffffffffff80821115612bca57600080fd5b818501915085601f830112612bde57600080fd5b813581811115612bf057612bf0613031565b8060051b9150612c01848301612eb0565b8181528481019084860184860187018a1015612c1c57600080fd5b600095505b83861015612c4657612c3281612a19565b835260019590950194918601918601612c21565b5098975050505050505050565b600060208284031215612c6557600080fd5b611adb82612a35565b600060208284031215612c8057600080fd5b8135611adb81613047565b600060208284031215612c9d57600080fd5b8151611adb81613047565b600060208284031215612cba57600080fd5b813567ffffffffffffffff811115612cd157600080fd5b8201601f81018413612ce257600080fd5b611ece848235602084016129c1565b600060208284031215612d0357600080fd5b5035919050565b60008060408385031215612d1d57600080fd5b82359150612a8a60208401612a19565b60008151808452612d45816020860160208601612f43565b601f01601f19169290920160200192915050565b600084516020612d6c8285838a01612f43565b855191840191612d7f8184848a01612f43565b8554920191600090600181811c9080831680612d9c57607f831692505b858310811415612dba57634e487b7160e01b85526022600452602485fd5b808015612dce5760018114612ddf57612e0c565b60ff19851688528388019550612e0c565b60008b81526020902060005b85811015612e045781548a820152908401908801612deb565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612e4f6080830184612d2d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e9157835183529284019291840191600101612e75565b50909695505050505050565b602081526000611adb6020830184612d2d565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ed957612ed9613031565b604052919050565b60008219821115612ef457612ef4612fef565b500190565b600082612f0857612f08613005565b500490565b6000816000190483118215151615612f2757612f27612fef565b500290565b600082821015612f3e57612f3e612fef565b500390565b60005b83811015612f5e578181015183820152602001612f46565b8381111561194f5750506000910152565b600181811c90821680612f8357607f821691505b60208210811415612fa457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fbe57612fbe612fef565b5060010190565b600082612fd457612fd4613005565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611d6157600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212209eaa805b517d52d313eb600ab4c9c882028250fb5daf5b3c866ae619926f9a9a64736f6c63430008070033
Deployed Bytecode Sourcemap
44793:5675:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28921:305;;;;;;;;;;-1:-1:-1;28921:305:0;;;;;:::i;:::-;;:::i;:::-;;;9486:14:1;;9479:22;9461:41;;9449:2;9434:18;28921:305:0;;;;;;;;29866:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31425:221::-;;;;;;;;;;-1:-1:-1;31425:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8101:55:1;;;8083:74;;8071:2;8056:18;31425:221:0;7937:226:1;30948:411:0;;;;;;;;;;-1:-1:-1;30948:411:0;;;;;:::i;:::-;;:::i;:::-;;45167:35;;;;;;;;;;;;;;;;;;;19991:25:1;;;19979:2;19964:18;45167:35:0;19845:177:1;481:96:0;;;;;;;;;;-1:-1:-1;553:19:0;481:96;;49023:100;;;;;;;;;;-1:-1:-1;49023:100:0;;;;;:::i;:::-;;:::i;49129:77::-;;;;;;;;;;-1:-1:-1;49129:77:0;;;;;:::i;:::-;;:::i;46416:198::-;;;;;;;;;;-1:-1:-1;46416:198:0;;;;;:::i;:::-;;:::i;45129:31::-;;;;;;;;;;;;;;;;32175:339;;;;;;;;;;-1:-1:-1;32175:339:0;;;;;:::i;:::-;;:::i;49212:73::-;;;;;;;;;;-1:-1:-1;49212:73:0;;;;;:::i;:::-;;:::i;46622:100::-;;;;;;;;;;;;;:::i;45354:25::-;;;;;;;;;;-1:-1:-1;45354:25:0;;;;;;;;;;;49291:379;;;;;;;;;;;;;:::i;45942:124::-;;;;;;;;;;-1:-1:-1;45942:124:0;;;;;:::i;:::-;;:::i;32585:185::-;;;;;;;;;;-1:-1:-1;32585:185:0;;;;;:::i;:::-;;:::i;47335:635::-;;;;;;;;;;-1:-1:-1;47335:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48563:74::-;;;;;;;;;;-1:-1:-1;48563:74:0;;;;;:::i;:::-;;:::i;46226:185::-;;;;;;;;;;-1:-1:-1;46226:185:0;;;;;:::i;:::-;-1:-1:-1;;;;;46333:41:0;46295:4;46333:41;;;:20;:41;;;;;;;;;46226:185;48779:132;;;;;;;;;;-1:-1:-1;48779:132:0;;;;;:::i;:::-;;:::i;45321:28::-;;;;;;;;;;-1:-1:-1;45321:28:0;;;;;;;;;;;45051:33;;;;;;;;;;;;;:::i;45290:26::-;;;;;;;;;;-1:-1:-1;45290:26:0;;;;;;;;45018:28;;;;;;;;;;;;;:::i;29560:239::-;;;;;;;;;;-1:-1:-1;29560:239:0;;;;;:::i;:::-;;:::i;29290:208::-;;;;;;;;;;-1:-1:-1;29290:208:0;;;;;:::i;:::-;;:::i;9542:103::-;;;;;;;;;;;;;:::i;48917:100::-;;;;;;;;;;-1:-1:-1;48917:100:0;;;;;:::i;:::-;;:::i;8891:87::-;;;;;;;;;;-1:-1:-1;8964:6:0;;-1:-1:-1;;;;;8964:6:0;8891:87;;45245:38;;;;;;;;;;;;;;;;30035:104;;;;;;;;;;;;;:::i;755:80::-;;;;;;;;;;-1:-1:-1;819:11:0;;755:80;;46728:438;;;;;;:::i;:::-;;:::i;31718:155::-;;;;;;;;;;-1:-1:-1;31718:155:0;;;;;:::i;:::-;;:::i;50139:326::-;;;;;;;;;;-1:-1:-1;50139:326:0;;;;;:::i;:::-;;:::i;45089:31::-;;;;;;;;;;;;;:::i;48643:130::-;;;;;;;;;;-1:-1:-1;48643:130:0;;;;;:::i;:::-;;:::i;32841:328::-;;;;;;;;;;-1:-1:-1;32841:328:0;;;;;:::i;:::-;;:::i;47976:494::-;;;;;;;;;;-1:-1:-1;47976:494:0;;;;;:::i;:::-;;:::i;45209:31::-;;;;;;;;;;;;;;;;48476:81;;;;;;;;;;-1:-1:-1;48476:81:0;;;;;:::i;:::-;;:::i;932:113::-;;;;;;;;;;;;;:::i;31944:164::-;;;;;;;;;;-1:-1:-1;31944:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32065:25:0;;;32041:4;32065:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31944:164;47174:155;;;;;;;;;;-1:-1:-1;47174:155:0;;;;;:::i;:::-;;:::i;9800:201::-;;;;;;;;;;-1:-1:-1;9800:201:0;;;;;:::i;:::-;;:::i;28921:305::-;29023:4;-1:-1:-1;;;;;;29060:40:0;;29075:25;29060:40;;:105;;-1:-1:-1;;;;;;;29117:48:0;;29132:33;29117:48;29060:105;:158;;;-1:-1:-1;21799:25:0;-1:-1:-1;;;;;;21784:40:0;;;29182:36;29040:178;28921:305;-1:-1:-1;;28921:305:0:o;29866:100::-;29920:13;29953:5;29946:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29866:100;:::o;31425:221::-;31501:7;34768:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34768:16:0;31521:73;;;;-1:-1:-1;;;31521:73:0;;16231:2:1;31521:73:0;;;16213:21:1;16270:2;16250:18;;;16243:30;16309:34;16289:18;;;16282:62;-1:-1:-1;;;16360:18:1;;;16353:42;16412:19;;31521:73:0;;;;;;;;;-1:-1:-1;31614:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31614:24:0;;31425:221::o;30948:411::-;31029:13;31045:23;31060:7;31045:14;:23::i;:::-;31029:39;;31093:5;-1:-1:-1;;;;;31087:11:0;:2;-1:-1:-1;;;;;31087:11:0;;;31079:57;;;;-1:-1:-1;;;31079:57:0;;17773:2:1;31079:57:0;;;17755:21:1;17812:2;17792:18;;;17785:30;17851:34;17831:18;;;17824:62;17922:3;17902:18;;;17895:31;17943:19;;31079:57:0;17571:397:1;31079:57:0;7695:10;-1:-1:-1;;;;;31171:21:0;;;;:62;;-1:-1:-1;31196:37:0;31213:5;7695:10;31944:164;:::i;31196:37::-;31149:168;;;;-1:-1:-1;;;31149:168:0;;14624:2:1;31149:168:0;;;14606:21:1;14663:2;14643:18;;;14636:30;14702:34;14682:18;;;14675:62;14773:26;14753:18;;;14746:54;14817:19;;31149:168:0;14422:420:1;31149:168:0;31330:21;31339:2;31343:7;31330:8;:21::i;:::-;31018:341;30948:411;;:::o;49023:100::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;49095:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49023:100:::0;:::o;49129:77::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;49185:6:::1;:15:::0;;-1:-1:-1;;49185:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49129:77::o;46416:198::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;46507:15:::1;46502:109;46538:8;:15;46528:7;:25;46502:109;;;46577:26;46585:8;46594:7;46585:17;;;;;;;;:::i;:::-;;;;;;;46577:7;:26::i;:::-;46555:9:::0;::::1;::::0;::::1;:::i;:::-;;;;46502:109;;32175:339:::0;32370:41;7695:10;32403:7;32370:18;:41::i;:::-;32362:103;;;;-1:-1:-1;;;32362:103:0;;18524:2:1;32362:103:0;;;18506:21:1;18563:2;18543:18;;;18536:30;18602:34;18582:18;;;18575:62;18673:19;18653:18;;;18646:47;18710:19;;32362:103:0;18322:413:1;32362:103:0;32478:28;32488:4;32494:2;32498:7;32478:9;:28::i;49212:73::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;49264:6:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;49264:15:0;;::::1;::::0;;;::::1;::::0;;49212:73::o;46622:100::-;46667:10;46687:4;46130:30;;;:20;:30;;;;;;46687:4;;46667:10;46130:30;;46122:80;;;;-1:-1:-1;;;46122:80:0;;19293:2:1;46122:80:0;;;19275:21:1;19332:2;19312:18;;;19305:30;19371:34;19351:18;;;19344:62;19442:7;19422:18;;;19415:35;19467:19;;46122:80:0;19091:401:1;46122:80:0;46709:4:::1;46701:13;;46211:1;46622:100:::0;;:::o;49291:379::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;49350:7:::1;49371:42;49456:3;49427:26;:21;49451:2;49427:26;:::i;:::-;:32;;;;:::i;:::-;49363:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49349:115;;;49479:2;49471:11;;;::::0;::::1;;49578:7;49599;8964:6:::0;;-1:-1:-1;;;;;8964:6:0;;8891:87;49599:7:::1;-1:-1:-1::0;;;;;49591:21:0::1;49620;49591:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49577:69;;;49661:2;49653:11;;;::::0;::::1;45942:124:::0;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;-1:-1:-1;;;;;46012:41:0::1;;::::0;;;:20:::1;:41;::::0;;;;:48;;-1:-1:-1;;46012:48:0::1;46056:4;46012:48;::::0;;45942:124::o;32585:185::-;32723:39;32740:4;32746:2;32750:7;32723:39;;;;;;;;;;;;:16;:39::i;47335:635::-;47410:16;47438:23;47464:17;47474:6;47464:9;:17::i;:::-;47438:43;;47488:30;47535:15;47521:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47521:30:0;-1:-1:-1;47488:63:0;-1:-1:-1;47583:1:0;47558:22;47627:309;47652:15;47634;:33;:64;;;;;47689:9;;47671:14;:27;;47634:64;47627:309;;;47709:25;47737:23;47745:14;47737:7;:23::i;:::-;47709:51;;47796:6;-1:-1:-1;;;;;47775:27:0;:17;-1:-1:-1;;;;;47775:27:0;;47771:131;;;47848:14;47815:13;47829:15;47815:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;47875:17;;;;:::i;:::-;;;;47771:131;47912:16;;;;:::i;:::-;;;;47700:236;47627:309;;;-1:-1:-1;47951:13:0;;47335:635;-1:-1:-1;;;;47335:635:0:o;48563:74::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;48619:4:::1;:12:::0;48563:74::o;48779:132::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;48867:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;45051:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45018:28::-;;;;;;;:::i;29560:239::-;29632:7;29668:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29668:16:0;29703:19;29695:73;;;;-1:-1:-1;;;29695:73:0;;15460:2:1;29695:73:0;;;15442:21:1;15499:2;15479:18;;;15472:30;15538:34;15518:18;;;15511:62;15609:11;15589:18;;;15582:39;15638:19;;29695:73:0;15258:405:1;29290:208:0;29362:7;-1:-1:-1;;;;;29390:19:0;;29382:74;;;;-1:-1:-1;;;29382:74:0;;15049:2:1;29382:74:0;;;15031:21:1;15088:2;15068:18;;;15061:30;15127:34;15107:18;;;15100:62;15198:12;15178:18;;;15171:40;15228:19;;29382:74:0;14847:406:1;29382:74:0;-1:-1:-1;;;;;;29474:16:0;;;;;:9;:16;;;;;;;29290:208::o;9542:103::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;9607:30:::1;9634:1;9607:18;:30::i;:::-;9542:103::o:0;48917:100::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;48989:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;30035:104::-:0;30091:13;30124:7;30117:14;;;;;:::i;46728:438::-;46793:11;45776:1;45762:11;:15;:52;;;;;45796:18;;45781:11;:33;;45762:52;45754:85;;;;-1:-1:-1;;;45754:85:0;;11930:2:1;45754:85:0;;;11912:21:1;11969:2;11949:18;;;11942:30;12008:22;11988:18;;;11981:50;12048:18;;45754:85:0;11728:344:1;45754:85:0;45888:9;;45873:11;45854:16;:6;4311:14;;4219:114;45854:16;:30;;;;:::i;:::-;:43;;45846:76;;;;-1:-1:-1;;;45846:76:0;;18175:2:1;45846:76:0;;;18157:21:1;18214:2;18194:18;;;18187:30;18253:22;18233:18;;;18226:50;18293:18;;45846:76:0;17973:344:1;45846:76:0;46822:6:::1;::::0;::::1;;46821:7;46813:43;;;::::0;-1:-1:-1;;;46813:43:0;;17005:2:1;46813:43:0::1;::::0;::::1;16987:21:1::0;17044:2;17024:18;;;17017:30;17083:25;17063:18;;;17056:53;17126:18;;46813:43:0::1;16803:347:1::0;46813:43:0::1;46867:6;::::0;;;::::1;;;:14;;46877:4;46867:14;46863:91;;;46902:9;:7;:9::i;:::-;:17;;46915:4;46902:17;46894:52;;;::::0;-1:-1:-1;;;46894:52:0;;18942:2:1;46894:52:0::1;::::0;::::1;18924:21:1::0;18981:2;18961:18;;;18954:30;19020:24;19000:18;;;18993:52;19062:18;;46894:52:0::1;18740:346:1::0;46894:52:0::1;47005:2;46990:11;46968:21;46978:10;46968:9;:21::i;:::-;:33;;;;:::i;:::-;:39;;46960:85;;;::::0;-1:-1:-1;;;46960:85:0;;10358:2:1;46960:85:0::1;::::0;::::1;10340:21:1::0;10397:2;10377:18;;;10370:30;10436:34;10416:18;;;10409:62;10507:3;10487:18;;;10480:31;10528:19;;46960:85:0::1;10156:397:1::0;46960:85:0::1;47082:11;47075:4;;:18;;;;:::i;:::-;47062:9;:31;;47054:63;;;::::0;-1:-1:-1;;;47054:63:0;;19699:2:1;47054:63:0::1;::::0;::::1;19681:21:1::0;19738:2;19718:18;;;19711:30;19777:21;19757:18;;;19750:49;19816:18;;47054:63:0::1;19497:343:1::0;47054:63:0::1;47126:34;47136:10;47148:11;47126:9;:34::i;31718:155::-:0;31813:52;7695:10;31846:8;31856;31813:18;:52::i;50139:326::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;50230:5:::1;1640:6;1615:21;:19;:21::i;:::-;:31;;1602:97;;;::::0;-1:-1:-1;;;1602:97:0;;12690:2:1;1602:97:0::1;::::0;::::1;12672:21:1::0;12729:2;12709:18;;;12702:30;12768:34;12748:18;;;12741:62;12839:10;12819:18;;;12812:38;12867:19;;1602:97:0::1;12488:404:1::0;1602:97:0::1;45425:2:::2;50265:16;;50257:5;:24;;;;:::i;:::-;:39;;50244:107;;;::::0;-1:-1:-1;;;50244:107:0;;12279:2:1;50244:107:0::2;::::0;::::2;12261:21:1::0;12318:2;12298:18;;;12291:30;12357:34;12337:18;;;12330:62;12428:12;12408:18;;;12401:40;12458:19;;50244:107:0::2;12077:406:1::0;50244:107:0::2;50361:9;50356:75;50380:5;50376:1;:9;50356:75;;;50398:27;50412:12;50398:13;:27::i;:::-;50387:3:::0;::::2;::::0;::::2;:::i;:::-;;;;50356:75;;;;50455:5;50435:16;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;50139:326:0:o;45089:31::-;;;;;;;:::i;48643:130::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;48727:18:::1;:40:::0;48643:130::o;32841:328::-;33016:41;7695:10;33049:7;33016:18;:41::i;:::-;33008:103;;;;-1:-1:-1;;;33008:103:0;;18524:2:1;33008:103:0;;;18506:21:1;18563:2;18543:18;;;18536:30;18602:34;18582:18;;;18575:62;18673:19;18653:18;;;18646:47;18710:19;;33008:103:0;18322:413:1;33008:103:0;33122:39;33136:4;33142:2;33146:7;33155:5;33122:13;:39::i;:::-;32841:328;;;;:::o;47976:494::-;34744:4;34768:16;;;:7;:16;;;;;;48075:13;;-1:-1:-1;;;;;34768:16:0;48100:98;;;;-1:-1:-1;;;48100:98:0;;17357:2:1;48100:98:0;;;17339:21:1;17396:2;17376:18;;;17369:30;17435:34;17415:18;;;17408:62;17506:17;17486:18;;;17479:45;17541:19;;48100:98:0;17155:411:1;48100:98:0;48211:8;;;;;;;48207:64;;48246:17;48239:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47976:494;;;:::o;48207:64::-;48279:28;48310:10;:8;:10::i;:::-;48279:41;;48365:1;48340:14;48334:28;:32;:130;;;;;;;;;;;;;;;;;48402:14;48418:19;:8;:17;:19::i;:::-;48439:9;48385:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48334:130;48327:137;47976:494;-1:-1:-1;;;47976:494:0:o;48476:81::-;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;48534:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;48534:17:0;;::::1;::::0;;;::::1;::::0;;48476:81::o;932:113::-;984:7;1028:12;819:11;;;755:80;1028:12;1005:35;;553:19;1005:35;:::i;:::-;998:42;;932:113;:::o;47174:155::-;47260:11;45776:1;45762:11;:15;:52;;;;;45796:18;;45781:11;:33;;45762:52;45754:85;;;;-1:-1:-1;;;45754:85:0;;11930:2:1;45754:85:0;;;11912:21:1;11969:2;11949:18;;;11942:30;12008:22;11988:18;;;11981:50;12048:18;;45754:85:0;11728:344:1;45754:85:0;45888:9;;45873:11;45854:16;:6;4311:14;;4219:114;45854:16;:30;;;;:::i;:::-;:43;;45846:76;;;;-1:-1:-1;;;45846:76:0;;18175:2:1;45846:76:0;;;18157:21:1;18214:2;18194:18;;;18187:30;18253:22;18233:18;;;18226:50;18293:18;;45846:76:0;17973:344:1;45846:76:0;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23:::1;9103:68;;;::::0;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0::1;::::0;::::1;16626:21:1::0;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0::1;16442:356:1::0;9103:68:0::1;47290:33:::2;47300:9;47311:11;47290:9;:33::i;9800:201::-:0;8964:6;;-1:-1:-1;;;;;8964:6:0;7695:10;9111:23;9103:68;;;;-1:-1:-1;;;9103:68:0;;16644:2:1;9103:68:0;;;16626:21:1;;;16663:18;;;16656:30;-1:-1:-1;;;;;;;;;;;16702:18:1;;;16695:62;16774:18;;9103:68:0;16442:356:1;9103:68:0;-1:-1:-1;;;;;9889:22:0;::::1;9881:73;;;::::0;-1:-1:-1;;;9881:73:0;;10760:2:1;9881:73:0::1;::::0;::::1;10742:21:1::0;10799:2;10779:18;;;10772:30;10838:34;10818:18;;;10811:62;10909:8;10889:18;;;10882:36;10935:19;;9881:73:0::1;10558:402:1::0;9881:73:0::1;9965:28;9984:8;9965:18;:28::i;:::-;9800:201:::0;:::o;38825:174::-;38900:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;38900:29:0;-1:-1:-1;;;;;38900:29:0;;;;;;;;:24;;38954:23;38900:24;38954:14;:23::i;:::-;-1:-1:-1;;;;;38945:46:0;;;;;;;;;;;38825:174;;:::o;34973:348::-;35066:4;34768:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34768:16:0;35083:73;;;;-1:-1:-1;;;35083:73:0;;14211:2:1;35083:73:0;;;14193:21:1;14250:2;14230:18;;;14223:30;14289:34;14269:18;;;14262:62;-1:-1:-1;;;14340:18:1;;;14333:42;14392:19;;35083:73:0;14009:408:1;35083:73:0;35167:13;35183:23;35198:7;35183:14;:23::i;:::-;35167:39;;35236:5;-1:-1:-1;;;;;35225:16:0;:7;-1:-1:-1;;;;;35225:16:0;;:51;;;;35269:7;-1:-1:-1;;;;;35245:31:0;:20;35257:7;35245:11;:20::i;:::-;-1:-1:-1;;;;;35245:31:0;;35225:51;:87;;;-1:-1:-1;;;;;;32065:25:0;;;32041:4;32065:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35280:32;35217:96;34973:348;-1:-1:-1;;;;34973:348:0:o;38082:625::-;38241:4;-1:-1:-1;;;;;38214:31:0;:23;38229:7;38214:14;:23::i;:::-;-1:-1:-1;;;;;38214:31:0;;38206:81;;;;-1:-1:-1;;;38206:81:0;;11167:2:1;38206:81:0;;;11149:21:1;11206:2;11186:18;;;11179:30;11245:34;11225:18;;;11218:62;11316:7;11296:18;;;11289:35;11341:19;;38206:81:0;10965:401:1;38206:81:0;-1:-1:-1;;;;;38306:16:0;;38298:65;;;;-1:-1:-1;;;38298:65:0;;13099:2:1;38298:65:0;;;13081:21:1;13138:2;13118:18;;;13111:30;13177:34;13157:18;;;13150:62;13248:6;13228:18;;;13221:34;13272:19;;38298:65:0;12897:400:1;38298:65:0;38480:29;38497:1;38501:7;38480:8;:29::i;:::-;-1:-1:-1;;;;;38522:15:0;;;;;;:9;:15;;;;;:20;;38541:1;;38522:15;:20;;38541:1;;38522:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38553:13:0;;;;;;:9;:13;;;;;:18;;38570:1;;38553:13;:18;;38570:1;;38553:18;:::i;:::-;;;;-1:-1:-1;;38582:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;38582:21:0;-1:-1:-1;;;;;38582:21:0;;;;;;;;;38621:27;;38582:16;;38621:27;;;;;;;31018:341;30948:411;;:::o;10161:191::-;10254:6;;;-1:-1:-1;;;;;10271:17:0;;;-1:-1:-1;;10271:17:0;;;;;;;10304:40;;10254:6;;;10271:17;10254:6;;10304:40;;10235:16;;10304:40;10224:128;10161:191;:::o;49676:190::-;49756:9;49751:110;49775:11;49771:1;:15;49751:110;;;49802:18;:6;4430:19;;4448:1;4430:19;;;4341:127;49802:18;49829:24;49843:9;49829:13;:24::i;:::-;49788:3;;;;:::i;:::-;;;;49751:110;;39141:315;39296:8;-1:-1:-1;;;;;39287:17:0;:5;-1:-1:-1;;;;;39287:17:0;;;39279:55;;;;-1:-1:-1;;;39279:55:0;;13504:2:1;39279:55:0;;;13486:21:1;13543:2;13523:18;;;13516:30;13582:27;13562:18;;;13555:55;13627:18;;39279:55:0;13302:349:1;39279:55:0;-1:-1:-1;;;;;39345:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39345:46:0;;;;;;;;;;39407:41;;9461::1;;;39407::0;;9434:18:1;39407:41:0;;;;;;;39141:315;;;:::o;49872:151::-;49920:10;49933:11;:9;:11::i;:::-;49920:24;;49966:1;49961:2;:6;:30;;;;;49982:9;;49976:2;:15;;49961:30;49949:47;;;;:::i;:::-;50001:17;50011:2;50015;50001:9;:17::i;34051:315::-;34208:28;34218:4;34224:2;34228:7;34208:9;:28::i;:::-;34255:48;34278:4;34284:2;34288:7;34297:5;34255:22;:48::i;:::-;34247:111;;;;-1:-1:-1;;;34247:111:0;;9939:2:1;34247:111:0;;;9921:21:1;9978:2;9958:18;;;9951:30;10017:34;9997:18;;;9990:62;-1:-1:-1;;;10068:18:1;;;10061:48;10126:19;;34247:111:0;9737:414:1;50029:104:0;50089:13;50118:9;50111:16;;;;;:::i;5177:723::-;5233:13;5454:10;5450:53;;-1:-1:-1;;5481:10:0;;;;;;;;;;;;;;;;;;5177:723::o;5450:53::-;5528:5;5513:12;5569:78;5576:9;;5569:78;;5602:8;;;;:::i;:::-;;-1:-1:-1;5625:10:0;;-1:-1:-1;5633:2:0;5625:10;;:::i;:::-;;;5569:78;;;5657:19;5689:6;5679:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5679:17:0;;5657:39;;5707:154;5714:10;;5707:154;;5741:11;5751:1;5741:11;;:::i;:::-;;-1:-1:-1;5810:10:0;5818:2;5810:5;:10;:::i;:::-;5797:24;;:2;:24;:::i;:::-;5784:39;;5767:6;5774;5767:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;5838:11:0;5847:2;5838:11;;:::i;:::-;;;5707:154;;2293:1049;2341:7;2355:16;2397:12;819:11;;;755:80;2397:12;2374:35;;553:19;2374:35;:::i;:::-;2460:132;;-1:-1:-1;;2484:10:0;5914:2:1;5910:15;;;5906:24;;2460:132:0;;;5894:37:1;2502:14:0;5965:15:1;;5961:24;5947:12;;;5940:46;2524:16:0;6002:12:1;;;5995:28;2548:14:0;6039:12:1;;;6032:28;2570:15:0;6076:13:1;;;6069:29;2355:54:0;;-1:-1:-1;2414:14:0;;2355:54;;6114:13:1;;2460:132:0;;;;;;;;;;;;2444:154;;;;;;2431:172;;:183;;;;:::i;:::-;2621:13;2647:19;;;:11;:19;;;;;;2414:200;;-1:-1:-1;2621:13:0;2643:256;;-1:-1:-1;2774:6:0;2643:256;;;-1:-1:-1;2874:19:0;;;;:11;:19;;;;;;2643:256;2964:11;:25;2976:12;2987:1;2976:8;:12;:::i;:::-;2964:25;;;;;;;;;;;;2993:1;2964:30;2960:283;;;3080:12;3091:1;3080:8;:12;:::i;:::-;3058:19;;;;:11;:19;;;;;:34;2960:283;;;3212:11;:25;3224:12;3235:1;3224:8;:12;:::i;:::-;3212:25;;;;;;;;;;;;;;-1:-1:-1;3212:25:0;;;;3190:19;;;:11;:19;;;;:47;2960:283;3289:17;:15;:17::i;:::-;-1:-1:-1;3320:17:0;3328:9;3320:5;:17;:::i;:::-;3313:24;;;;;2293:1049;:::o;35663:110::-;35739:26;35749:2;35753:7;35739:26;;;;;;;;;;;;:9;:26::i;40021:799::-;40176:4;-1:-1:-1;;;;;40197:13:0;;11887:19;:23;40193:620;;40233:72;;-1:-1:-1;;;40233:72:0;;-1:-1:-1;;;;;40233:36:0;;;;;:72;;7695:10;;40284:4;;40290:7;;40299:5;;40233:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40233:72:0;;;;;;;;-1:-1:-1;;40233:72:0;;;;;;;;;;;;:::i;:::-;;;40229:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40475:13:0;;40471:272;;40518:60;;-1:-1:-1;;;40518:60:0;;9939:2:1;40518:60:0;;;9921:21:1;9978:2;9958:18;;;9951:30;10017:34;9997:18;;;9990:62;-1:-1:-1;;;10068:18:1;;;10061:48;10126:19;;40518:60:0;9737:414:1;40471:272:0;40693:6;40687:13;40678:6;40674:2;40670:15;40663:38;40229:529;-1:-1:-1;;;;;;40356:51:0;-1:-1:-1;;;40356:51:0;;-1:-1:-1;40349:58:0;;40193:620;-1:-1:-1;40797:4:0;40021:799;;;;;;:::o;1146:105::-;1212:7;1381:1;1357:21;:19;:21::i;:::-;:25;1349:62;;;;-1:-1:-1;;;1349:62:0;;13858:2:1;1349:62:0;;;13840:21:1;13897:2;13877:18;;;13870:30;13936:26;13916:18;;;13909:54;13980:18;;1349:62:0;13656:348:1;1349:62:0;1233:11:::1;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;1226:20;;1146:105:::0;:::o;36000:321::-;36130:18;36136:2;36140:7;36130:5;:18::i;:::-;36181:54;36212:1;36216:2;36220:7;36229:5;36181:22;:54::i;:::-;36159:154;;;;-1:-1:-1;;;36159:154:0;;9939:2:1;36159:154:0;;;9921:21:1;9978:2;9958:18;;;9951:30;10017:34;9997:18;;;9990:62;-1:-1:-1;;;10068:18:1;;;10061:48;10126:19;;36159:154:0;9737:414:1;36657:439:0;-1:-1:-1;;;;;36737:16:0;;36729:61;;;;-1:-1:-1;;;36729:61:0;;15870:2:1;36729:61:0;;;15852:21:1;;;15889:18;;;15882:30;15948:34;15928:18;;;15921:62;16000:18;;36729:61:0;15668:356:1;36729:61:0;34744:4;34768:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34768:16:0;:30;36801:58;;;;-1:-1:-1;;;36801:58:0;;11573:2:1;36801:58:0;;;11555:21:1;11612:2;11592:18;;;11585:30;11651;11631:18;;;11624:58;11699:18;;36801:58:0;11371:352:1;36801:58:0;-1:-1:-1;;;;;36930:13:0;;;;;;:9;:13;;;;;:18;;36947:1;;36930:13;:18;;36947:1;;36930:18;:::i;:::-;;;;-1:-1:-1;;36959:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;36959:21:0;-1:-1:-1;;;;;36959:21:0;;;;;;;;36998:33;;36959:16;;;36998:33;;36959:16;;36998:33;49095:22:::1;49023:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:196::-;493:20;;-1:-1:-1;;;;;542:54:1;;532:65;;522:93;;611:1;608;601:12;522:93;425:196;;;:::o;626:160::-;691:20;;747:13;;740:21;730:32;;720:60;;776:1;773;766:12;791:186;850:6;903:2;891:9;882:7;878:23;874:32;871:52;;;919:1;916;909:12;871:52;942:29;961:9;942:29;:::i;982:260::-;1050:6;1058;1111:2;1099:9;1090:7;1086:23;1082:32;1079:52;;;1127:1;1124;1117:12;1079:52;1150:29;1169:9;1150:29;:::i;:::-;1140:39;;1198:38;1232:2;1221:9;1217:18;1198:38;:::i;:::-;1188:48;;982:260;;;;;:::o;1247:328::-;1324:6;1332;1340;1393:2;1381:9;1372:7;1368:23;1364:32;1361:52;;;1409:1;1406;1399:12;1361:52;1432:29;1451:9;1432:29;:::i;:::-;1422:39;;1480:38;1514:2;1503:9;1499:18;1480:38;:::i;:::-;1470:48;;1565:2;1554:9;1550:18;1537:32;1527:42;;1247:328;;;;;:::o;1580:666::-;1675:6;1683;1691;1699;1752:3;1740:9;1731:7;1727:23;1723:33;1720:53;;;1769:1;1766;1759:12;1720:53;1792:29;1811:9;1792:29;:::i;:::-;1782:39;;1840:38;1874:2;1863:9;1859:18;1840:38;:::i;:::-;1830:48;;1925:2;1914:9;1910:18;1897:32;1887:42;;1980:2;1969:9;1965:18;1952:32;2007:18;1999:6;1996:30;1993:50;;;2039:1;2036;2029:12;1993:50;2062:22;;2115:4;2107:13;;2103:27;-1:-1:-1;2093:55:1;;2144:1;2141;2134:12;2093:55;2167:73;2232:7;2227:2;2214:16;2209:2;2205;2201:11;2167:73;:::i;:::-;2157:83;;;1580:666;;;;;;;:::o;2251:254::-;2316:6;2324;2377:2;2365:9;2356:7;2352:23;2348:32;2345:52;;;2393:1;2390;2383:12;2345:52;2416:29;2435:9;2416:29;:::i;:::-;2406:39;;2464:35;2495:2;2484:9;2480:18;2464:35;:::i;2510:254::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:52;;;2655:1;2652;2645:12;2607:52;2678:29;2697:9;2678:29;:::i;:::-;2668:39;2754:2;2739:18;;;;2726:32;;-1:-1:-1;;;2510:254:1:o;2769:963::-;2853:6;2884:2;2927;2915:9;2906:7;2902:23;2898:32;2895:52;;;2943:1;2940;2933:12;2895:52;2983:9;2970:23;3012:18;3053:2;3045:6;3042:14;3039:34;;;3069:1;3066;3059:12;3039:34;3107:6;3096:9;3092:22;3082:32;;3152:7;3145:4;3141:2;3137:13;3133:27;3123:55;;3174:1;3171;3164:12;3123:55;3210:2;3197:16;3232:2;3228;3225:10;3222:36;;;3238:18;;:::i;:::-;3284:2;3281:1;3277:10;3267:20;;3307:28;3331:2;3327;3323:11;3307:28;:::i;:::-;3369:15;;;3400:12;;;;3432:11;;;3462;;;3458:20;;3455:33;-1:-1:-1;3452:53:1;;;3501:1;3498;3491:12;3452:53;3523:1;3514:10;;3533:169;3547:2;3544:1;3541:9;3533:169;;;3604:23;3623:3;3604:23;:::i;:::-;3592:36;;3565:1;3558:9;;;;;3648:12;;;;3680;;3533:169;;;-1:-1:-1;3721:5:1;2769:963;-1:-1:-1;;;;;;;;2769:963:1:o;3737:180::-;3793:6;3846:2;3834:9;3825:7;3821:23;3817:32;3814:52;;;3862:1;3859;3852:12;3814:52;3885:26;3901:9;3885:26;:::i;3922:245::-;3980:6;4033:2;4021:9;4012:7;4008:23;4004:32;4001:52;;;4049:1;4046;4039:12;4001:52;4088:9;4075:23;4107:30;4131:5;4107:30;:::i;4172:249::-;4241:6;4294:2;4282:9;4273:7;4269:23;4265:32;4262:52;;;4310:1;4307;4300:12;4262:52;4342:9;4336:16;4361:30;4385:5;4361:30;:::i;4426:450::-;4495:6;4548:2;4536:9;4527:7;4523:23;4519:32;4516:52;;;4564:1;4561;4554:12;4516:52;4604:9;4591:23;4637:18;4629:6;4626:30;4623:50;;;4669:1;4666;4659:12;4623:50;4692:22;;4745:4;4737:13;;4733:27;-1:-1:-1;4723:55:1;;4774:1;4771;4764:12;4723:55;4797:73;4862:7;4857:2;4844:16;4839:2;4835;4831:11;4797:73;:::i;4881:180::-;4940:6;4993:2;4981:9;4972:7;4968:23;4964:32;4961:52;;;5009:1;5006;4999:12;4961:52;-1:-1:-1;5032:23:1;;4881:180;-1:-1:-1;4881:180:1:o;5066:254::-;5134:6;5142;5195:2;5183:9;5174:7;5170:23;5166:32;5163:52;;;5211:1;5208;5201:12;5163:52;5247:9;5234:23;5224:33;;5276:38;5310:2;5299:9;5295:18;5276:38;:::i;5325:257::-;5366:3;5404:5;5398:12;5431:6;5426:3;5419:19;5447:63;5503:6;5496:4;5491:3;5487:14;5480:4;5473:5;5469:16;5447:63;:::i;:::-;5564:2;5543:15;-1:-1:-1;;5539:29:1;5530:39;;;;5571:4;5526:50;;5325:257;-1:-1:-1;;5325:257:1:o;6138:1584::-;6362:3;6400:6;6394:13;6426:4;6439:51;6483:6;6478:3;6473:2;6465:6;6461:15;6439:51;:::i;:::-;6553:13;;6512:16;;;;6575:55;6553:13;6512:16;6597:15;;;6575:55;:::i;:::-;6719:13;;6652:20;;;6692:1;;6779;6801:18;;;;6854;;;;6881:93;;6959:4;6949:8;6945:19;6933:31;;6881:93;7022:2;7012:8;7009:16;6989:18;6986:40;6983:224;;;-1:-1:-1;;;7056:3:1;7049:90;7162:4;7159:1;7152:15;7192:4;7187:3;7180:17;6983:224;7223:18;7250:110;;;;7374:1;7369:328;;;;7216:481;;7250:110;-1:-1:-1;;7285:24:1;;7271:39;;7330:20;;;;-1:-1:-1;7250:110:1;;7369:328;20380:1;20373:14;;;20417:4;20404:18;;7464:1;7478:169;7492:8;7489:1;7486:15;7478:169;;;7574:14;;7559:13;;;7552:37;7617:16;;;;7509:10;;7478:169;;;7482:3;;7678:8;7671:5;7667:20;7660:27;;7216:481;-1:-1:-1;7713:3:1;;6138:1584;-1:-1:-1;;;;;;;;;;;6138:1584:1:o;8168:511::-;8362:4;-1:-1:-1;;;;;8472:2:1;8464:6;8460:15;8449:9;8442:34;8524:2;8516:6;8512:15;8507:2;8496:9;8492:18;8485:43;;8564:6;8559:2;8548:9;8544:18;8537:34;8607:3;8602:2;8591:9;8587:18;8580:31;8628:45;8668:3;8657:9;8653:19;8645:6;8628:45;:::i;:::-;8620:53;8168:511;-1:-1:-1;;;;;;8168:511:1:o;8684:632::-;8855:2;8907:21;;;8977:13;;8880:18;;;8999:22;;;8826:4;;8855:2;9078:15;;;;9052:2;9037:18;;;8826:4;9121:169;9135:6;9132:1;9129:13;9121:169;;;9196:13;;9184:26;;9265:15;;;;9230:12;;;;9157:1;9150:9;9121:169;;;-1:-1:-1;9307:3:1;;8684:632;-1:-1:-1;;;;;;8684:632:1:o;9513:219::-;9662:2;9651:9;9644:21;9625:4;9682:44;9722:2;9711:9;9707:18;9699:6;9682:44;:::i;20027:275::-;20098:2;20092:9;20163:2;20144:13;;-1:-1:-1;;20140:27:1;20128:40;;20198:18;20183:34;;20219:22;;;20180:62;20177:88;;;20245:18;;:::i;:::-;20281:2;20274:22;20027:275;;-1:-1:-1;20027:275:1:o;20433:128::-;20473:3;20504:1;20500:6;20497:1;20494:13;20491:39;;;20510:18;;:::i;:::-;-1:-1:-1;20546:9:1;;20433:128::o;20566:120::-;20606:1;20632;20622:35;;20637:18;;:::i;:::-;-1:-1:-1;20671:9:1;;20566:120::o;20691:168::-;20731:7;20797:1;20793;20789:6;20785:14;20782:1;20779:21;20774:1;20767:9;20760:17;20756:45;20753:71;;;20804:18;;:::i;:::-;-1:-1:-1;20844:9:1;;20691:168::o;20864:125::-;20904:4;20932:1;20929;20926:8;20923:34;;;20937:18;;:::i;:::-;-1:-1:-1;20974:9:1;;20864:125::o;20994:258::-;21066:1;21076:113;21090:6;21087:1;21084:13;21076:113;;;21166:11;;;21160:18;21147:11;;;21140:39;21112:2;21105:10;21076:113;;;21207:6;21204:1;21201:13;21198:48;;;-1:-1:-1;;21242:1:1;21224:16;;21217:27;20994:258::o;21257:437::-;21336:1;21332:12;;;;21379;;;21400:61;;21454:4;21446:6;21442:17;21432:27;;21400:61;21507:2;21499:6;21496:14;21476:18;21473:38;21470:218;;;-1:-1:-1;;;21541:1:1;21534:88;21645:4;21642:1;21635:15;21673:4;21670:1;21663:15;21470:218;;21257:437;;;:::o;21699:135::-;21738:3;-1:-1:-1;;21759:17:1;;21756:43;;;21779:18;;:::i;:::-;-1:-1:-1;21826:1:1;21815:13;;21699:135::o;21839:112::-;21871:1;21897;21887:35;;21902:18;;:::i;:::-;-1:-1:-1;21936:9:1;;21839:112::o;21956:184::-;-1:-1:-1;;;22005:1:1;21998:88;22105:4;22102:1;22095:15;22129:4;22126:1;22119:15;22145:184;-1:-1:-1;;;22194:1:1;22187:88;22294:4;22291:1;22284:15;22318:4;22315:1;22308:15;22334:184;-1:-1:-1;;;22383:1:1;22376:88;22483:4;22480:1;22473:15;22507:4;22504:1;22497:15;22523:184;-1:-1:-1;;;22572:1:1;22565:88;22672:4;22669:1;22662:15;22696:4;22693:1;22686:15;22712:184;-1:-1:-1;;;22761:1:1;22754:88;22861:4;22858:1;22851:15;22885:4;22882:1;22875:15;22901:177;-1:-1:-1;;;;;;22979:5:1;22975:78;22968:5;22965:89;22955:117;;23068:1;23065;23058:12
Swarm Source
ipfs://9eaa805b517d52d313eb600ab4c9c882028250fb5daf5b3c866ae619926f9a9a
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.