Token ChillPillFTM
Overview ERC-721
Total Supply:
2,850 CHILLPILLFTM
Holders:
552 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ChillPill
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-25 */ /** *Submitted for verification at Etherscan.io on 2022-06-18 */ // SPDX-License-Identifier: MIT // 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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/ChillPill.sol pragma solidity >=0.7.0 <0.9.0; contract ChillPill is ERC721Enumerable, Ownable { error SaleIsPaused(); error WithdrawIsFailed(); error MintedTooMany(); error QuantityIsInvalid(); error PriceIsInvalid(); error SoldOut(); using Strings for uint256; struct UserData { uint256 minted; } string baseURI; string public baseExtension = ".json"; bool public paused = true; uint256 public cost = 15 ether; uint256 public maxSupply = 2850; // 2500 normal pills 350 rainbow (2500/7) uint256 public maxMintPerTransaction = 50; uint256 public maxMintPerWallet = 100; uint256 public maxPreMinted = 1200; // 850 airdropped + 350 rainbows mapping(address => UserData) private userData; constructor() ERC721("ChillPillFTM", "CHILLPILLFTM") { } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 amount) public payable { uint256 supply = totalSupply(); if (paused) revert SaleIsPaused(); if (supply + amount > maxSupply) revert SoldOut(); if (amount <= 0 || amount > maxMintPerTransaction) revert QuantityIsInvalid(); if (userData[msg.sender].minted + amount > maxMintPerWallet) revert MintedTooMany(); if (msg.sender != owner()) { if (msg.value < cost * amount) revert PriceIsInvalid(); } for (uint256 i = 1; i <= amount; i++) { _safeMint(msg.sender, supply + i); userData[msg.sender].minted += 1; } } function walletOfOwner(address _owner) public view returns (uint256[] memory){ uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } 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(), baseExtension)) : ""; } //only owner function preMint(uint256 amount) public onlyOwner { uint256 supply = totalSupply(); if (amount <= 0) revert QuantityIsInvalid(); if (supply + amount > maxPreMinted) revert QuantityIsInvalid(); if (supply + amount > maxSupply) revert SoldOut(); for (uint256 i = 1; i <= amount ; i++) { _safeMint(msg.sender, supply + i); } } function setCost(uint256 newCost) public onlyOwner { cost = newCost; } function setMaxMintPerWallet(uint256 value) public onlyOwner { maxMintPerWallet = value; } function setMaxMintPerTransaction(uint256 value) public onlyOwner { maxMintPerTransaction = value; } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function setBaseExtension(string memory newBaseExtension) public onlyOwner { baseExtension = newBaseExtension; } function pause(bool state) public onlyOwner { paused = state; } function withdraw() public payable onlyOwner { (bool success, ) = payable(owner()).call{value: address(this).balance}(""); if (!success) revert WithdrawIsFailed(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MintedTooMany","type":"error"},{"inputs":[],"name":"PriceIsInvalid","type":"error"},{"inputs":[],"name":"QuantityIsInvalid","type":"error"},{"inputs":[],"name":"SaleIsPaused","type":"error"},{"inputs":[],"name":"SoldOut","type":"error"},{"inputs":[],"name":"WithdrawIsFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreMinted","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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMaxMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000157565b50600d805460ff1916600117905567d02ab486cedc0000600e55610b22600f55603260105560646011556104b06012553480156200006557600080fd5b506040518060400160405280600c81526020016b4368696c6c50696c6c46544d60a01b8152506040518060400160405280600c81526020016b4348494c4c50494c4c46544d60a01b8152508160009080519060200190620000c892919062000157565b508051620000de90600190602084019062000157565b505050620000fb620000f56200010160201b60201c565b62000105565b6200023a565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016590620001fd565b90600052602060002090601f016020900481019282620001895760008555620001d4565b82601f10620001a457805160ff1916838001178555620001d4565b82800160010185558215620001d4579182015b82811115620001d4578251825591602001919060010190620001b7565b50620001e2929150620001e6565b5090565b5b80821115620001e25760008155600101620001e7565b600181811c908216806200021257607f821691505b602082108114156200023457634e487b7160e01b600052602260045260246000fd5b50919050565b6124b8806200024a6000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063afdf6134116100a0578063c87b56dd1161006f578063c87b56dd146105bf578063d5abeb01146105df578063da3ef23f146105f5578063e985e9c514610615578063f2fde38b1461065e57600080fd5b8063afdf613414610554578063b228d92514610574578063b88d4fde1461058a578063c6682862146105aa57600080fd5b80638da5cb5b116100e75780638da5cb5b146104d857806395d89b41146104f6578063a0712d681461050b578063a0fc36b61461051e578063a22cb4651461053457600080fd5b80636352211e1461046357806370a0823114610483578063715018a6146104a35780638ad433ac146104b857600080fd5b80632e6cebe51161019b578063438b63001161016a578063438b6300146103bc57806344a0d68a146103e95780634f6ccce71461040957806355f804b3146104295780635c975abb1461044957600080fd5b80632e6cebe5146103545780632f745c59146103745780633ccfd60b1461039457806342842e0e1461039c57600080fd5b8063081812fc116101e2578063081812fc146102b1578063095ea7b3146102e957806313faede61461030957806318160ddd1461031f57806323b872dd1461033457600080fd5b806301f569971461021457806301ffc9a71461023d57806302329a291461026d57806306fdde031461028f575b600080fd5b34801561022057600080fd5b5061022a60105481565b6040519081526020015b60405180910390f35b34801561024957600080fd5b5061025d610258366004611e0d565b61067e565b6040519015158152602001610234565b34801561027957600080fd5b5061028d610288366004611e3f565b6106a9565b005b34801561029b57600080fd5b506102a46106ef565b6040516102349190611eb2565b3480156102bd57600080fd5b506102d16102cc366004611ec5565b610781565b6040516001600160a01b039091168152602001610234565b3480156102f557600080fd5b5061028d610304366004611ef5565b610816565b34801561031557600080fd5b5061022a600e5481565b34801561032b57600080fd5b5060085461022a565b34801561034057600080fd5b5061028d61034f366004611f1f565b61092c565b34801561036057600080fd5b5061028d61036f366004611ec5565b61095d565b34801561038057600080fd5b5061022a61038f366004611ef5565b61098c565b61028d610a22565b3480156103a857600080fd5b5061028d6103b7366004611f1f565b610ad4565b3480156103c857600080fd5b506103dc6103d7366004611f5b565b610aef565b6040516102349190611f76565b3480156103f557600080fd5b5061028d610404366004611ec5565b610b91565b34801561041557600080fd5b5061022a610424366004611ec5565b610bc0565b34801561043557600080fd5b5061028d610444366004612046565b610c53565b34801561045557600080fd5b50600d5461025d9060ff1681565b34801561046f57600080fd5b506102d161047e366004611ec5565b610c94565b34801561048f57600080fd5b5061022a61049e366004611f5b565b610d0b565b3480156104af57600080fd5b5061028d610d92565b3480156104c457600080fd5b5061028d6104d3366004611ec5565b610dc8565b3480156104e457600080fd5b50600a546001600160a01b03166102d1565b34801561050257600080fd5b506102a4610ea7565b61028d610519366004611ec5565b610eb6565b34801561052a57600080fd5b5061022a60125481565b34801561054057600080fd5b5061028d61054f36600461208f565b61100d565b34801561056057600080fd5b5061028d61056f366004611ec5565b611018565b34801561058057600080fd5b5061022a60115481565b34801561059657600080fd5b5061028d6105a53660046120c2565b611047565b3480156105b657600080fd5b506102a461107f565b3480156105cb57600080fd5b506102a46105da366004611ec5565b61110d565b3480156105eb57600080fd5b5061022a600f5481565b34801561060157600080fd5b5061028d610610366004612046565b6111eb565b34801561062157600080fd5b5061025d61063036600461213e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066a57600080fd5b5061028d610679366004611f5b565b611228565b60006001600160e01b0319821663780e9d6360e01b14806106a357506106a3826112c0565b92915050565b600a546001600160a01b031633146106dc5760405162461bcd60e51b81526004016106d390612168565b60405180910390fd5b600d805460ff1916911515919091179055565b6060600080546106fe9061219d565b80601f016020809104026020016040519081016040528092919081815260200182805461072a9061219d565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d3565b506000908152600460205260409020546001600160a01b031690565b600061082182610c94565b9050806001600160a01b0316836001600160a01b0316141561088f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d3565b336001600160a01b03821614806108ab57506108ab8133610630565b61091d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d3565b6109278383611310565b505050565b610936338261137e565b6109525760405162461bcd60e51b81526004016106d3906121d8565b610927838383611475565b600a546001600160a01b031633146109875760405162461bcd60e51b81526004016106d390612168565b601055565b600061099783610d0b565b82106109f95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a4c5760405162461bcd60e51b81526004016106d390612168565b6000610a60600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610aaa576040519150601f19603f3d011682016040523d82523d6000602084013e610aaf565b606091505b5050905080610ad157604051633f7c39e160e11b815260040160405180910390fd5b50565b61092783838360405180602001604052806000815250611047565b60606000610afc83610d0b565b905060008167ffffffffffffffff811115610b1957610b19611fba565b604051908082528060200260200182016040528015610b42578160200160208202803683370190505b50905060005b82811015610b8957610b5a858261098c565b828281518110610b6c57610b6c612229565b602090810291909101015280610b8181612255565b915050610b48565b509392505050565b600a546001600160a01b03163314610bbb5760405162461bcd60e51b81526004016106d390612168565b600e55565b6000610bcb60085490565b8210610c2e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d3565b60088281548110610c4157610c41612229565b90600052602060002001549050919050565b600a546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016106d390612168565b8051610c9090600b906020840190611d5e565b5050565b6000818152600260205260408120546001600160a01b0316806106a35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d3565b60006001600160a01b038216610d765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dbc5760405162461bcd60e51b81526004016106d390612168565b610dc6600061161c565b565b600a546001600160a01b03163314610df25760405162461bcd60e51b81526004016106d390612168565b6000610dfd60085490565b905060008211610e205760405163041ce3bb60e31b815260040160405180910390fd5b601254610e2d8383612270565b1115610e4c5760405163041ce3bb60e31b815260040160405180910390fd5b600f54610e598383612270565b1115610e78576040516352df9fe560e01b815260040160405180910390fd5b60015b82811161092757610e9533610e908385612270565b61166e565b80610e9f81612255565b915050610e7b565b6060600180546106fe9061219d565b6000610ec160085490565b600d5490915060ff1615610ee857604051631c7324b560e21b815260040160405180910390fd5b600f54610ef58383612270565b1115610f14576040516352df9fe560e01b815260040160405180910390fd5b811580610f22575060105482115b15610f405760405163041ce3bb60e31b815260040160405180910390fd5b60115433600090815260136020526040902054610f5e908490612270565b1115610f7d576040516301c573cf60e11b815260040160405180910390fd5b600a546001600160a01b03163314610fbd5781600e54610f9d9190612288565b341015610fbd5760405163489921ab60e11b815260040160405180910390fd5b60015b82811161092757610fd533610e908385612270565b336000908152601360205260408120805460019290610ff5908490612270565b9091555081905061100581612255565b915050610fc0565b610c90338383611688565b600a546001600160a01b031633146110425760405162461bcd60e51b81526004016106d390612168565b601155565b611051338361137e565b61106d5760405162461bcd60e51b81526004016106d3906121d8565b61107984848484611757565b50505050565b600c805461108c9061219d565b80601f01602080910402602001604051908101604052809291908181526020018280546110b89061219d565b80156111055780601f106110da57610100808354040283529160200191611105565b820191906000526020600020905b8154815290600101906020018083116110e857829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b031661118c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d3565b600061119661178a565b905060008151116111b657604051806020016040528060008152506111e4565b806111c084611799565b600c6040516020016111d4939291906122a7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112155760405162461bcd60e51b81526004016106d390612168565b8051610c9090600c906020840190611d5e565b600a546001600160a01b031633146112525760405162461bcd60e51b81526004016106d390612168565b6001600160a01b0381166112b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d3565b610ad18161161c565b60006001600160e01b031982166380ac58cd60e01b14806112f157506001600160e01b03198216635b5e139f60e01b145b806106a357506301ffc9a760e01b6001600160e01b03198316146106a3565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061134582610c94565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d3565b600061140283610c94565b9050806001600160a01b0316846001600160a01b0316148061144957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061146d5750836001600160a01b031661146284610781565b6001600160a01b0316145b949350505050565b826001600160a01b031661148882610c94565b6001600160a01b0316146114ec5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106d3565b6001600160a01b03821661154e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d3565b611559838383611897565b611564600082611310565b6001600160a01b038316600090815260036020526040812080546001929061158d90849061236b565b90915550506001600160a01b03821660009081526003602052604081208054600192906115bb908490612270565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c9082826040518060200160405280600081525061194f565b816001600160a01b0316836001600160a01b031614156116ea5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611762848484611475565b61176e84848484611982565b6110795760405162461bcd60e51b81526004016106d390612382565b6060600b80546106fe9061219d565b6060816117bd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117e757806117d181612255565b91506117e09050600a836123ea565b91506117c1565b60008167ffffffffffffffff81111561180257611802611fba565b6040519080825280601f01601f19166020018201604052801561182c576020820181803683370190505b5090505b841561146d5761184160018361236b565b915061184e600a866123fe565b611859906030612270565b60f81b81838151811061186e5761186e612229565b60200101906001600160f81b031916908160001a905350611890600a866123ea565b9450611830565b6001600160a01b0383166118f2576118ed81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611915565b816001600160a01b0316836001600160a01b031614611915576119158382611a80565b6001600160a01b03821661192c5761092781611b1d565b826001600160a01b0316826001600160a01b031614610927576109278282611bcc565b6119598383611c10565b6119666000848484611982565b6109275760405162461bcd60e51b81526004016106d390612382565b60006001600160a01b0384163b15611a7557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c6903390899088908890600401612412565b6020604051808303816000875af1925050508015611a01575060408051601f3d908101601f191682019092526119fe9181019061244f565b60015b611a5b573d808015611a2f576040519150601f19603f3d011682016040523d82523d6000602084013e611a34565b606091505b508051611a535760405162461bcd60e51b81526004016106d390612382565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061146d565b506001949350505050565b60006001611a8d84610d0b565b611a97919061236b565b600083815260076020526040902054909150808214611aea576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b2f9060019061236b565b60008381526009602052604081205460088054939450909284908110611b5757611b57612229565b906000526020600020015490508060088381548110611b7857611b78612229565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bb057611bb061246c565b6001900381819060005260206000200160009055905550505050565b6000611bd783610d0b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c665760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d3565b6000818152600260205260409020546001600160a01b031615611ccb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d3565b611cd760008383611897565b6001600160a01b0382166000908152600360205260408120805460019290611d00908490612270565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d6a9061219d565b90600052602060002090601f016020900481019282611d8c5760008555611dd2565b82601f10611da557805160ff1916838001178555611dd2565b82800160010185558215611dd2579182015b82811115611dd2578251825591602001919060010190611db7565b50611dde929150611de2565b5090565b5b80821115611dde5760008155600101611de3565b6001600160e01b031981168114610ad157600080fd5b600060208284031215611e1f57600080fd5b81356111e481611df7565b80358015158114611e3a57600080fd5b919050565b600060208284031215611e5157600080fd5b6111e482611e2a565b60005b83811015611e75578181015183820152602001611e5d565b838111156110795750506000910152565b60008151808452611e9e816020860160208601611e5a565b601f01601f19169290920160200192915050565b6020815260006111e46020830184611e86565b600060208284031215611ed757600080fd5b5035919050565b80356001600160a01b0381168114611e3a57600080fd5b60008060408385031215611f0857600080fd5b611f1183611ede565b946020939093013593505050565b600080600060608486031215611f3457600080fd5b611f3d84611ede565b9250611f4b60208501611ede565b9150604084013590509250925092565b600060208284031215611f6d57600080fd5b6111e482611ede565b6020808252825182820181905260009190848201906040850190845b81811015611fae57835183529284019291840191600101611f92565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611feb57611feb611fba565b604051601f8501601f19908116603f0116810190828211818310171561201357612013611fba565b8160405280935085815286868601111561202c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561205857600080fd5b813567ffffffffffffffff81111561206f57600080fd5b8201601f8101841361208057600080fd5b61146d84823560208401611fd0565b600080604083850312156120a257600080fd5b6120ab83611ede565b91506120b960208401611e2a565b90509250929050565b600080600080608085870312156120d857600080fd5b6120e185611ede565b93506120ef60208601611ede565b925060408501359150606085013567ffffffffffffffff81111561211257600080fd5b8501601f8101871361212357600080fd5b61213287823560208401611fd0565b91505092959194509250565b6000806040838503121561215157600080fd5b61215a83611ede565b91506120b960208401611ede565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806121b157607f821691505b602082108114156121d257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156122695761226961223f565b5060010190565b600082198211156122835761228361223f565b500190565b60008160001904831182151516156122a2576122a261223f565b500290565b6000845160206122ba8285838a01611e5a565b8551918401916122cd8184848a01611e5a565b8554920191600090600181811c90808316806122ea57607f831692505b85831081141561230857634e487b7160e01b85526022600452602485fd5b80801561231c576001811461232d5761235a565b60ff1985168852838801955061235a565b60008b81526020902060005b858110156123525781548a820152908401908801612339565b505083880195505b50939b9a5050505050505050505050565b60008282101561237d5761237d61223f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123f9576123f96123d4565b500490565b60008261240d5761240d6123d4565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061244590830184611e86565b9695505050505050565b60006020828403121561246157600080fd5b81516111e481611df7565b634e487b7160e01b600052603160045260246000fdfea264697066735822122099c4597dd51e52153dab1c98a97d73430015e41ade4846733fa7f22c768fb5c264736f6c634300080a0033
Deployed ByteCode Sourcemap
45680:3429:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46187:41;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;46187:41:0;;;;;;;;39461:224;;;;;;;;;;-1:-1:-1;39461:224:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;39461:224:0;582:187:1;48851:71:0;;;;;;;;;;-1:-1:-1;48851:71:0;;;;;:::i;:::-;;:::i;:::-;;26280:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27840:221::-;;;;;;;;;;-1:-1:-1;27840:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2224:32:1;;;2206:51;;2194:2;2179:18;27840:221:0;2060:203:1;27363:411:0;;;;;;;;;;-1:-1:-1;27363:411:0;;;;;:::i;:::-;;:::i;46074:30::-;;;;;;;;;;;;;;;;40101:113;;;;;;;;;;-1:-1:-1;40189:10:0;:17;40101:113;;28590:339;;;;;;;;;;-1:-1:-1;28590:339:0;;;;;:::i;:::-;;:::i;48509:108::-;;;;;;;;;;-1:-1:-1;48509:108:0;;;;;:::i;:::-;;:::i;39769:256::-;;;;;;;;;;-1:-1:-1;39769:256:0;;;;;:::i;:::-;;:::i;48928:178::-;;;:::i;29000:185::-;;;;;;;;;;-1:-1:-1;29000:185:0;;;;;:::i;:::-;;:::i;47216:329::-;;;;;;;;;;-1:-1:-1;47216:329:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48319:78::-;;;;;;;;;;-1:-1:-1;48319:78:0;;;;;:::i;:::-;;:::i;40291:233::-;;;;;;;;;;-1:-1:-1;40291:233:0;;;;;:::i;:::-;;:::i;48623:96::-;;;;;;;;;;-1:-1:-1;48623:96:0;;;;;:::i;:::-;;:::i;46040:25::-;;;;;;;;;;-1:-1:-1;46040:25:0;;;;;;;;25974:239;;;;;;;;;;-1:-1:-1;25974:239:0;;;;;:::i;:::-;;:::i;25704:208::-;;;;;;;;;;-1:-1:-1;25704:208:0;;;;;:::i;:::-;;:::i;4838:103::-;;;;;;;;;;;;;:::i;47946:365::-;;;;;;;;;;-1:-1:-1;47946:365:0;;;;;:::i;:::-;;:::i;4187:87::-;;;;;;;;;;-1:-1:-1;4260:6:0;;-1:-1:-1;;;;;4260:6:0;4187:87;;26449:104;;;;;;;;;;;;;:::i;46605:601::-;;;;;;:::i;:::-;;:::i;46279:34::-;;;;;;;;;;;;;;;;28133:155;;;;;;;;;;-1:-1:-1;28133:155:0;;;;;:::i;:::-;;:::i;48403:98::-;;;;;;;;;;-1:-1:-1;48403:98:0;;;;;:::i;:::-;;:::i;46233:37::-;;;;;;;;;;;;;;;;29256:328;;;;;;;;;;-1:-1:-1;29256:328:0;;;;;:::i;:::-;;:::i;45998:37::-;;;;;;;;;;;;;:::i;47551:373::-;;;;;;;;;;-1:-1:-1;47551:373:0;;;;;:::i;:::-;;:::i;46109:31::-;;;;;;;;;;;;;;;;48725:120;;;;;;;;;;-1:-1:-1;48725:120:0;;;;;:::i;:::-;;:::i;28359:164::-;;;;;;;;;;-1:-1:-1;28359:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28480:25:0;;;28456:4;28480:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28359:164;5096:201;;;;;;;;;;-1:-1:-1;5096:201:0;;;;;:::i;:::-;;:::i;39461:224::-;39563:4;-1:-1:-1;;;;;;39587:50:0;;-1:-1:-1;;;39587:50:0;;:90;;;39641:36;39665:11;39641:23;:36::i;:::-;39580:97;39461:224;-1:-1:-1;;39461:224:0:o;48851:71::-;4260:6;;-1:-1:-1;;;;;4260:6:0;2991:10;4407:23;4399:68;;;;-1:-1:-1;;;4399:68:0;;;;;;;:::i;:::-;;;;;;;;;48902:6:::1;:14:::0;;-1:-1:-1;;48902:14:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48851:71::o;26280:100::-;26334:13;26367:5;26360:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26280:100;:::o;27840:221::-;27916:7;31183:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31183:16:0;27936:73;;;;-1:-1:-1;;;27936:73:0;;7235:2:1;27936:73:0;;;7217:21:1;7274:2;7254:18;;;7247:30;7313:34;7293:18;;;7286:62;-1:-1:-1;;;7364:18:1;;;7357:42;7416:19;;27936:73:0;7033:408:1;27936:73:0;-1:-1:-1;28029:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28029:24:0;;27840:221::o;27363:411::-;27444:13;27460:23;27475:7;27460:14;:23::i;:::-;27444:39;;27508:5;-1:-1:-1;;;;;27502:11:0;:2;-1:-1:-1;;;;;27502:11:0;;;27494:57;;;;-1:-1:-1;;;27494:57:0;;7648:2:1;27494:57:0;;;7630:21:1;7687:2;7667:18;;;7660:30;7726:34;7706:18;;;7699:62;-1:-1:-1;;;7777:18:1;;;7770:31;7818:19;;27494:57:0;7446:397:1;27494:57:0;2991:10;-1:-1:-1;;;;;27586:21:0;;;;:62;;-1:-1:-1;27611:37:0;27628:5;2991:10;28359:164;:::i;27611:37::-;27564:168;;;;-1:-1:-1;;;27564:168:0;;8050:2:1;27564:168:0;;;8032:21:1;8089:2;8069:18;;;8062:30;8128:34;8108:18;;;8101:62;8199:26;8179:18;;;8172:54;8243:19;;27564:168:0;7848:420:1;27564:168:0;27745:21;27754:2;27758:7;27745:8;:21::i;:::-;27433:341;27363:411;;:::o;28590:339::-;28785:41;2991:10;28818:7;28785:18;:41::i;:::-;28777:103;;;;-1:-1:-1;;;28777:103:0;;;;;;;:::i;:::-;28893:28;28903:4;28909:2;28913:7;28893:9;:28::i;48509:108::-;4260:6;;-1:-1:-1;;;;;4260:6:0;2991:10;4407:23;4399:68;;;;-1:-1:-1;;;4399:68:0;;;;;;;:::i;:::-;48582:21:::1;:29:::0;48509:108::o;39769:256::-;39866:7;39902:23;39919:5;39902:16;:23::i;:::-;39894:5;:31;39886:87;;;;-1:-1:-1;;;39886:87:0;;8893:2:1;39886:87:0;;;8875:21:1;8932:2;8912:18;;;8905:30;8971:34;8951:18;;;8944:62;-1:-1:-1;;;9022:18:1;;;9015:41;9073:19;;39886:87:0;8691:407:1;39886:87:0;-1:-1:-1;;;;;;39991:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39769:256::o;48928:178::-;4260:6;;-1:-1:-1;;;;;4260:6:0;2991:10;4407:23;4399:68;;;;-1:-1:-1;;;4399:68:0;;;;;;;:::i;:::-;48981:12:::1;49007:7;4260:6:::0;;-1:-1:-1;;;;;4260:6:0;;4187:87;49007:7:::1;-1:-1:-1::0;;;;;48999:21:0::1;49028;48999:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48980:74;;;49066:7;49061:39;;49082:18;;-1:-1:-1::0;;;49082:18:0::1;;;;;;;;;;;49061:39;48973:133;48928:178::o:0;29000:185::-;29138:39;29155:4;29161:2;29165:7;29138:39;;;;;;;;;;;;:16;:39::i;47216:329::-;47276:16;47300:23;47326:17;47336:6;47326:9;:17::i;:::-;47300:43;;47350:25;47392:15;47378:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47378:30:0;;47350:58;;47420:9;47415:103;47435:15;47431:1;:19;47415:103;;;47480:30;47500:6;47508:1;47480:19;:30::i;:::-;47466:8;47475:1;47466:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47452:3;;;;:::i;:::-;;;;47415:103;;;-1:-1:-1;47531:8:0;47216:329;-1:-1:-1;;;47216:329:0:o;48319:78::-;4260:6;;-1:-1:-1;;;;;4260:6:0;2991:10;4407:23;4399:68;;;;-1:-1:-1;;;4399:68:0;;;;;;;:::i;:::-;48377:4:::1;:14:::0;48319:78::o;40291:233::-;40366:7;40402:30;40189:10;:17;;40101:113;40402:30;40394:5;:38;40386:95;;;;-1:-1:-1;;;40386:95:0;;9919:2:1;40386:95:0;;;9901:21:1;9958:2;9938:18;;;9931:30;9997:34;9977:18;;;9970:62;-1:-1:-1;;;10048:18:1;;;10041:42;10100:19;;40386:95:0;9717:408:1;40386:95:0;40499:10;40510:5;40499:17;;;;;;;;:::i;:::-;;;;;;;;;40492:24;;40291:233;;;:::o;48623:96::-;4260:6;;-1:-1:-1;;;;;4260:6:0;2991:10;4407:23;4399:68;;;;-1:-1:-1;;;4399:68:0;;;;;;;:::i;:::-;48693:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48623:96:::0;:::o;25974:239::-;26046:7;26082:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26082:16:0;26117:19;26109:73;;;;-1:-1:-1;;;26109:73:0;;10332:2:1;26109:73:0;;;10314:21:1;10371:2;10351:18;;;10344:30;10410:34;10390:18;;;10383:62;-1:-1:-1;;;10461:18:1;;;10454:39;10510:19;;26109:73:0;10130:405:1;25704:208:0;25776:7;-1:-1:-1;;;;;25804:19:0;;25796:74;;;;-1:-1:-1;;;25796:74:0;;10742:2:1;25796:74:0;;;10724:21:1;10781:2;10761:18;;;10754:30;10820:34;10800:18;;;10793:62;-1:-1:-1;;;10871:18:1;;;10864:40;10921:19;;25796:74:0;10540:406:1;25796:74:0;-1:-1:-1;;;;;;25888:16:0;;;;;:9;:16;;;;;;;25704:208::o;4838:103::-;4260:6;;-1:-1:-1;;;;;4260:6:0;2991:10;4407:23;4399:68;;;;-1:-1:-1;;;4399:68:0;;;;;;;:::i;:::-;4903:30:::1;4930:1;4903:18;:30::i;:::-;4838:103::o:0;47946:365::-;4260:6;;-1:-1:-1;;;;;4260:6:0;2991:10;4407:23;4399:68;;;;-1:-1:-1;;;4399:68:0;;;;;;;:::i;:::-;48003:14:::1;48020:13;40189:10:::0;:17;;40101:113;48020:13:::1;48003:30;;48054:1;48044:6;:11;48040:43;;48064:19;;-1:-1:-1::0;;;48064:19:0::1;;;;;;;;;;;48040:43;48112:12;::::0;48094:15:::1;48103:6:::0;48094;:15:::1;:::i;:::-;:30;48090:62;;;48133:19;;-1:-1:-1::0;;;48133:19:0::1;;;;;;;;;;;48090:62;48181:9;::::0;48163:15:::1;48172:6:::0;48163;:15:::1;:::i;:::-;:27;48159:49;;;48199:9;;-1:-1:-1::0;;;48199:9:0::1;;;;;;;;;;;48159:49;48234:1;48217:89;48242:6;48237:1;:11;48217:89;;48265:33;48275:10;48287;48296:1:::0;48287:6;:10:::1;:::i;:::-;48265:9;:33::i;:::-;48251:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48217:89;;26449:104:::0;26505:13;26538:7;26531:14;;;;;:::i;46605:601::-;46657:14;46674:13;40189:10;:17;;40101:113;46674:13;46698:6;;46657:30;;-1:-1:-1;46698:6:0;;46694:33;;;46713:14;;-1:-1:-1;;;46713:14:0;;;;;;;;;;;46694:33;46756:9;;46738:15;46747:6;46738;:15;:::i;:::-;:27;46734:49;;;46774:9;;-1:-1:-1;;;46774:9:0;;;;;;;;;;;46734:49;46794:11;;;:45;;;46818:21;;46809:6;:30;46794:45;46790:77;;;46848:19;;-1:-1:-1;;;46848:19:0;;;;;;;;;;;46790:77;46917:16;;46887:10;46878:20;;;;:8;:20;;;;;:27;:36;;46908:6;;46878:36;:::i;:::-;:55;46874:83;;;46942:15;;-1:-1:-1;;;46942:15:0;;;;;;;;;;;46874:83;4260:6;;-1:-1:-1;;;;;4260:6:0;46970:10;:21;46966:98;;47025:6;47018:4;;:13;;;;:::i;:::-;47006:9;:25;47002:54;;;47040:16;;-1:-1:-1;;;47040:16:0;;;;;;;;;;;47002:54;47089:1;47072:129;47097:6;47092:1;:11;47072:129;;47119:33;47129:10;47141;47150:1;47141:6;:10;:::i;47119:33::-;47170:10;47161:20;;;;:8;:20;;;;;:32;;47192:1;;47161:20;:32;;47192:1;;47161:32;:::i;:::-;;;;-1:-1:-1;47105:3:0;;-1:-1:-1;47105:3:0;;;:::i;:::-;;;;47072:129;;28133:155;28228:52;2991:10;28261:8;28271;28228:18;:52::i;48403:98::-;4260:6;;-1:-1:-1;;;;;4260:6:0;2991:10;4407:23;4399:68;;;;-1:-1:-1;;;4399:68:0;;;;;;;:::i;:::-;48471:16:::1;:24:::0;48403:98::o;29256:328::-;29431:41;2991:10;29464:7;29431:18;:41::i;:::-;29423:103;;;;-1:-1:-1;;;29423:103:0;;;;;;;:::i;:::-;29537:39;29551:4;29557:2;29561:7;29570:5;29537:13;:39::i;:::-;29256:328;;;;:::o;45998:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47551:373::-;31159:4;31183:16;;;:7;:16;;;;;;47624:13;;-1:-1:-1;;;;;31183:16:0;47645:76;;;;-1:-1:-1;;;47645:76:0;;11459:2:1;47645:76:0;;;11441:21:1;11498:2;11478:18;;;11471:30;11537:34;11517:18;;;11510:62;-1:-1:-1;;;11588:18:1;;;11581:45;11643:19;;47645:76:0;11257:411:1;47645:76:0;47730:28;47761:10;:8;:10::i;:::-;47730:41;;47816:1;47791:14;47785:28;:32;:133;;;;;;;;;;;;;;;;;47853:14;47869:18;:7;:16;:18::i;:::-;47889:13;47836:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47785:133;47778:140;47551:373;-1:-1:-1;;;47551:373:0:o;48725:120::-;4260:6;;-1:-1:-1;;;;;4260:6:0;2991:10;4407:23;4399:68;;;;-1:-1:-1;;;4399:68:0;;;;;;;:::i;:::-;48807:32;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5096:201::-:0;4260:6;;-1:-1:-1;;;;;4260:6:0;2991:10;4407:23;4399:68;;;;-1:-1:-1;;;4399:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5185:22:0;::::1;5177:73;;;::::0;-1:-1:-1;;;5177:73:0;;13533:2:1;5177:73:0::1;::::0;::::1;13515:21:1::0;13572:2;13552:18;;;13545:30;13611:34;13591:18;;;13584:62;-1:-1:-1;;;13662:18:1;;;13655:36;13708:19;;5177:73:0::1;13331:402:1::0;5177:73:0::1;5261:28;5280:8;5261:18;:28::i;25335:305::-:0;25437:4;-1:-1:-1;;;;;;25474:40:0;;-1:-1:-1;;;25474:40:0;;:105;;-1:-1:-1;;;;;;;25531:48:0;;-1:-1:-1;;;25531:48:0;25474:105;:158;;;-1:-1:-1;;;;;;;;;;17103:40:0;;;25596:36;16994:157;35240:174;35315:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35315:29:0;-1:-1:-1;;;;;35315:29:0;;;;;;;;:24;;35369:23;35315:24;35369:14;:23::i;:::-;-1:-1:-1;;;;;35360:46:0;;;;;;;;;;;35240:174;;:::o;31388:348::-;31481:4;31183:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31183:16:0;31498:73;;;;-1:-1:-1;;;31498:73:0;;13940:2:1;31498:73:0;;;13922:21:1;13979:2;13959:18;;;13952:30;14018:34;13998:18;;;13991:62;-1:-1:-1;;;14069:18:1;;;14062:42;14121:19;;31498:73:0;13738:408:1;31498:73:0;31582:13;31598:23;31613:7;31598:14;:23::i;:::-;31582:39;;31651:5;-1:-1:-1;;;;;31640:16:0;:7;-1:-1:-1;;;;;31640:16:0;;:52;;;-1:-1:-1;;;;;;28480:25:0;;;28456:4;28480:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31660:32;31640:87;;;;31720:7;-1:-1:-1;;;;;31696:31:0;:20;31708:7;31696:11;:20::i;:::-;-1:-1:-1;;;;;31696:31:0;;31640:87;31632:96;31388:348;-1:-1:-1;;;;31388:348:0:o;34497:625::-;34656:4;-1:-1:-1;;;;;34629:31:0;:23;34644:7;34629:14;:23::i;:::-;-1:-1:-1;;;;;34629:31:0;;34621:81;;;;-1:-1:-1;;;34621:81:0;;14353:2:1;34621:81:0;;;14335:21:1;14392:2;14372:18;;;14365:30;14431:34;14411:18;;;14404:62;-1:-1:-1;;;14482:18:1;;;14475:35;14527:19;;34621:81:0;14151:401:1;34621:81:0;-1:-1:-1;;;;;34721:16:0;;34713:65;;;;-1:-1:-1;;;34713:65:0;;14759:2:1;34713:65:0;;;14741:21:1;14798:2;14778:18;;;14771:30;14837:34;14817:18;;;14810:62;-1:-1:-1;;;14888:18:1;;;14881:34;14932:19;;34713:65:0;14557:400:1;34713:65:0;34791:39;34812:4;34818:2;34822:7;34791:20;:39::i;:::-;34895:29;34912:1;34916:7;34895:8;:29::i;:::-;-1:-1:-1;;;;;34937:15:0;;;;;;:9;:15;;;;;:20;;34956:1;;34937:15;:20;;34956:1;;34937:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34968:13:0;;;;;;:9;:13;;;;;:18;;34985:1;;34968:13;:18;;34985:1;;34968:18;:::i;:::-;;;;-1:-1:-1;;34997:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34997:21:0;-1:-1:-1;;;;;34997:21:0;;;;;;;;;35036:27;;34997:16;;35036:27;;;;;;;27433:341;27363:411;;:::o;5457:191::-;5550:6;;;-1:-1:-1;;;;;5567:17:0;;;-1:-1:-1;;;;;;5567:17:0;;;;;;;5600:40;;5550:6;;;5567:17;5550:6;;5600:40;;5531:16;;5600:40;5520:128;5457:191;:::o;32078:110::-;32154:26;32164:2;32168:7;32154:26;;;;;;;;;;;;:9;:26::i;35556:315::-;35711:8;-1:-1:-1;;;;;35702:17:0;:5;-1:-1:-1;;;;;35702:17:0;;;35694:55;;;;-1:-1:-1;;;35694:55:0;;15294:2:1;35694:55:0;;;15276:21:1;15333:2;15313:18;;;15306:30;15372:27;15352:18;;;15345:55;15417:18;;35694:55:0;15092:349:1;35694:55:0;-1:-1:-1;;;;;35760:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35760:46:0;;;;;;;;;;35822:41;;722::1;;;35822::0;;695:18:1;35822:41:0;;;;;;;35556:315;;;:::o;30466:::-;30623:28;30633:4;30639:2;30643:7;30623:9;:28::i;:::-;30670:48;30693:4;30699:2;30703:7;30712:5;30670:22;:48::i;:::-;30662:111;;;;-1:-1:-1;;;30662:111:0;;;;;;;:::i;46482:102::-;46542:13;46571:7;46564:14;;;;;:::i;473:723::-;529:13;750:10;746:53;;-1:-1:-1;;777:10:0;;;;;;;;;;;;-1:-1:-1;;;777:10:0;;;;;473:723::o;746:53::-;824:5;809:12;865:78;872:9;;865:78;;898:8;;;;:::i;:::-;;-1:-1:-1;921:10:0;;-1:-1:-1;929:2:0;921:10;;:::i;:::-;;;865:78;;;953:19;985:6;975:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;975:17:0;;953:39;;1003:154;1010:10;;1003:154;;1037:11;1047:1;1037:11;;:::i;:::-;;-1:-1:-1;1106:10:0;1114:2;1106:5;:10;:::i;:::-;1093:24;;:2;:24;:::i;:::-;1080:39;;1063:6;1070;1063:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1063:56:0;;;;;;;;-1:-1:-1;1134:11:0;1143:2;1134:11;;:::i;:::-;;;1003:154;;41137:589;-1:-1:-1;;;;;41343:18:0;;41339:187;;41378:40;41410:7;42553:10;:17;;42526:24;;;;:15;:24;;;;;:44;;;42581:24;;;;;;;;;;;;42449:164;41378:40;41339:187;;;41448:2;-1:-1:-1;;;;;41440:10:0;:4;-1:-1:-1;;;;;41440:10:0;;41436:90;;41467:47;41500:4;41506:7;41467:32;:47::i;:::-;-1:-1:-1;;;;;41540:16:0;;41536:183;;41573:45;41610:7;41573:36;:45::i;41536:183::-;41646:4;-1:-1:-1;;;;;41640:10:0;:2;-1:-1:-1;;;;;41640:10:0;;41636:83;;41667:40;41695:2;41699:7;41667:27;:40::i;32415:321::-;32545:18;32551:2;32555:7;32545:5;:18::i;:::-;32596:54;32627:1;32631:2;32635:7;32644:5;32596:22;:54::i;:::-;32574:154;;;;-1:-1:-1;;;32574:154:0;;;;;;;:::i;36436:799::-;36591:4;-1:-1:-1;;;;;36612:13:0;;7183:19;:23;36608:620;;36648:72;;-1:-1:-1;;;36648:72:0;;-1:-1:-1;;;;;36648:36:0;;;;;:72;;2991:10;;36699:4;;36705:7;;36714:5;;36648:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36648:72:0;;;;;;;;-1:-1:-1;;36648:72:0;;;;;;;;;;;;:::i;:::-;;;36644:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36890:13:0;;36886:272;;36933:60;;-1:-1:-1;;;36933:60:0;;;;;;;:::i;36886:272::-;37108:6;37102:13;37093:6;37089:2;37085:15;37078:38;36644:529;-1:-1:-1;;;;;;36771:51:0;-1:-1:-1;;;36771:51:0;;-1:-1:-1;36764:58:0;;36608:620;-1:-1:-1;37212:4:0;36436:799;;;;;;:::o;43240:988::-;43506:22;43556:1;43531:22;43548:4;43531:16;:22::i;:::-;:26;;;;:::i;:::-;43568:18;43589:26;;;:17;:26;;;;;;43506:51;;-1:-1:-1;43722:28:0;;;43718:328;;-1:-1:-1;;;;;43789:18:0;;43767:19;43789:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43840:30;;;;;;:44;;;43957:30;;:17;:30;;;;;:43;;;43718:328;-1:-1:-1;44142:26:0;;;;:17;:26;;;;;;;;44135:33;;;-1:-1:-1;;;;;44186:18:0;;;;;:12;:18;;;;;:34;;;;;;;44179:41;43240:988::o;44523:1079::-;44801:10;:17;44776:22;;44801:21;;44821:1;;44801:21;:::i;:::-;44833:18;44854:24;;;:15;:24;;;;;;45227:10;:26;;44776:46;;-1:-1:-1;44854:24:0;;44776:46;;45227:26;;;;;;:::i;:::-;;;;;;;;;45205:48;;45291:11;45266:10;45277;45266:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45371:28;;;:15;:28;;;;;;;:41;;;45543:24;;;;;45536:31;45578:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44594:1008;;;44523:1079;:::o;42027:221::-;42112:14;42129:20;42146:2;42129:16;:20::i;:::-;-1:-1:-1;;;;;42160:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42205:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42027:221:0:o;33072:439::-;-1:-1:-1;;;;;33152:16:0;;33144:61;;;;-1:-1:-1;;;33144:61:0;;17321:2:1;33144:61:0;;;17303:21:1;;;17340:18;;;17333:30;17399:34;17379:18;;;17372:62;17451:18;;33144:61:0;17119:356:1;33144:61:0;31159:4;31183:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31183:16:0;:30;33216:58;;;;-1:-1:-1;;;33216:58:0;;17682:2:1;33216:58:0;;;17664:21:1;17721:2;17701:18;;;17694:30;17760;17740:18;;;17733:58;17808:18;;33216:58:0;17480:352:1;33216:58:0;33287:45;33316:1;33320:2;33324:7;33287:20;:45::i;:::-;-1:-1:-1;;;;;33345:13:0;;;;;;:9;:13;;;;;:18;;33362:1;;33345:13;:18;;33362:1;;33345:18;:::i;:::-;;;;-1:-1:-1;;33374:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33374:21:0;-1:-1:-1;;;;;33374:21:0;;;;;;;;33413:33;;33374:16;;;33413:33;;33374:16;;33413:33;48693:20:::1;48623:96:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:160::-;839:20;;895:13;;888:21;878:32;;868:60;;924:1;921;914:12;868:60;774:160;;;:::o;939:180::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:52;;;1064:1;1061;1054:12;1016:52;1087:26;1103:9;1087:26;:::i;1124:258::-;1196:1;1206:113;1220:6;1217:1;1214:13;1206:113;;;1296:11;;;1290:18;1277:11;;;1270:39;1242:2;1235:10;1206:113;;;1337:6;1334:1;1331:13;1328:48;;;-1:-1:-1;;1372:1:1;1354:16;;1347:27;1124:258::o;1387:::-;1429:3;1467:5;1461:12;1494:6;1489:3;1482:19;1510:63;1566:6;1559:4;1554:3;1550:14;1543:4;1536:5;1532:16;1510:63;:::i;:::-;1627:2;1606:15;-1:-1:-1;;1602:29:1;1593:39;;;;1634:4;1589:50;;1387:258;-1:-1:-1;;1387:258:1:o;1650:220::-;1799:2;1788:9;1781:21;1762:4;1819:45;1860:2;1849:9;1845:18;1837:6;1819:45;:::i;1875:180::-;1934:6;1987:2;1975:9;1966:7;1962:23;1958:32;1955:52;;;2003:1;2000;1993:12;1955:52;-1:-1:-1;2026:23:1;;1875:180;-1:-1:-1;1875:180:1:o;2268:173::-;2336:20;;-1:-1:-1;;;;;2385:31:1;;2375:42;;2365:70;;2431:1;2428;2421:12;2446:254;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;2690:2;2675:18;;;;2662:32;;-1:-1:-1;;;2446:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:632;4063:5;4093:18;4134:2;4126:6;4123:14;4120:40;;;4140:18;;:::i;:::-;4215:2;4209:9;4183:2;4269:15;;-1:-1:-1;;4265:24:1;;;4291:2;4261:33;4257:42;4245:55;;;4315:18;;;4335:22;;;4312:46;4309:72;;;4361:18;;:::i;:::-;4401:10;4397:2;4390:22;4430:6;4421:15;;4460:6;4452;4445:22;4500:3;4491:6;4486:3;4482:16;4479:25;4476:45;;;4517:1;4514;4507:12;4476:45;4567:6;4562:3;4555:4;4547:6;4543:17;4530:44;4622:1;4615:4;4606:6;4598;4594:19;4590:30;4583:41;;;;3998:632;;;;;:::o;4635:451::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;4813:9;4800:23;4846:18;4838:6;4835:30;4832:50;;;4878:1;4875;4868:12;4832:50;4901:22;;4954:4;4946:13;;4942:27;-1:-1:-1;4932:55:1;;4983:1;4980;4973:12;4932:55;5006:74;5072:7;5067:2;5054:16;5049:2;5045;5041:11;5006:74;:::i;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:356::-;6489:2;6471:21;;;6508:18;;;6501:30;6567:34;6562:2;6547:18;;6540:62;6634:2;6619:18;;6287:356::o;6648:380::-;6727:1;6723:12;;;;6770;;;6791:61;;6845:4;6837:6;6833:17;6823:27;;6791:61;6898:2;6890:6;6887:14;6867:18;6864:38;6861:161;;;6944:10;6939:3;6935:20;6932:1;6925:31;6979:4;6976:1;6969:15;7007:4;7004:1;6997:15;6861:161;;6648:380;;;:::o;8273:413::-;8475:2;8457:21;;;8514:2;8494:18;;;8487:30;8553:34;8548:2;8533:18;;8526:62;-1:-1:-1;;;8619:2:1;8604:18;;8597:47;8676:3;8661:19;;8273:413::o;9313:127::-;9374:10;9369:3;9365:20;9362:1;9355:31;9405:4;9402:1;9395:15;9429:4;9426:1;9419:15;9445:127;9506:10;9501:3;9497:20;9494:1;9487:31;9537:4;9534:1;9527:15;9561:4;9558:1;9551:15;9577:135;9616:3;-1:-1:-1;;9637:17:1;;9634:43;;;9657:18;;:::i;:::-;-1:-1:-1;9704:1:1;9693:13;;9577:135::o;10951:128::-;10991:3;11022:1;11018:6;11015:1;11012:13;11009:39;;;11028:18;;:::i;:::-;-1:-1:-1;11064:9:1;;10951:128::o;11084:168::-;11124:7;11190:1;11186;11182:6;11178:14;11175:1;11172:21;11167:1;11160:9;11153:17;11149:45;11146:71;;;11197:18;;:::i;:::-;-1:-1:-1;11237:9:1;;11084:168::o;11799:1527::-;12023:3;12061:6;12055:13;12087:4;12100:51;12144:6;12139:3;12134:2;12126:6;12122:15;12100:51;:::i;:::-;12214:13;;12173:16;;;;12236:55;12214:13;12173:16;12258:15;;;12236:55;:::i;:::-;12380:13;;12313:20;;;12353:1;;12440;12462:18;;;;12515;;;;12542:93;;12620:4;12610:8;12606:19;12594:31;;12542:93;12683:2;12673:8;12670:16;12650:18;12647:40;12644:167;;;-1:-1:-1;;;12710:33:1;;12766:4;12763:1;12756:15;12796:4;12717:3;12784:17;12644:167;12827:18;12854:110;;;;12978:1;12973:328;;;;12820:481;;12854:110;-1:-1:-1;;12889:24:1;;12875:39;;12934:20;;;;-1:-1:-1;12854:110:1;;12973:328;11746:1;11739:14;;;11783:4;11770:18;;13068:1;13082:169;13096:8;13093:1;13090:15;13082:169;;;13178:14;;13163:13;;;13156:37;13221:16;;;;13113:10;;13082:169;;;13086:3;;13282:8;13275:5;13271:20;13264:27;;12820:481;-1:-1:-1;13317:3:1;;11799:1527;-1:-1:-1;;;;;;;;;;;11799:1527:1:o;14962:125::-;15002:4;15030:1;15027;15024:8;15021:34;;;15035:18;;:::i;:::-;-1:-1:-1;15072:9:1;;14962:125::o;15446:414::-;15648:2;15630:21;;;15687:2;15667:18;;;15660:30;15726:34;15721:2;15706:18;;15699:62;-1:-1:-1;;;15792:2:1;15777:18;;15770:48;15850:3;15835:19;;15446:414::o;15865:127::-;15926:10;15921:3;15917:20;15914:1;15907:31;15957:4;15954:1;15947:15;15981:4;15978:1;15971:15;15997:120;16037:1;16063;16053:35;;16068:18;;:::i;:::-;-1:-1:-1;16102:9:1;;15997:120::o;16122:112::-;16154:1;16180;16170:35;;16185:18;;:::i;:::-;-1:-1:-1;16219:9:1;;16122:112::o;16239:489::-;-1:-1:-1;;;;;16508:15:1;;;16490:34;;16560:15;;16555:2;16540:18;;16533:43;16607:2;16592:18;;16585:34;;;16655:3;16650:2;16635:18;;16628:31;;;16433:4;;16676:46;;16702:19;;16694:6;16676:46;:::i;:::-;16668:54;16239:489;-1:-1:-1;;;;;;16239:489:1:o;16733:249::-;16802:6;16855:2;16843:9;16834:7;16830:23;16826:32;16823:52;;;16871:1;16868;16861:12;16823:52;16903:9;16897:16;16922:30;16946:5;16922:30;:::i;16987:127::-;17048:10;17043:3;17039:20;17036:1;17029:31;17079:4;17076:1;17069:15;17103:4;17100:1;17093:15
Swarm Source
ipfs://99c4597dd51e52153dab1c98a97d73430015e41ade4846733fa7f22c768fb5c2