Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 12 from a total of 12 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 14644370 | 991 days ago | IN | 0 ETH | 0.00078544 | ||||
Mint | 14594287 | 999 days ago | IN | 0.0777 ETH | 0.00452772 | ||||
Set Uri Prefix | 14552654 | 1006 days ago | IN | 0 ETH | 0.00151969 | ||||
Mint For Address | 14552622 | 1006 days ago | IN | 0 ETH | 0.00755178 | ||||
Set Uri Suffix | 14552615 | 1006 days ago | IN | 0 ETH | 0.00145897 | ||||
Set Uri Prefix | 14552615 | 1006 days ago | IN | 0 ETH | 0.00184744 | ||||
Set Uri Prefix | 14548818 | 1006 days ago | IN | 0 ETH | 0.00128636 | ||||
Set Uri Suffix | 14548808 | 1006 days ago | IN | 0 ETH | 0.00102976 | ||||
Set Uri Suffix | 14548658 | 1006 days ago | IN | 0 ETH | 0.00155146 | ||||
Set Uri Suffix | 14547626 | 1006 days ago | IN | 0 ETH | 0.00171951 | ||||
Mint For Address | 14547488 | 1006 days ago | IN | 0 ETH | 0.00491852 | ||||
Set Uri Prefix | 14547468 | 1006 days ago | IN | 0 ETH | 0.00566052 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14644370 | 991 days ago | 0.0777 ETH |
Loading...
Loading
Contract Name:
DegenifyPass
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-08 */ // SPDX-License-Identifier: MIT // 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/degenify.sol pragma solidity >=0.8.7; contract DegenifyPass is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.0777 ether; uint256 public maxSupply = 777; uint256 public maxMintAmountPerTx = 7; bool public paused = false; constructor() ERC721("DegenifyPass", "DegenifyPass") { } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); 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 tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } 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 withdraw() public onlyOwner { (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(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","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":"setPaused","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600890805190602001906200002b9291906200024e565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000799291906200024e565b506701140bbd030c4000600b55610309600c556007600d556000600e60006101000a81548160ff021916908315150217905550348015620000b957600080fd5b506040518060400160405280600c81526020017f446567656e6966795061737300000000000000000000000000000000000000008152506040518060400160405280600c81526020017f446567656e69667950617373000000000000000000000000000000000000000081525081600090805190602001906200013e9291906200024e565b508060019080519060200190620001579291906200024e565b5050506200017a6200016e6200018060201b60201c565b6200018860201b60201c565b62000363565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025c90620002fe565b90600052602060002090601f016020900481019282620002805760008555620002cc565b82601f106200029b57805160ff1916838001178555620002cc565b82800160010185558215620002cc579182015b82811115620002cb578251825591602001919060010190620002ae565b5b509050620002db9190620002df565b5090565b5b80821115620002fa576000816000905550600101620002e0565b5090565b600060028204905060018216806200031757607f821691505b602082108114156200032e576200032d62000334565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613d3980620003736000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a45ba8e711610095578063d5abeb0111610064578063d5abeb01146106ab578063e985e9c5146106d6578063efbd73f414610713578063f2fde38b1461073c576101e3565b8063a45ba8e7146105f1578063b071401b1461061c578063b88d4fde14610645578063c87b56dd1461066e576101e3565b806394354fd0116100d157806394354fd01461055657806395d89b4114610581578063a0712d68146105ac578063a22cb465146105c8576101e3565b806370a08231146104ae578063715018a6146104eb5780637ec4a659146105025780638da5cb5b1461052b576101e3565b806323b872dd1161017a5780635503a0e8116101495780635503a0e8146103f05780635c975abb1461041b57806362b99ad4146104465780636352211e14610471576101e3565b806323b872dd1461035e5780633ccfd60b1461038757806342842e0e1461039e57806344a0d68a146103c7576101e3565b806313faede6116101b657806313faede6146102b657806316ba10e0146102e157806316c38b3c1461030a57806318160ddd14610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612a43565b610765565b60405161021c919061302e565b60405180910390f35b34801561023157600080fd5b5061023a610847565b6040516102479190613049565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612ae6565b6108d9565b6040516102849190612fc7565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906129d6565b61095e565b005b3480156102c257600080fd5b506102cb610a76565b6040516102d891906132eb565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612a9d565b610a7c565b005b34801561031657600080fd5b50610331600480360381019061032c9190612a16565b610b12565b005b34801561033f57600080fd5b50610348610bab565b60405161035591906132eb565b60405180910390f35b34801561036a57600080fd5b50610385600480360381019061038091906128c0565b610bbc565b005b34801561039357600080fd5b5061039c610c1c565b005b3480156103aa57600080fd5b506103c560048036038101906103c091906128c0565b610d18565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612ae6565b610d38565b005b3480156103fc57600080fd5b50610405610dbe565b6040516104129190613049565b60405180910390f35b34801561042757600080fd5b50610430610e4c565b60405161043d919061302e565b60405180910390f35b34801561045257600080fd5b5061045b610e5f565b6040516104689190613049565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190612ae6565b610eed565b6040516104a59190612fc7565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612853565b610f9f565b6040516104e291906132eb565b60405180910390f35b3480156104f757600080fd5b50610500611057565b005b34801561050e57600080fd5b5061052960048036038101906105249190612a9d565b6110df565b005b34801561053757600080fd5b50610540611175565b60405161054d9190612fc7565b60405180910390f35b34801561056257600080fd5b5061056b61119f565b60405161057891906132eb565b60405180910390f35b34801561058d57600080fd5b506105966111a5565b6040516105a39190613049565b60405180910390f35b6105c660048036038101906105c19190612ae6565b611237565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612996565b611390565b005b3480156105fd57600080fd5b506106066113a6565b6040516106139190613049565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e9190612ae6565b611434565b005b34801561065157600080fd5b5061066c60048036038101906106679190612913565b6114ba565b005b34801561067a57600080fd5b5061069560048036038101906106909190612ae6565b61151c565b6040516106a29190613049565b60405180910390f35b3480156106b757600080fd5b506106c06115c6565b6040516106cd91906132eb565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612880565b6115cc565b60405161070a919061302e565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612b13565b611660565b005b34801561074857600080fd5b50610763600480360381019061075e9190612853565b611796565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610840575061083f8261188e565b5b9050919050565b606060008054610856906135bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610882906135bb565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e4826118f8565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a906131eb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096982610eed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d19061326b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f9611964565b73ffffffffffffffffffffffffffffffffffffffff161480610a285750610a2781610a22611964565b6115cc565b5b610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e9061316b565b60405180910390fd5b610a71838361196c565b505050565b600b5481565b610a84611964565b73ffffffffffffffffffffffffffffffffffffffff16610aa2611175565b73ffffffffffffffffffffffffffffffffffffffff1614610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef9061320b565b60405180910390fd5b8060099080519060200190610b0e929190612667565b5050565b610b1a611964565b73ffffffffffffffffffffffffffffffffffffffff16610b38611175565b73ffffffffffffffffffffffffffffffffffffffff1614610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b859061320b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610bb76007611a25565b905090565b610bcd610bc7611964565b82611a33565b610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c03906132ab565b60405180910390fd5b610c17838383611b11565b505050565b610c24611964565b73ffffffffffffffffffffffffffffffffffffffff16610c42611175565b73ffffffffffffffffffffffffffffffffffffffff1614610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f9061320b565b60405180910390fd5b6000610ca2611175565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cc590612fb2565b60006040518083038185875af1925050503d8060008114610d02576040519150601f19603f3d011682016040523d82523d6000602084013e610d07565b606091505b5050905080610d1557600080fd5b50565b610d33838383604051806020016040528060008152506114ba565b505050565b610d40611964565b73ffffffffffffffffffffffffffffffffffffffff16610d5e611175565b73ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061320b565b60405180910390fd5b80600b8190555050565b60098054610dcb906135bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610df7906135bb565b8015610e445780601f10610e1957610100808354040283529160200191610e44565b820191906000526020600020905b815481529060010190602001808311610e2757829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610e6c906135bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e98906135bb565b8015610ee55780601f10610eba57610100808354040283529160200191610ee5565b820191906000526020600020905b815481529060010190602001808311610ec857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906131ab565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110079061318b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61105f611964565b73ffffffffffffffffffffffffffffffffffffffff1661107d611175565b73ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca9061320b565b60405180910390fd5b6110dd6000611d78565b565b6110e7611964565b73ffffffffffffffffffffffffffffffffffffffff16611105611175565b73ffffffffffffffffffffffffffffffffffffffff161461115b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111529061320b565b60405180910390fd5b8060089080519060200190611171929190612667565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546111b4906135bb565b80601f01602080910402602001604051908101604052809291908181526020018280546111e0906135bb565b801561122d5780601f106112025761010080835404028352916020019161122d565b820191906000526020600020905b81548152906001019060200180831161121057829003601f168201915b5050505050905090565b8060008111801561124a5750600d548111155b611289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611280906130eb565b60405180910390fd5b600c54816112976007611a25565b6112a191906133f0565b11156112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d99061328b565b60405180910390fd5b600e60009054906101000a900460ff1615611332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113299061322b565b60405180910390fd5b81600b546113409190613477565b341015611382576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611379906132cb565b60405180910390fd5b61138c3383611e3e565b5050565b6113a261139b611964565b8383611e7e565b5050565b600a80546113b3906135bb565b80601f01602080910402602001604051908101604052809291908181526020018280546113df906135bb565b801561142c5780601f106114015761010080835404028352916020019161142c565b820191906000526020600020905b81548152906001019060200180831161140f57829003601f168201915b505050505081565b61143c611964565b73ffffffffffffffffffffffffffffffffffffffff1661145a611175565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a79061320b565b60405180910390fd5b80600d8190555050565b6114cb6114c5611964565b83611a33565b61150a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611501906132ab565b60405180910390fd5b61151684848484611feb565b50505050565b6060611527826118f8565b611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d9061324b565b60405180910390fd5b6000611570612047565b9050600081511161159057604051806020016040528060008152506115be565b8061159a846120d9565b60096040516020016115ae93929190612f81565b6040516020818303038152906040525b915050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116735750600d548111155b6116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a9906130eb565b60405180910390fd5b600c54816116c06007611a25565b6116ca91906133f0565b111561170b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117029061328b565b60405180910390fd5b611713611964565b73ffffffffffffffffffffffffffffffffffffffff16611731611175565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e9061320b565b60405180910390fd5b6117918284611e3e565b505050565b61179e611964565b73ffffffffffffffffffffffffffffffffffffffff166117bc611175565b73ffffffffffffffffffffffffffffffffffffffff1614611812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118099061320b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118799061308b565b60405180910390fd5b61188b81611d78565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119df83610eed565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a3e826118f8565b611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a749061314b565b60405180910390fd5b6000611a8883610eed565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611af757508373ffffffffffffffffffffffffffffffffffffffff16611adf846108d9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b085750611b0781856115cc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b3182610eed565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e906130ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee9061310b565b60405180910390fd5b611c0283838361223a565b611c0d60008261196c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5d91906134d1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb491906133f0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d7383838361223f565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611e7957611e536007612244565b611e6683611e616007611a25565b61225a565b8080611e719061361e565b915050611e41565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee49061312b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fde919061302e565b60405180910390a3505050565b611ff6848484611b11565b61200284848484612278565b612041576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120389061306b565b60405180910390fd5b50505050565b606060088054612056906135bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612082906135bb565b80156120cf5780601f106120a4576101008083540402835291602001916120cf565b820191906000526020600020905b8154815290600101906020018083116120b257829003601f168201915b5050505050905090565b60606000821415612121576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612235565b600082905060005b6000821461215357808061213c9061361e565b915050600a8261214c9190613446565b9150612129565b60008167ffffffffffffffff81111561216f5761216e613754565b5b6040519080825280601f01601f1916602001820160405280156121a15781602001600182028036833780820191505090505b5090505b6000851461222e576001826121ba91906134d1565b9150600a856121c99190613667565b60306121d591906133f0565b60f81b8183815181106121eb576121ea613725565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122279190613446565b94506121a5565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61227482826040518060200160405280600081525061240f565b5050565b60006122998473ffffffffffffffffffffffffffffffffffffffff1661246a565b15612402578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c2611964565b8786866040518563ffffffff1660e01b81526004016122e49493929190612fe2565b602060405180830381600087803b1580156122fe57600080fd5b505af192505050801561232f57506040513d601f19601f8201168201806040525081019061232c9190612a70565b60015b6123b2573d806000811461235f576040519150601f19603f3d011682016040523d82523d6000602084013e612364565b606091505b506000815114156123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a19061306b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612407565b600190505b949350505050565b612419838361248d565b6124266000848484612278565b612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c9061306b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f4906131cb565b60405180910390fd5b612506816118f8565b15612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d906130cb565b60405180910390fd5b6125526000838361223a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a291906133f0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126636000838361223f565b5050565b828054612673906135bb565b90600052602060002090601f01602090048101928261269557600085556126dc565b82601f106126ae57805160ff19168380011785556126dc565b828001600101855582156126dc579182015b828111156126db5782518255916020019190600101906126c0565b5b5090506126e991906126ed565b5090565b5b808211156127065760008160009055506001016126ee565b5090565b600061271d6127188461332b565b613306565b90508281526020810184848401111561273957612738613788565b5b612744848285613579565b509392505050565b600061275f61275a8461335c565b613306565b90508281526020810184848401111561277b5761277a613788565b5b612786848285613579565b509392505050565b60008135905061279d81613ca7565b92915050565b6000813590506127b281613cbe565b92915050565b6000813590506127c781613cd5565b92915050565b6000815190506127dc81613cd5565b92915050565b600082601f8301126127f7576127f6613783565b5b813561280784826020860161270a565b91505092915050565b600082601f83011261282557612824613783565b5b813561283584826020860161274c565b91505092915050565b60008135905061284d81613cec565b92915050565b60006020828403121561286957612868613792565b5b60006128778482850161278e565b91505092915050565b6000806040838503121561289757612896613792565b5b60006128a58582860161278e565b92505060206128b68582860161278e565b9150509250929050565b6000806000606084860312156128d9576128d8613792565b5b60006128e78682870161278e565b93505060206128f88682870161278e565b92505060406129098682870161283e565b9150509250925092565b6000806000806080858703121561292d5761292c613792565b5b600061293b8782880161278e565b945050602061294c8782880161278e565b935050604061295d8782880161283e565b925050606085013567ffffffffffffffff81111561297e5761297d61378d565b5b61298a878288016127e2565b91505092959194509250565b600080604083850312156129ad576129ac613792565b5b60006129bb8582860161278e565b92505060206129cc858286016127a3565b9150509250929050565b600080604083850312156129ed576129ec613792565b5b60006129fb8582860161278e565b9250506020612a0c8582860161283e565b9150509250929050565b600060208284031215612a2c57612a2b613792565b5b6000612a3a848285016127a3565b91505092915050565b600060208284031215612a5957612a58613792565b5b6000612a67848285016127b8565b91505092915050565b600060208284031215612a8657612a85613792565b5b6000612a94848285016127cd565b91505092915050565b600060208284031215612ab357612ab2613792565b5b600082013567ffffffffffffffff811115612ad157612ad061378d565b5b612add84828501612810565b91505092915050565b600060208284031215612afc57612afb613792565b5b6000612b0a8482850161283e565b91505092915050565b60008060408385031215612b2a57612b29613792565b5b6000612b388582860161283e565b9250506020612b498582860161278e565b9150509250929050565b612b5c81613505565b82525050565b612b6b81613517565b82525050565b6000612b7c826133a2565b612b8681856133b8565b9350612b96818560208601613588565b612b9f81613797565b840191505092915050565b6000612bb5826133ad565b612bbf81856133d4565b9350612bcf818560208601613588565b612bd881613797565b840191505092915050565b6000612bee826133ad565b612bf881856133e5565b9350612c08818560208601613588565b80840191505092915050565b60008154612c21816135bb565b612c2b81866133e5565b94506001821660008114612c465760018114612c5757612c8a565b60ff19831686528186019350612c8a565b612c608561338d565b60005b83811015612c8257815481890152600182019150602081019050612c63565b838801955050505b50505092915050565b6000612ca06032836133d4565b9150612cab826137a8565b604082019050919050565b6000612cc36026836133d4565b9150612cce826137f7565b604082019050919050565b6000612ce66025836133d4565b9150612cf182613846565b604082019050919050565b6000612d09601c836133d4565b9150612d1482613895565b602082019050919050565b6000612d2c6014836133d4565b9150612d37826138be565b602082019050919050565b6000612d4f6024836133d4565b9150612d5a826138e7565b604082019050919050565b6000612d726019836133d4565b9150612d7d82613936565b602082019050919050565b6000612d95602c836133d4565b9150612da08261395f565b604082019050919050565b6000612db86038836133d4565b9150612dc3826139ae565b604082019050919050565b6000612ddb602a836133d4565b9150612de6826139fd565b604082019050919050565b6000612dfe6029836133d4565b9150612e0982613a4c565b604082019050919050565b6000612e216020836133d4565b9150612e2c82613a9b565b602082019050919050565b6000612e44602c836133d4565b9150612e4f82613ac4565b604082019050919050565b6000612e676020836133d4565b9150612e7282613b13565b602082019050919050565b6000612e8a6017836133d4565b9150612e9582613b3c565b602082019050919050565b6000612ead602f836133d4565b9150612eb882613b65565b604082019050919050565b6000612ed06021836133d4565b9150612edb82613bb4565b604082019050919050565b6000612ef36000836133c9565b9150612efe82613c03565b600082019050919050565b6000612f166014836133d4565b9150612f2182613c06565b602082019050919050565b6000612f396031836133d4565b9150612f4482613c2f565b604082019050919050565b6000612f5c6013836133d4565b9150612f6782613c7e565b602082019050919050565b612f7b8161356f565b82525050565b6000612f8d8286612be3565b9150612f998285612be3565b9150612fa58284612c14565b9150819050949350505050565b6000612fbd82612ee6565b9150819050919050565b6000602082019050612fdc6000830184612b53565b92915050565b6000608082019050612ff76000830187612b53565b6130046020830186612b53565b6130116040830185612f72565b81810360608301526130238184612b71565b905095945050505050565b60006020820190506130436000830184612b62565b92915050565b600060208201905081810360008301526130638184612baa565b905092915050565b6000602082019050818103600083015261308481612c93565b9050919050565b600060208201905081810360008301526130a481612cb6565b9050919050565b600060208201905081810360008301526130c481612cd9565b9050919050565b600060208201905081810360008301526130e481612cfc565b9050919050565b6000602082019050818103600083015261310481612d1f565b9050919050565b6000602082019050818103600083015261312481612d42565b9050919050565b6000602082019050818103600083015261314481612d65565b9050919050565b6000602082019050818103600083015261316481612d88565b9050919050565b6000602082019050818103600083015261318481612dab565b9050919050565b600060208201905081810360008301526131a481612dce565b9050919050565b600060208201905081810360008301526131c481612df1565b9050919050565b600060208201905081810360008301526131e481612e14565b9050919050565b6000602082019050818103600083015261320481612e37565b9050919050565b6000602082019050818103600083015261322481612e5a565b9050919050565b6000602082019050818103600083015261324481612e7d565b9050919050565b6000602082019050818103600083015261326481612ea0565b9050919050565b6000602082019050818103600083015261328481612ec3565b9050919050565b600060208201905081810360008301526132a481612f09565b9050919050565b600060208201905081810360008301526132c481612f2c565b9050919050565b600060208201905081810360008301526132e481612f4f565b9050919050565b60006020820190506133006000830184612f72565b92915050565b6000613310613321565b905061331c82826135ed565b919050565b6000604051905090565b600067ffffffffffffffff82111561334657613345613754565b5b61334f82613797565b9050602081019050919050565b600067ffffffffffffffff82111561337757613376613754565b5b61338082613797565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133fb8261356f565b91506134068361356f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561343b5761343a613698565b5b828201905092915050565b60006134518261356f565b915061345c8361356f565b92508261346c5761346b6136c7565b5b828204905092915050565b60006134828261356f565b915061348d8361356f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134c6576134c5613698565b5b828202905092915050565b60006134dc8261356f565b91506134e78361356f565b9250828210156134fa576134f9613698565b5b828203905092915050565b60006135108261354f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135a657808201518184015260208101905061358b565b838111156135b5576000848401525b50505050565b600060028204905060018216806135d357607f821691505b602082108114156135e7576135e66136f6565b5b50919050565b6135f682613797565b810181811067ffffffffffffffff8211171561361557613614613754565b5b80604052505050565b60006136298261356f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561365c5761365b613698565b5b600182019050919050565b60006136728261356f565b915061367d8361356f565b92508261368d5761368c6136c7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613cb081613505565b8114613cbb57600080fd5b50565b613cc781613517565b8114613cd257600080fd5b50565b613cde81613523565b8114613ce957600080fd5b50565b613cf58161356f565b8114613d0057600080fd5b5056fea26469706673582212200162f3a3998be1d2041028edbb0336afe0f7a47cb680e67702c7941be1f8cca164736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806370a0823111610102578063a45ba8e711610095578063d5abeb0111610064578063d5abeb01146106ab578063e985e9c5146106d6578063efbd73f414610713578063f2fde38b1461073c576101e3565b8063a45ba8e7146105f1578063b071401b1461061c578063b88d4fde14610645578063c87b56dd1461066e576101e3565b806394354fd0116100d157806394354fd01461055657806395d89b4114610581578063a0712d68146105ac578063a22cb465146105c8576101e3565b806370a08231146104ae578063715018a6146104eb5780637ec4a659146105025780638da5cb5b1461052b576101e3565b806323b872dd1161017a5780635503a0e8116101495780635503a0e8146103f05780635c975abb1461041b57806362b99ad4146104465780636352211e14610471576101e3565b806323b872dd1461035e5780633ccfd60b1461038757806342842e0e1461039e57806344a0d68a146103c7576101e3565b806313faede6116101b657806313faede6146102b657806316ba10e0146102e157806316c38b3c1461030a57806318160ddd14610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612a43565b610765565b60405161021c919061302e565b60405180910390f35b34801561023157600080fd5b5061023a610847565b6040516102479190613049565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612ae6565b6108d9565b6040516102849190612fc7565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906129d6565b61095e565b005b3480156102c257600080fd5b506102cb610a76565b6040516102d891906132eb565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612a9d565b610a7c565b005b34801561031657600080fd5b50610331600480360381019061032c9190612a16565b610b12565b005b34801561033f57600080fd5b50610348610bab565b60405161035591906132eb565b60405180910390f35b34801561036a57600080fd5b50610385600480360381019061038091906128c0565b610bbc565b005b34801561039357600080fd5b5061039c610c1c565b005b3480156103aa57600080fd5b506103c560048036038101906103c091906128c0565b610d18565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612ae6565b610d38565b005b3480156103fc57600080fd5b50610405610dbe565b6040516104129190613049565b60405180910390f35b34801561042757600080fd5b50610430610e4c565b60405161043d919061302e565b60405180910390f35b34801561045257600080fd5b5061045b610e5f565b6040516104689190613049565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190612ae6565b610eed565b6040516104a59190612fc7565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612853565b610f9f565b6040516104e291906132eb565b60405180910390f35b3480156104f757600080fd5b50610500611057565b005b34801561050e57600080fd5b5061052960048036038101906105249190612a9d565b6110df565b005b34801561053757600080fd5b50610540611175565b60405161054d9190612fc7565b60405180910390f35b34801561056257600080fd5b5061056b61119f565b60405161057891906132eb565b60405180910390f35b34801561058d57600080fd5b506105966111a5565b6040516105a39190613049565b60405180910390f35b6105c660048036038101906105c19190612ae6565b611237565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612996565b611390565b005b3480156105fd57600080fd5b506106066113a6565b6040516106139190613049565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e9190612ae6565b611434565b005b34801561065157600080fd5b5061066c60048036038101906106679190612913565b6114ba565b005b34801561067a57600080fd5b5061069560048036038101906106909190612ae6565b61151c565b6040516106a29190613049565b60405180910390f35b3480156106b757600080fd5b506106c06115c6565b6040516106cd91906132eb565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612880565b6115cc565b60405161070a919061302e565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612b13565b611660565b005b34801561074857600080fd5b50610763600480360381019061075e9190612853565b611796565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610840575061083f8261188e565b5b9050919050565b606060008054610856906135bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610882906135bb565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e4826118f8565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a906131eb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096982610eed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d19061326b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f9611964565b73ffffffffffffffffffffffffffffffffffffffff161480610a285750610a2781610a22611964565b6115cc565b5b610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e9061316b565b60405180910390fd5b610a71838361196c565b505050565b600b5481565b610a84611964565b73ffffffffffffffffffffffffffffffffffffffff16610aa2611175565b73ffffffffffffffffffffffffffffffffffffffff1614610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef9061320b565b60405180910390fd5b8060099080519060200190610b0e929190612667565b5050565b610b1a611964565b73ffffffffffffffffffffffffffffffffffffffff16610b38611175565b73ffffffffffffffffffffffffffffffffffffffff1614610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b859061320b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610bb76007611a25565b905090565b610bcd610bc7611964565b82611a33565b610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c03906132ab565b60405180910390fd5b610c17838383611b11565b505050565b610c24611964565b73ffffffffffffffffffffffffffffffffffffffff16610c42611175565b73ffffffffffffffffffffffffffffffffffffffff1614610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f9061320b565b60405180910390fd5b6000610ca2611175565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cc590612fb2565b60006040518083038185875af1925050503d8060008114610d02576040519150601f19603f3d011682016040523d82523d6000602084013e610d07565b606091505b5050905080610d1557600080fd5b50565b610d33838383604051806020016040528060008152506114ba565b505050565b610d40611964565b73ffffffffffffffffffffffffffffffffffffffff16610d5e611175565b73ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061320b565b60405180910390fd5b80600b8190555050565b60098054610dcb906135bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610df7906135bb565b8015610e445780601f10610e1957610100808354040283529160200191610e44565b820191906000526020600020905b815481529060010190602001808311610e2757829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610e6c906135bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e98906135bb565b8015610ee55780601f10610eba57610100808354040283529160200191610ee5565b820191906000526020600020905b815481529060010190602001808311610ec857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906131ab565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110079061318b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61105f611964565b73ffffffffffffffffffffffffffffffffffffffff1661107d611175565b73ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca9061320b565b60405180910390fd5b6110dd6000611d78565b565b6110e7611964565b73ffffffffffffffffffffffffffffffffffffffff16611105611175565b73ffffffffffffffffffffffffffffffffffffffff161461115b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111529061320b565b60405180910390fd5b8060089080519060200190611171929190612667565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546111b4906135bb565b80601f01602080910402602001604051908101604052809291908181526020018280546111e0906135bb565b801561122d5780601f106112025761010080835404028352916020019161122d565b820191906000526020600020905b81548152906001019060200180831161121057829003601f168201915b5050505050905090565b8060008111801561124a5750600d548111155b611289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611280906130eb565b60405180910390fd5b600c54816112976007611a25565b6112a191906133f0565b11156112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d99061328b565b60405180910390fd5b600e60009054906101000a900460ff1615611332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113299061322b565b60405180910390fd5b81600b546113409190613477565b341015611382576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611379906132cb565b60405180910390fd5b61138c3383611e3e565b5050565b6113a261139b611964565b8383611e7e565b5050565b600a80546113b3906135bb565b80601f01602080910402602001604051908101604052809291908181526020018280546113df906135bb565b801561142c5780601f106114015761010080835404028352916020019161142c565b820191906000526020600020905b81548152906001019060200180831161140f57829003601f168201915b505050505081565b61143c611964565b73ffffffffffffffffffffffffffffffffffffffff1661145a611175565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a79061320b565b60405180910390fd5b80600d8190555050565b6114cb6114c5611964565b83611a33565b61150a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611501906132ab565b60405180910390fd5b61151684848484611feb565b50505050565b6060611527826118f8565b611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d9061324b565b60405180910390fd5b6000611570612047565b9050600081511161159057604051806020016040528060008152506115be565b8061159a846120d9565b60096040516020016115ae93929190612f81565b6040516020818303038152906040525b915050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116735750600d548111155b6116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a9906130eb565b60405180910390fd5b600c54816116c06007611a25565b6116ca91906133f0565b111561170b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117029061328b565b60405180910390fd5b611713611964565b73ffffffffffffffffffffffffffffffffffffffff16611731611175565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e9061320b565b60405180910390fd5b6117918284611e3e565b505050565b61179e611964565b73ffffffffffffffffffffffffffffffffffffffff166117bc611175565b73ffffffffffffffffffffffffffffffffffffffff1614611812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118099061320b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118799061308b565b60405180910390fd5b61188b81611d78565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119df83610eed565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a3e826118f8565b611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a749061314b565b60405180910390fd5b6000611a8883610eed565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611af757508373ffffffffffffffffffffffffffffffffffffffff16611adf846108d9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b085750611b0781856115cc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b3182610eed565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e906130ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee9061310b565b60405180910390fd5b611c0283838361223a565b611c0d60008261196c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5d91906134d1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb491906133f0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d7383838361223f565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611e7957611e536007612244565b611e6683611e616007611a25565b61225a565b8080611e719061361e565b915050611e41565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee49061312b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fde919061302e565b60405180910390a3505050565b611ff6848484611b11565b61200284848484612278565b612041576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120389061306b565b60405180910390fd5b50505050565b606060088054612056906135bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612082906135bb565b80156120cf5780601f106120a4576101008083540402835291602001916120cf565b820191906000526020600020905b8154815290600101906020018083116120b257829003601f168201915b5050505050905090565b60606000821415612121576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612235565b600082905060005b6000821461215357808061213c9061361e565b915050600a8261214c9190613446565b9150612129565b60008167ffffffffffffffff81111561216f5761216e613754565b5b6040519080825280601f01601f1916602001820160405280156121a15781602001600182028036833780820191505090505b5090505b6000851461222e576001826121ba91906134d1565b9150600a856121c99190613667565b60306121d591906133f0565b60f81b8183815181106121eb576121ea613725565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122279190613446565b94506121a5565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61227482826040518060200160405280600081525061240f565b5050565b60006122998473ffffffffffffffffffffffffffffffffffffffff1661246a565b15612402578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c2611964565b8786866040518563ffffffff1660e01b81526004016122e49493929190612fe2565b602060405180830381600087803b1580156122fe57600080fd5b505af192505050801561232f57506040513d601f19601f8201168201806040525081019061232c9190612a70565b60015b6123b2573d806000811461235f576040519150601f19603f3d011682016040523d82523d6000602084013e612364565b606091505b506000815114156123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a19061306b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612407565b600190505b949350505050565b612419838361248d565b6124266000848484612278565b612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c9061306b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f4906131cb565b60405180910390fd5b612506816118f8565b15612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d906130cb565b60405180910390fd5b6125526000838361223a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a291906133f0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126636000838361223f565b5050565b828054612673906135bb565b90600052602060002090601f01602090048101928261269557600085556126dc565b82601f106126ae57805160ff19168380011785556126dc565b828001600101855582156126dc579182015b828111156126db5782518255916020019190600101906126c0565b5b5090506126e991906126ed565b5090565b5b808211156127065760008160009055506001016126ee565b5090565b600061271d6127188461332b565b613306565b90508281526020810184848401111561273957612738613788565b5b612744848285613579565b509392505050565b600061275f61275a8461335c565b613306565b90508281526020810184848401111561277b5761277a613788565b5b612786848285613579565b509392505050565b60008135905061279d81613ca7565b92915050565b6000813590506127b281613cbe565b92915050565b6000813590506127c781613cd5565b92915050565b6000815190506127dc81613cd5565b92915050565b600082601f8301126127f7576127f6613783565b5b813561280784826020860161270a565b91505092915050565b600082601f83011261282557612824613783565b5b813561283584826020860161274c565b91505092915050565b60008135905061284d81613cec565b92915050565b60006020828403121561286957612868613792565b5b60006128778482850161278e565b91505092915050565b6000806040838503121561289757612896613792565b5b60006128a58582860161278e565b92505060206128b68582860161278e565b9150509250929050565b6000806000606084860312156128d9576128d8613792565b5b60006128e78682870161278e565b93505060206128f88682870161278e565b92505060406129098682870161283e565b9150509250925092565b6000806000806080858703121561292d5761292c613792565b5b600061293b8782880161278e565b945050602061294c8782880161278e565b935050604061295d8782880161283e565b925050606085013567ffffffffffffffff81111561297e5761297d61378d565b5b61298a878288016127e2565b91505092959194509250565b600080604083850312156129ad576129ac613792565b5b60006129bb8582860161278e565b92505060206129cc858286016127a3565b9150509250929050565b600080604083850312156129ed576129ec613792565b5b60006129fb8582860161278e565b9250506020612a0c8582860161283e565b9150509250929050565b600060208284031215612a2c57612a2b613792565b5b6000612a3a848285016127a3565b91505092915050565b600060208284031215612a5957612a58613792565b5b6000612a67848285016127b8565b91505092915050565b600060208284031215612a8657612a85613792565b5b6000612a94848285016127cd565b91505092915050565b600060208284031215612ab357612ab2613792565b5b600082013567ffffffffffffffff811115612ad157612ad061378d565b5b612add84828501612810565b91505092915050565b600060208284031215612afc57612afb613792565b5b6000612b0a8482850161283e565b91505092915050565b60008060408385031215612b2a57612b29613792565b5b6000612b388582860161283e565b9250506020612b498582860161278e565b9150509250929050565b612b5c81613505565b82525050565b612b6b81613517565b82525050565b6000612b7c826133a2565b612b8681856133b8565b9350612b96818560208601613588565b612b9f81613797565b840191505092915050565b6000612bb5826133ad565b612bbf81856133d4565b9350612bcf818560208601613588565b612bd881613797565b840191505092915050565b6000612bee826133ad565b612bf881856133e5565b9350612c08818560208601613588565b80840191505092915050565b60008154612c21816135bb565b612c2b81866133e5565b94506001821660008114612c465760018114612c5757612c8a565b60ff19831686528186019350612c8a565b612c608561338d565b60005b83811015612c8257815481890152600182019150602081019050612c63565b838801955050505b50505092915050565b6000612ca06032836133d4565b9150612cab826137a8565b604082019050919050565b6000612cc36026836133d4565b9150612cce826137f7565b604082019050919050565b6000612ce66025836133d4565b9150612cf182613846565b604082019050919050565b6000612d09601c836133d4565b9150612d1482613895565b602082019050919050565b6000612d2c6014836133d4565b9150612d37826138be565b602082019050919050565b6000612d4f6024836133d4565b9150612d5a826138e7565b604082019050919050565b6000612d726019836133d4565b9150612d7d82613936565b602082019050919050565b6000612d95602c836133d4565b9150612da08261395f565b604082019050919050565b6000612db86038836133d4565b9150612dc3826139ae565b604082019050919050565b6000612ddb602a836133d4565b9150612de6826139fd565b604082019050919050565b6000612dfe6029836133d4565b9150612e0982613a4c565b604082019050919050565b6000612e216020836133d4565b9150612e2c82613a9b565b602082019050919050565b6000612e44602c836133d4565b9150612e4f82613ac4565b604082019050919050565b6000612e676020836133d4565b9150612e7282613b13565b602082019050919050565b6000612e8a6017836133d4565b9150612e9582613b3c565b602082019050919050565b6000612ead602f836133d4565b9150612eb882613b65565b604082019050919050565b6000612ed06021836133d4565b9150612edb82613bb4565b604082019050919050565b6000612ef36000836133c9565b9150612efe82613c03565b600082019050919050565b6000612f166014836133d4565b9150612f2182613c06565b602082019050919050565b6000612f396031836133d4565b9150612f4482613c2f565b604082019050919050565b6000612f5c6013836133d4565b9150612f6782613c7e565b602082019050919050565b612f7b8161356f565b82525050565b6000612f8d8286612be3565b9150612f998285612be3565b9150612fa58284612c14565b9150819050949350505050565b6000612fbd82612ee6565b9150819050919050565b6000602082019050612fdc6000830184612b53565b92915050565b6000608082019050612ff76000830187612b53565b6130046020830186612b53565b6130116040830185612f72565b81810360608301526130238184612b71565b905095945050505050565b60006020820190506130436000830184612b62565b92915050565b600060208201905081810360008301526130638184612baa565b905092915050565b6000602082019050818103600083015261308481612c93565b9050919050565b600060208201905081810360008301526130a481612cb6565b9050919050565b600060208201905081810360008301526130c481612cd9565b9050919050565b600060208201905081810360008301526130e481612cfc565b9050919050565b6000602082019050818103600083015261310481612d1f565b9050919050565b6000602082019050818103600083015261312481612d42565b9050919050565b6000602082019050818103600083015261314481612d65565b9050919050565b6000602082019050818103600083015261316481612d88565b9050919050565b6000602082019050818103600083015261318481612dab565b9050919050565b600060208201905081810360008301526131a481612dce565b9050919050565b600060208201905081810360008301526131c481612df1565b9050919050565b600060208201905081810360008301526131e481612e14565b9050919050565b6000602082019050818103600083015261320481612e37565b9050919050565b6000602082019050818103600083015261322481612e5a565b9050919050565b6000602082019050818103600083015261324481612e7d565b9050919050565b6000602082019050818103600083015261326481612ea0565b9050919050565b6000602082019050818103600083015261328481612ec3565b9050919050565b600060208201905081810360008301526132a481612f09565b9050919050565b600060208201905081810360008301526132c481612f2c565b9050919050565b600060208201905081810360008301526132e481612f4f565b9050919050565b60006020820190506133006000830184612f72565b92915050565b6000613310613321565b905061331c82826135ed565b919050565b6000604051905090565b600067ffffffffffffffff82111561334657613345613754565b5b61334f82613797565b9050602081019050919050565b600067ffffffffffffffff82111561337757613376613754565b5b61338082613797565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133fb8261356f565b91506134068361356f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561343b5761343a613698565b5b828201905092915050565b60006134518261356f565b915061345c8361356f565b92508261346c5761346b6136c7565b5b828204905092915050565b60006134828261356f565b915061348d8361356f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134c6576134c5613698565b5b828202905092915050565b60006134dc8261356f565b91506134e78361356f565b9250828210156134fa576134f9613698565b5b828203905092915050565b60006135108261354f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135a657808201518184015260208101905061358b565b838111156135b5576000848401525b50505050565b600060028204905060018216806135d357607f821691505b602082108114156135e7576135e66136f6565b5b50919050565b6135f682613797565b810181811067ffffffffffffffff8211171561361557613614613754565b5b80604052505050565b60006136298261356f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561365c5761365b613698565b5b600182019050919050565b60006136728261356f565b915061367d8361356f565b92508261368d5761368c6136c7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613cb081613505565b8114613cbb57600080fd5b50565b613cc781613517565b8114613cd257600080fd5b50565b613cde81613523565b8114613ce957600080fd5b50565b613cf58161356f565b8114613d0057600080fd5b5056fea26469706673582212200162f3a3998be1d2041028edbb0336afe0f7a47cb680e67702c7941be1f8cca164736f6c63430008070033
Deployed Bytecode Sourcemap
38800:2739:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25611:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28115:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27638:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39067:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40798:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40904:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39527:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28865:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40987:229;;;;;;;;;;;;;:::i;:::-;;29275:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40474:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38989:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39185:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38956:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26250:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25980:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6232:103;;;;;;;;;;;;;:::i;:::-;;40692:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5581:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39141:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26725:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39622:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28408:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39027:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40554:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29531:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40042:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39106:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28634:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39877:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6490:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25611:305;25713:4;25765:25;25750:40;;;:11;:40;;;;:105;;;;25822:33;25807:48;;;:11;:48;;;;25750:105;:158;;;;25872:36;25896:11;25872:23;:36::i;:::-;25750:158;25730:178;;25611:305;;;:::o;26556:100::-;26610:13;26643:5;26636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26556:100;:::o;28115:221::-;28191:7;28219:16;28227:7;28219;:16::i;:::-;28211:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28304:15;:24;28320:7;28304:24;;;;;;;;;;;;;;;;;;;;;28297:31;;28115:221;;;:::o;27638:411::-;27719:13;27735:23;27750:7;27735:14;:23::i;:::-;27719:39;;27783:5;27777:11;;:2;:11;;;;27769:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27877:5;27861:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27886:37;27903:5;27910:12;:10;:12::i;:::-;27886:16;:37::i;:::-;27861:62;27839:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28020:21;28029:2;28033:7;28020:8;:21::i;:::-;27708:341;27638:411;;:::o;39067:34::-;;;;:::o;40798:100::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40882:10:::1;40870:9;:22;;;;;;;;;;;;:::i;:::-;;40798:100:::0;:::o;40904:77::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40969:6:::1;40960;;:15;;;;;;;;;;;;;;;;;;40904:77:::0;:::o;39527:89::-;39571:7;39594:16;:6;:14;:16::i;:::-;39587:23;;39527:89;:::o;28865:339::-;29060:41;29079:12;:10;:12::i;:::-;29093:7;29060:18;:41::i;:::-;29052:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29168:28;29178:4;29184:2;29188:7;29168:9;:28::i;:::-;28865:339;;;:::o;40987:229::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41038:7:::1;41059;:5;:7::i;:::-;41051:21;;41080;41051:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41037:69;;;41121:2;41113:11;;;::::0;::::1;;41024:192;40987:229::o:0;29275:185::-;29413:39;29430:4;29436:2;29440:7;29413:39;;;;;;;;;;;;:16;:39::i;:::-;29275:185;;;:::o;40474:74::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40537:5:::1;40530:4;:12;;;;40474:74:::0;:::o;38989:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39185:26::-;;;;;;;;;;;;;:::o;38956:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26250:239::-;26322:7;26342:13;26358:7;:16;26366:7;26358:16;;;;;;;;;;;;;;;;;;;;;26342:32;;26410:1;26393:19;;:5;:19;;;;26385:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26476:5;26469:12;;;26250:239;;;:::o;25980:208::-;26052:7;26097:1;26080:19;;:5;:19;;;;26072:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26164:9;:16;26174:5;26164:16;;;;;;;;;;;;;;;;26157:23;;25980:208;;;:::o;6232:103::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6297:30:::1;6324:1;6297:18;:30::i;:::-;6232:103::o:0;40692:100::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40776:10:::1;40764:9;:22;;;;;;;;;;;;:::i;:::-;;40692:100:::0;:::o;5581:87::-;5627:7;5654:6;;;;;;;;;;;5647:13;;5581:87;:::o;39141:37::-;;;;:::o;26725:104::-;26781:13;26814:7;26807:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26725:104;:::o;39622:247::-;39687:11;39361:1;39347:11;:15;:52;;;;;39381:18;;39366:11;:33;;39347:52;39339:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39473:9;;39458:11;39439:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39431:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39716:6:::1;;;;;;;;;;;39715:7;39707:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;39785:11;39778:4;;:18;;;;:::i;:::-;39765:9;:31;;39757:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;39829:34;39839:10;39851:11;39829:9;:34::i;:::-;39622:247:::0;;:::o;28408:155::-;28503:52;28522:12;:10;:12::i;:::-;28536:8;28546;28503:18;:52::i;:::-;28408:155;;:::o;39027:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40554:130::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40659:19:::1;40638:18;:40;;;;40554:130:::0;:::o;29531:328::-;29706:41;29725:12;:10;:12::i;:::-;29739:7;29706:18;:41::i;:::-;29698:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29812:39;29826:4;29832:2;29836:7;29845:5;29812:13;:39::i;:::-;29531:328;;;;:::o;40042:424::-;40141:13;40182:17;40190:8;40182:7;:17::i;:::-;40166:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;40275:28;40306:10;:8;:10::i;:::-;40275:41;;40361:1;40336:14;40330:28;:32;:130;;;;;;;;;;;;;;;;;40398:14;40414:19;:8;:17;:19::i;:::-;40435:9;40381:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40330:130;40323:137;;;40042:424;;;:::o;39106:30::-;;;;:::o;28634:164::-;28731:4;28755:18;:25;28774:5;28755:25;;;;;;;;;;;;;;;:35;28781:8;28755:35;;;;;;;;;;;;;;;;;;;;;;;;;28748:42;;28634:164;;;;:::o;39877:155::-;39963:11;39361:1;39347:11;:15;:52;;;;;39381:18;;39366:11;:33;;39347:52;39339:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39473:9;;39458:11;39439:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39431:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5812:12:::1;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39993:33:::2;40003:9;40014:11;39993:9;:33::i;:::-;39877:155:::0;;;:::o;6490:201::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6599:1:::1;6579:22;;:8;:22;;;;6571:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6655:28;6674:8;6655:18;:28::i;:::-;6490:201:::0;:::o;18365:157::-;18450:4;18489:25;18474:40;;;:11;:40;;;;18467:47;;18365:157;;;:::o;31369:127::-;31434:4;31486:1;31458:30;;:7;:16;31466:7;31458:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31451:37;;31369:127;;;:::o;4305:98::-;4358:7;4385:10;4378:17;;4305:98;:::o;35515:174::-;35617:2;35590:15;:24;35606:7;35590:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35673:7;35669:2;35635:46;;35644:23;35659:7;35644:14;:23::i;:::-;35635:46;;;;;;;;;;;;35515:174;;:::o;909:114::-;974:7;1001;:14;;;994:21;;909:114;;;:::o;31663:348::-;31756:4;31781:16;31789:7;31781;:16::i;:::-;31773:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31857:13;31873:23;31888:7;31873:14;:23::i;:::-;31857:39;;31926:5;31915:16;;:7;:16;;;:51;;;;31959:7;31935:31;;:20;31947:7;31935:11;:20::i;:::-;:31;;;31915:51;:87;;;;31970:32;31987:5;31994:7;31970:16;:32::i;:::-;31915:87;31907:96;;;31663:348;;;;:::o;34772:625::-;34931:4;34904:31;;:23;34919:7;34904:14;:23::i;:::-;:31;;;34896:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35010:1;34996:16;;:2;:16;;;;34988:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35066:39;35087:4;35093:2;35097:7;35066:20;:39::i;:::-;35170:29;35187:1;35191:7;35170:8;:29::i;:::-;35231:1;35212:9;:15;35222:4;35212:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35260:1;35243:9;:13;35253:2;35243:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35291:2;35272:7;:16;35280:7;35272:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35330:7;35326:2;35311:27;;35320:4;35311:27;;;;;;;;;;;;35351:38;35371:4;35377:2;35381:7;35351:19;:38::i;:::-;34772:625;;;:::o;6851:191::-;6925:16;6944:6;;;;;;;;;;;6925:25;;6970:8;6961:6;;:17;;;;;;;;;;;;;;;;;;7025:8;6994:40;;7015:8;6994:40;;;;;;;;;;;;6914:128;6851:191;:::o;41222:204::-;41302:9;41297:124;41321:11;41317:1;:15;41297:124;;;41348:18;:6;:16;:18::i;:::-;41375:38;41385:9;41396:16;:6;:14;:16::i;:::-;41375:9;:38::i;:::-;41334:3;;;;;:::i;:::-;;;;41297:124;;;;41222:204;;:::o;35831:315::-;35986:8;35977:17;;:5;:17;;;;35969:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36073:8;36035:18;:25;36054:5;36035:25;;;;;;;;;;;;;;;:35;36061:8;36035:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36119:8;36097:41;;36112:5;36097:41;;;36129:8;36097:41;;;;;;:::i;:::-;;;;;;;;35831:315;;;:::o;30741:::-;30898:28;30908:4;30914:2;30918:7;30898:9;:28::i;:::-;30945:48;30968:4;30974:2;30978:7;30987:5;30945:22;:48::i;:::-;30937:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30741:315;;;;:::o;41432:104::-;41492:13;41521:9;41514:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41432:104;:::o;1867:723::-;1923:13;2153:1;2144:5;:10;2140:53;;;2171:10;;;;;;;;;;;;;;;;;;;;;2140:53;2203:12;2218:5;2203:20;;2234:14;2259:78;2274:1;2266:4;:9;2259:78;;2292:8;;;;;:::i;:::-;;;;2323:2;2315:10;;;;;:::i;:::-;;;2259:78;;;2347:19;2379:6;2369:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2347:39;;2397:154;2413:1;2404:5;:10;2397:154;;2441:1;2431:11;;;;;:::i;:::-;;;2508:2;2500:5;:10;;;;:::i;:::-;2487:2;:24;;;;:::i;:::-;2474:39;;2457:6;2464;2457:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2537:2;2528:11;;;;;:::i;:::-;;;2397:154;;;2575:6;2561:21;;;;;1867:723;;;;:::o;38082:126::-;;;;:::o;38593:125::-;;;;:::o;1031:127::-;1138:1;1120:7;:14;;;:19;;;;;;;;;;;1031:127;:::o;32353:110::-;32429:26;32439:2;32443:7;32429:26;;;;;;;;;;;;:9;:26::i;:::-;32353:110;;:::o;36711:799::-;36866:4;36887:15;:2;:13;;;:15::i;:::-;36883:620;;;36939:2;36923:36;;;36960:12;:10;:12::i;:::-;36974:4;36980:7;36989:5;36923:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36919:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37182:1;37165:6;:13;:18;37161:272;;;37208:60;;;;;;;;;;:::i;:::-;;;;;;;;37161:272;37383:6;37377:13;37368:6;37364:2;37360:15;37353:38;36919:529;37056:41;;;37046:51;;;:6;:51;;;;37039:58;;;;;36883:620;37487:4;37480:11;;36711:799;;;;;;;:::o;32690:321::-;32820:18;32826:2;32830:7;32820:5;:18::i;:::-;32871:54;32902:1;32906:2;32910:7;32919:5;32871:22;:54::i;:::-;32849:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32690:321;;;:::o;8282:326::-;8342:4;8599:1;8577:7;:19;;;:23;8570:30;;8282:326;;;:::o;33347:439::-;33441:1;33427:16;;:2;:16;;;;33419:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33500:16;33508:7;33500;:16::i;:::-;33499:17;33491:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33562:45;33591:1;33595:2;33599:7;33562:20;:45::i;:::-;33637:1;33620:9;:13;33630:2;33620:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33668:2;33649:7;:16;33657:7;33649:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33713:7;33709:2;33688:33;;33705:1;33688:33;;;;;;;;;;;;33734:44;33762:1;33766:2;33770:7;33734:19;:44::i;:::-;33347:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:::-;13318:3;13339:67;13403:2;13398:3;13339:67;:::i;:::-;13332:74;;13415:93;13504:3;13415:93;:::i;:::-;13533:2;13528:3;13524:12;13517:19;;13176:366;;;:::o;13548:::-;13690:3;13711:67;13775:2;13770:3;13711:67;:::i;:::-;13704:74;;13787:93;13876:3;13787:93;:::i;:::-;13905:2;13900:3;13896:12;13889:19;;13548:366;;;:::o;13920:::-;14062:3;14083:67;14147:2;14142:3;14083:67;:::i;:::-;14076:74;;14159:93;14248:3;14159:93;:::i;:::-;14277:2;14272:3;14268:12;14261:19;;13920:366;;;:::o;14292:::-;14434:3;14455:67;14519:2;14514:3;14455:67;:::i;:::-;14448:74;;14531:93;14620:3;14531:93;:::i;:::-;14649:2;14644:3;14640:12;14633:19;;14292:366;;;:::o;14664:::-;14806:3;14827:67;14891:2;14886:3;14827:67;:::i;:::-;14820:74;;14903:93;14992:3;14903:93;:::i;:::-;15021:2;15016:3;15012:12;15005:19;;14664:366;;;:::o;15036:::-;15178:3;15199:67;15263:2;15258:3;15199:67;:::i;:::-;15192:74;;15275:93;15364:3;15275:93;:::i;:::-;15393:2;15388:3;15384:12;15377:19;;15036:366;;;:::o;15408:::-;15550:3;15571:67;15635:2;15630:3;15571:67;:::i;:::-;15564:74;;15647:93;15736:3;15647:93;:::i;:::-;15765:2;15760:3;15756:12;15749:19;;15408:366;;;:::o;15780:::-;15922:3;15943:67;16007:2;16002:3;15943:67;:::i;:::-;15936:74;;16019:93;16108:3;16019:93;:::i;:::-;16137:2;16132:3;16128:12;16121:19;;15780:366;;;:::o;16152:::-;16294:3;16315:67;16379:2;16374:3;16315:67;:::i;:::-;16308:74;;16391:93;16480:3;16391:93;:::i;:::-;16509:2;16504:3;16500:12;16493:19;;16152:366;;;:::o;16524:398::-;16683:3;16704:83;16785:1;16780:3;16704:83;:::i;:::-;16697:90;;16796:93;16885:3;16796:93;:::i;:::-;16914:1;16909:3;16905:11;16898:18;;16524:398;;;:::o;16928:366::-;17070:3;17091:67;17155:2;17150:3;17091:67;:::i;:::-;17084:74;;17167:93;17256:3;17167:93;:::i;:::-;17285:2;17280:3;17276:12;17269:19;;16928:366;;;:::o;17300:::-;17442:3;17463:67;17527:2;17522:3;17463:67;:::i;:::-;17456:74;;17539:93;17628:3;17539:93;:::i;:::-;17657:2;17652:3;17648:12;17641:19;;17300:366;;;:::o;17672:::-;17814:3;17835:67;17899:2;17894:3;17835:67;:::i;:::-;17828:74;;17911:93;18000:3;17911:93;:::i;:::-;18029:2;18024:3;18020:12;18013:19;;17672:366;;;:::o;18044:118::-;18131:24;18149:5;18131:24;:::i;:::-;18126:3;18119:37;18044:118;;:::o;18168:589::-;18393:3;18415:95;18506:3;18497:6;18415:95;:::i;:::-;18408:102;;18527:95;18618:3;18609:6;18527:95;:::i;:::-;18520:102;;18639:92;18727:3;18718:6;18639:92;:::i;:::-;18632:99;;18748:3;18741:10;;18168:589;;;;;;:::o;18763:379::-;18947:3;18969:147;19112:3;18969:147;:::i;:::-;18962:154;;19133:3;19126:10;;18763:379;;;:::o;19148:222::-;19241:4;19279:2;19268:9;19264:18;19256:26;;19292:71;19360:1;19349:9;19345:17;19336:6;19292:71;:::i;:::-;19148:222;;;;:::o;19376:640::-;19571:4;19609:3;19598:9;19594:19;19586:27;;19623:71;19691:1;19680:9;19676:17;19667:6;19623:71;:::i;:::-;19704:72;19772:2;19761:9;19757:18;19748:6;19704:72;:::i;:::-;19786;19854:2;19843:9;19839:18;19830:6;19786:72;:::i;:::-;19905:9;19899:4;19895:20;19890:2;19879:9;19875:18;19868:48;19933:76;20004:4;19995:6;19933:76;:::i;:::-;19925:84;;19376:640;;;;;;;:::o;20022:210::-;20109:4;20147:2;20136:9;20132:18;20124:26;;20160:65;20222:1;20211:9;20207:17;20198:6;20160:65;:::i;:::-;20022:210;;;;:::o;20238:313::-;20351:4;20389:2;20378:9;20374:18;20366:26;;20438:9;20432:4;20428:20;20424:1;20413:9;20409:17;20402:47;20466:78;20539:4;20530:6;20466:78;:::i;:::-;20458:86;;20238:313;;;;:::o;20557:419::-;20723:4;20761:2;20750:9;20746:18;20738:26;;20810:9;20804:4;20800:20;20796:1;20785:9;20781:17;20774:47;20838:131;20964:4;20838:131;:::i;:::-;20830:139;;20557:419;;;:::o;20982:::-;21148:4;21186:2;21175:9;21171:18;21163:26;;21235:9;21229:4;21225:20;21221:1;21210:9;21206:17;21199:47;21263:131;21389:4;21263:131;:::i;:::-;21255:139;;20982:419;;;:::o;21407:::-;21573:4;21611:2;21600:9;21596:18;21588:26;;21660:9;21654:4;21650:20;21646:1;21635:9;21631:17;21624:47;21688:131;21814:4;21688:131;:::i;:::-;21680:139;;21407:419;;;:::o;21832:::-;21998:4;22036:2;22025:9;22021:18;22013:26;;22085:9;22079:4;22075:20;22071:1;22060:9;22056:17;22049:47;22113:131;22239:4;22113:131;:::i;:::-;22105:139;;21832:419;;;:::o;22257:::-;22423:4;22461:2;22450:9;22446:18;22438:26;;22510:9;22504:4;22500:20;22496:1;22485:9;22481:17;22474:47;22538:131;22664:4;22538:131;:::i;:::-;22530:139;;22257:419;;;:::o;22682:::-;22848:4;22886:2;22875:9;22871:18;22863:26;;22935:9;22929:4;22925:20;22921:1;22910:9;22906:17;22899:47;22963:131;23089:4;22963:131;:::i;:::-;22955:139;;22682:419;;;:::o;23107:::-;23273:4;23311:2;23300:9;23296:18;23288:26;;23360:9;23354:4;23350:20;23346:1;23335:9;23331:17;23324:47;23388:131;23514:4;23388:131;:::i;:::-;23380:139;;23107:419;;;:::o;23532:::-;23698:4;23736:2;23725:9;23721:18;23713:26;;23785:9;23779:4;23775:20;23771:1;23760:9;23756:17;23749:47;23813:131;23939:4;23813:131;:::i;:::-;23805:139;;23532:419;;;:::o;23957:::-;24123:4;24161:2;24150:9;24146:18;24138:26;;24210:9;24204:4;24200:20;24196:1;24185:9;24181:17;24174:47;24238:131;24364:4;24238:131;:::i;:::-;24230:139;;23957:419;;;:::o;24382:::-;24548:4;24586:2;24575:9;24571:18;24563:26;;24635:9;24629:4;24625:20;24621:1;24610:9;24606:17;24599:47;24663:131;24789:4;24663:131;:::i;:::-;24655:139;;24382:419;;;:::o;24807:::-;24973:4;25011:2;25000:9;24996:18;24988:26;;25060:9;25054:4;25050:20;25046:1;25035:9;25031:17;25024:47;25088:131;25214:4;25088:131;:::i;:::-;25080:139;;24807:419;;;:::o;25232:::-;25398:4;25436:2;25425:9;25421:18;25413:26;;25485:9;25479:4;25475:20;25471:1;25460:9;25456:17;25449:47;25513:131;25639:4;25513:131;:::i;:::-;25505:139;;25232:419;;;:::o;25657:::-;25823:4;25861:2;25850:9;25846:18;25838:26;;25910:9;25904:4;25900:20;25896:1;25885:9;25881:17;25874:47;25938:131;26064:4;25938:131;:::i;:::-;25930:139;;25657:419;;;:::o;26082:::-;26248:4;26286:2;26275:9;26271:18;26263:26;;26335:9;26329:4;26325:20;26321:1;26310:9;26306:17;26299:47;26363:131;26489:4;26363:131;:::i;:::-;26355:139;;26082:419;;;:::o;26507:::-;26673:4;26711:2;26700:9;26696:18;26688:26;;26760:9;26754:4;26750:20;26746:1;26735:9;26731:17;26724:47;26788:131;26914:4;26788:131;:::i;:::-;26780:139;;26507:419;;;:::o;26932:::-;27098:4;27136:2;27125:9;27121:18;27113:26;;27185:9;27179:4;27175:20;27171:1;27160:9;27156:17;27149:47;27213:131;27339:4;27213:131;:::i;:::-;27205:139;;26932:419;;;:::o;27357:::-;27523:4;27561:2;27550:9;27546:18;27538:26;;27610:9;27604:4;27600:20;27596:1;27585:9;27581:17;27574:47;27638:131;27764:4;27638:131;:::i;:::-;27630:139;;27357:419;;;:::o;27782:::-;27948:4;27986:2;27975:9;27971:18;27963:26;;28035:9;28029:4;28025:20;28021:1;28010:9;28006:17;27999:47;28063:131;28189:4;28063:131;:::i;:::-;28055:139;;27782:419;;;:::o;28207:::-;28373:4;28411:2;28400:9;28396:18;28388:26;;28460:9;28454:4;28450:20;28446:1;28435:9;28431:17;28424:47;28488:131;28614:4;28488:131;:::i;:::-;28480:139;;28207:419;;;:::o;28632:::-;28798:4;28836:2;28825:9;28821:18;28813:26;;28885:9;28879:4;28875:20;28871:1;28860:9;28856:17;28849:47;28913:131;29039:4;28913:131;:::i;:::-;28905:139;;28632:419;;;:::o;29057:222::-;29150:4;29188:2;29177:9;29173:18;29165:26;;29201:71;29269:1;29258:9;29254:17;29245:6;29201:71;:::i;:::-;29057:222;;;;:::o;29285:129::-;29319:6;29346:20;;:::i;:::-;29336:30;;29375:33;29403:4;29395:6;29375:33;:::i;:::-;29285:129;;;:::o;29420:75::-;29453:6;29486:2;29480:9;29470:19;;29420:75;:::o;29501:307::-;29562:4;29652:18;29644:6;29641:30;29638:56;;;29674:18;;:::i;:::-;29638:56;29712:29;29734:6;29712:29;:::i;:::-;29704:37;;29796:4;29790;29786:15;29778:23;;29501:307;;;:::o;29814:308::-;29876:4;29966:18;29958:6;29955:30;29952:56;;;29988:18;;:::i;:::-;29952:56;30026:29;30048:6;30026:29;:::i;:::-;30018:37;;30110:4;30104;30100:15;30092:23;;29814:308;;;:::o;30128:141::-;30177:4;30200:3;30192:11;;30223:3;30220:1;30213:14;30257:4;30254:1;30244:18;30236:26;;30128:141;;;:::o;30275:98::-;30326:6;30360:5;30354:12;30344:22;;30275:98;;;:::o;30379:99::-;30431:6;30465:5;30459:12;30449:22;;30379:99;;;:::o;30484:168::-;30567:11;30601:6;30596:3;30589:19;30641:4;30636:3;30632:14;30617:29;;30484:168;;;;:::o;30658:147::-;30759:11;30796:3;30781:18;;30658:147;;;;:::o;30811:169::-;30895:11;30929:6;30924:3;30917:19;30969:4;30964:3;30960:14;30945:29;;30811:169;;;;:::o;30986:148::-;31088:11;31125:3;31110:18;;30986:148;;;;:::o;31140:305::-;31180:3;31199:20;31217:1;31199:20;:::i;:::-;31194:25;;31233:20;31251:1;31233:20;:::i;:::-;31228:25;;31387:1;31319:66;31315:74;31312:1;31309:81;31306:107;;;31393:18;;:::i;:::-;31306:107;31437:1;31434;31430:9;31423:16;;31140:305;;;;:::o;31451:185::-;31491:1;31508:20;31526:1;31508:20;:::i;:::-;31503:25;;31542:20;31560:1;31542:20;:::i;:::-;31537:25;;31581:1;31571:35;;31586:18;;:::i;:::-;31571:35;31628:1;31625;31621:9;31616:14;;31451:185;;;;:::o;31642:348::-;31682:7;31705:20;31723:1;31705:20;:::i;:::-;31700:25;;31739:20;31757:1;31739:20;:::i;:::-;31734:25;;31927:1;31859:66;31855:74;31852:1;31849:81;31844:1;31837:9;31830:17;31826:105;31823:131;;;31934:18;;:::i;:::-;31823:131;31982:1;31979;31975:9;31964:20;;31642:348;;;;:::o;31996:191::-;32036:4;32056:20;32074:1;32056:20;:::i;:::-;32051:25;;32090:20;32108:1;32090:20;:::i;:::-;32085:25;;32129:1;32126;32123:8;32120:34;;;32134:18;;:::i;:::-;32120:34;32179:1;32176;32172:9;32164:17;;31996:191;;;;:::o;32193:96::-;32230:7;32259:24;32277:5;32259:24;:::i;:::-;32248:35;;32193:96;;;:::o;32295:90::-;32329:7;32372:5;32365:13;32358:21;32347:32;;32295:90;;;:::o;32391:149::-;32427:7;32467:66;32460:5;32456:78;32445:89;;32391:149;;;:::o;32546:126::-;32583:7;32623:42;32616:5;32612:54;32601:65;;32546:126;;;:::o;32678:77::-;32715:7;32744:5;32733:16;;32678:77;;;:::o;32761:154::-;32845:6;32840:3;32835;32822:30;32907:1;32898:6;32893:3;32889:16;32882:27;32761:154;;;:::o;32921:307::-;32989:1;32999:113;33013:6;33010:1;33007:13;32999:113;;;33098:1;33093:3;33089:11;33083:18;33079:1;33074:3;33070:11;33063:39;33035:2;33032:1;33028:10;33023:15;;32999:113;;;33130:6;33127:1;33124:13;33121:101;;;33210:1;33201:6;33196:3;33192:16;33185:27;33121:101;32970:258;32921:307;;;:::o;33234:320::-;33278:6;33315:1;33309:4;33305:12;33295:22;;33362:1;33356:4;33352:12;33383:18;33373:81;;33439:4;33431:6;33427:17;33417:27;;33373:81;33501:2;33493:6;33490:14;33470:18;33467:38;33464:84;;;33520:18;;:::i;:::-;33464:84;33285:269;33234:320;;;:::o;33560:281::-;33643:27;33665:4;33643:27;:::i;:::-;33635:6;33631:40;33773:6;33761:10;33758:22;33737:18;33725:10;33722:34;33719:62;33716:88;;;33784:18;;:::i;:::-;33716:88;33824:10;33820:2;33813:22;33603:238;33560:281;;:::o;33847:233::-;33886:3;33909:24;33927:5;33909:24;:::i;:::-;33900:33;;33955:66;33948:5;33945:77;33942:103;;;34025:18;;:::i;:::-;33942:103;34072:1;34065:5;34061:13;34054:20;;33847:233;;;:::o;34086:176::-;34118:1;34135:20;34153:1;34135:20;:::i;:::-;34130:25;;34169:20;34187:1;34169:20;:::i;:::-;34164:25;;34208:1;34198:35;;34213:18;;:::i;:::-;34198:35;34254:1;34251;34247:9;34242:14;;34086:176;;;;:::o;34268:180::-;34316:77;34313:1;34306:88;34413:4;34410:1;34403:15;34437:4;34434:1;34427:15;34454:180;34502:77;34499:1;34492:88;34599:4;34596:1;34589:15;34623:4;34620:1;34613:15;34640:180;34688:77;34685:1;34678:88;34785:4;34782:1;34775:15;34809:4;34806:1;34799:15;34826:180;34874:77;34871:1;34864:88;34971:4;34968:1;34961:15;34995:4;34992:1;34985:15;35012:180;35060:77;35057:1;35050:88;35157:4;35154:1;35147:15;35181:4;35178:1;35171:15;35198:117;35307:1;35304;35297:12;35321:117;35430:1;35427;35420:12;35444:117;35553:1;35550;35543:12;35567:117;35676:1;35673;35666:12;35690:102;35731:6;35782:2;35778:7;35773:2;35766:5;35762:14;35758:28;35748:38;;35690:102;;;:::o;35798:237::-;35938:34;35934:1;35926:6;35922:14;35915:58;36007:20;36002:2;35994:6;35990:15;35983:45;35798:237;:::o;36041:225::-;36181:34;36177:1;36169:6;36165:14;36158:58;36250:8;36245:2;36237:6;36233:15;36226:33;36041:225;:::o;36272:224::-;36412:34;36408:1;36400:6;36396:14;36389:58;36481:7;36476:2;36468:6;36464:15;36457:32;36272:224;:::o;36502:178::-;36642:30;36638:1;36630:6;36626:14;36619:54;36502:178;:::o;36686:170::-;36826:22;36822:1;36814:6;36810:14;36803:46;36686:170;:::o;36862:223::-;37002:34;36998:1;36990:6;36986:14;36979:58;37071:6;37066:2;37058:6;37054:15;37047:31;36862:223;:::o;37091:175::-;37231:27;37227:1;37219:6;37215:14;37208:51;37091:175;:::o;37272:231::-;37412:34;37408:1;37400:6;37396:14;37389:58;37481:14;37476:2;37468:6;37464:15;37457:39;37272:231;:::o;37509:243::-;37649:34;37645:1;37637:6;37633:14;37626:58;37718:26;37713:2;37705:6;37701:15;37694:51;37509:243;:::o;37758:229::-;37898:34;37894:1;37886:6;37882:14;37875:58;37967:12;37962:2;37954:6;37950:15;37943:37;37758:229;:::o;37993:228::-;38133:34;38129:1;38121:6;38117:14;38110:58;38202:11;38197:2;38189:6;38185:15;38178:36;37993:228;:::o;38227:182::-;38367:34;38363:1;38355:6;38351:14;38344:58;38227:182;:::o;38415:231::-;38555:34;38551:1;38543:6;38539:14;38532:58;38624:14;38619:2;38611:6;38607:15;38600:39;38415:231;:::o;38652:182::-;38792:34;38788:1;38780:6;38776:14;38769:58;38652:182;:::o;38840:173::-;38980:25;38976:1;38968:6;38964:14;38957:49;38840:173;:::o;39019:234::-;39159:34;39155:1;39147:6;39143:14;39136:58;39228:17;39223:2;39215:6;39211:15;39204:42;39019:234;:::o;39259:220::-;39399:34;39395:1;39387:6;39383:14;39376:58;39468:3;39463:2;39455:6;39451:15;39444:28;39259:220;:::o;39485:114::-;;:::o;39605:170::-;39745:22;39741:1;39733:6;39729:14;39722:46;39605:170;:::o;39781:236::-;39921:34;39917:1;39909:6;39905:14;39898:58;39990:19;39985:2;39977:6;39973:15;39966:44;39781:236;:::o;40023:169::-;40163:21;40159:1;40151:6;40147:14;40140:45;40023:169;:::o;40198:122::-;40271:24;40289:5;40271:24;:::i;:::-;40264:5;40261:35;40251:63;;40310:1;40307;40300:12;40251:63;40198:122;:::o;40326:116::-;40396:21;40411:5;40396:21;:::i;:::-;40389:5;40386:32;40376:60;;40432:1;40429;40422:12;40376:60;40326:116;:::o;40448:120::-;40520:23;40537:5;40520:23;:::i;:::-;40513:5;40510:34;40500:62;;40558:1;40555;40548:12;40500:62;40448:120;:::o;40574:122::-;40647:24;40665:5;40647:24;:::i;:::-;40640:5;40637:35;40627:63;;40686:1;40683;40676:12;40627:63;40574:122;:::o
Swarm Source
ipfs://0162f3a3998be1d2041028edbb0336afe0f7a47cb680e67702c7941be1f8cca1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.