ERC-721
Overview
Max Total Supply
13 PRTNRLUDWIG
Holders
12
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
0 PRTNRLUDWIGLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BeethovenxPartnerNft
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2021-12-07 */ // SPDX-License-Identifier: MIT // Sources flattened with hardhat v2.6.5 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] 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/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] 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/utils/[email protected] pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] 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/introspection/[email protected] 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/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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); } /** * @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 of token that is not own" ); 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); } /** * @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 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 {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] 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 tokenId); /** * @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/[email protected] 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 @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved" ); _burn(tokenId); } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged( bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole ); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require( account == _msgSender(), "AccessControl: can only renounce roles for self" ); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File @openzeppelin/contracts/utils/structs/[email protected] pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File contracts_orig/BeethovenxPartnerNft.sol pragma solidity ^0.8.0; /** * @dev {ERC721} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * - token ID and URI autogeneration * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract BeethovenxPartnerNft is Context, AccessControlEnumerable, ERC721Enumerable, ERC721Burnable, ERC721Pausable { using Counters for Counters.Counter; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); Counters.Counter private _tokenIdTracker; using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract. * * Token URIs will be autogenerated based on `baseURI` and their token IDs. * See {ERC721-tokenURI}. */ constructor() ERC721("Partner Ludwigs", "PRTNRLUDWIG") { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Creates a new token for `to`. Its token ID will be automatically * assigned (and available on the emitted {IERC721-Transfer} event), and the token * URI autogenerated based on the base URI passed at construction. * * See {ERC721-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to, string memory tokenURI) public { require( hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint" ); // We cannot just use balanceOf to create the new tokenId because tokens // can be burned (destroyed), so we need a separate counter. uint256 tokenId = _tokenIdTracker.current(); _mint(to, tokenId); _setTokenURI(tokenId, tokenURI); _tokenIdTracker.increment(); } /** * @dev Pauses all token transfers. * * See {ERC721Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require( hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause" ); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC721Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require( hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause" ); _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view override returns (string memory) { require( _exists(tokenId), "ERC721URIStorage: URI query for nonexistent token" ); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal { require( _exists(tokenId), "ERC721URIStorage: URI set of nonexistent token" ); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600f81526e506172746e6572204c75647769677360881b60208083019182528351808501909452600b84526a5052544e524c554457494760a81b9084015281519192916200006c916002916200025f565b508051620000829060039060208401906200025f565b5050600c805460ff19169055506200009c600033620000fa565b620000c87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000fa565b620000f47f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620000fa565b62000342565b6200011182826200013d60201b62000f0f1760201c565b60008281526001602090815260409091206200013891839062000f1d6200014d821b17901c565b505050565b6200014982826200016d565b5050565b600062000164836001600160a01b0384166200020d565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000149576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001c93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620002565750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000167565b50600062000167565b8280546200026d9062000305565b90600052602060002090601f016020900481019282620002915760008555620002dc565b82601f10620002ac57805160ff1916838001178555620002dc565b82800160010185558215620002dc579182015b82811115620002dc578251825591602001919060010190620002bf565b50620002ea929150620002ee565b5090565b5b80821115620002ea5760008155600101620002ef565b600181811c908216806200031a57607f821691505b602082108114156200033c57634e487b7160e01b600052602260045260246000fd5b50919050565b61294380620003526000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80636352211e1161010f578063b88d4fde116100a2578063d539139311610071578063d5391393146103f7578063d547741f1461041e578063e63ab1e914610431578063e985e9c51461045857600080fd5b8063b88d4fde146103ab578063c87b56dd146103be578063ca15c873146103d1578063d0def521146103e457600080fd5b806391d14854116100de57806391d148541461037557806395d89b4114610388578063a217fddf14610390578063a22cb4651461039857600080fd5b80636352211e1461033457806370a08231146103475780638456cb591461035a5780639010d07c1461036257600080fd5b80632f2ff15d1161018757806342842e0e1161015657806342842e0e146102f057806342966c68146103035780634f6ccce7146103165780635c975abb1461032957600080fd5b80632f2ff15d146102af5780632f745c59146102c257806336568abe146102d55780633f4ba83a146102e857600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd14610279578063248a9ca31461028c57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f836600461257d565b610494565b60405190151581526020015b60405180910390f35b61021a6104a5565b60405161020991906126c4565b61023a61023536600461251f565b610537565b6040516001600160a01b039091168152602001610209565b6102656102603660046124f5565b6105c4565b005b600a545b604051908152602001610209565b61026561028736600461239f565b6106da565b61026b61029a36600461251f565b60009081526020819052604090206001015490565b6102656102bd366004612538565b61070c565b61026b6102d03660046124f5565b61072e565b6102656102e3366004612538565b6107c4565b6102656107e6565b6102656102fe36600461239f565b61088e565b61026561031136600461251f565b6108a9565b61026b61032436600461251f565b610923565b600c5460ff166101fd565b61023a61034236600461251f565b6109b6565b61026b610355366004612351565b610a2d565b610265610ab4565b61023a61037036600461255b565b610b58565b6101fd610383366004612538565b610b77565b61021a610ba0565b61026b600081565b6102656103a6366004612457565b610baf565b6102656103b93660046123db565b610c74565b61021a6103cc36600461251f565b610cac565b61026b6103df36600461251f565b610e23565b6102656103f2366004612493565b610e3a565b61026b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61026561042c366004612538565b610f05565b61026b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6101fd61046636600461236c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600061049f82610f32565b92915050565b6060600280546104b49061281f565b80601f01602080910402602001604051908101604052809291908181526020018280546104e09061281f565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b600061054282610f57565b6105a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105cf826109b6565b9050806001600160a01b0316836001600160a01b0316141561063d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059f565b336001600160a01b038216148061065957506106598133610466565b6106cb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059f565b6106d58383610f74565b505050565b6106e5335b82610fe2565b6107015760405162461bcd60e51b815260040161059f90612729565b6106d58383836110c8565b6107168282611273565b60008281526001602052604090206106d59082610f1d565b600061073983610a2d565b821061079b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161059f565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6107ce8282611299565b60008281526001602052604090206106d59082611313565b6108107f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610b77565b610884576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365606482015260840161059f565b61088c611328565b565b6106d583838360405180602001604052806000815250610c74565b6108b2336106df565b6109175760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161059f565b610920816113bb565b50565b600061092e600a5490565b82106109915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161059f565b600a82815481106109a4576109a46128cb565b90600052602060002001549050919050565b6000818152600460205260408120546001600160a01b03168061049f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059f565b60006001600160a01b038216610a985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059f565b506001600160a01b031660009081526005602052604090205490565b610ade7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610b77565b610b505760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000606482015260840161059f565b61088c6113fb565b6000828152600160205260408120610b709083611476565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600380546104b49061281f565b6001600160a01b038216331415610c085760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c7e3383610fe2565b610c9a5760405162461bcd60e51b815260040161059f90612729565b610ca684848484611482565b50505050565b6060610cb782610f57565b610d1d5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161059f565b6000828152600e602052604081208054610d369061281f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d629061281f565b8015610daf5780601f10610d8457610100808354040283529160200191610daf565b820191906000526020600020905b815481529060010190602001808311610d9257829003601f168201915b505050505090506000610dcd60408051602081019091526000815290565b9050805160001415610de0575092915050565b815115610e12578082604051602001610dfa9291906125e3565b60405160208183030381529060405292505050919050565b610e1b846114b5565b949350505050565b600081815260016020526040812061049f9061158c565b610e647f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610b77565b610ed65760405162461bcd60e51b815260206004820152603d60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d7573742068617665206d696e74657220726f6c6520746f206d696e74000000606482015260840161059f565b6000610ee1600d5490565b9050610eed8382611596565b610ef781836116d5565b6106d5600d80546001019055565b6107ce8282611760565b610f198282611786565b5050565b6000610b70836001600160a01b03841661180a565b60006001600160e01b0319821663780e9d6360e01b148061049f575061049f82611859565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fa9826109b6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610fed82610f57565b61104e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b6000611059836109b6565b9050806001600160a01b0316846001600160a01b031614806110945750836001600160a01b031661108984610537565b6001600160a01b0316145b80610e1b57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16610e1b565b826001600160a01b03166110db826109b6565b6001600160a01b0316146111435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161059f565b6001600160a01b0382166111a55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059f565b6111b0838383611899565b6111bb600082610f74565b6001600160a01b03831660009081526005602052604081208054600192906111e49084906127c5565b90915550506001600160a01b038216600090815260056020526040812080546001929061121290849061277a565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020819052604090206001015461128f81336118a4565b6106d58383611786565b6001600160a01b03811633146113095760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161059f565b610f198282611908565b6000610b70836001600160a01b03841661196d565b600c5460ff166113715760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161059f565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6113c481611a60565b6000818152600e6020526040902080546113dd9061281f565b159050610920576000818152600e60205260408120610920916121ec565b600c5460ff16156114415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161059f565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861139e3390565b6000610b708383611b07565b61148d8484846110c8565b61149984848484611b31565b610ca65760405162461bcd60e51b815260040161059f906126d7565b60606114c082610f57565b6115245760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059f565b600061153b60408051602081019091526000815290565b9050600081511161155b5760405180602001604052806000815250610b70565b8061156584611c3e565b6040516020016115769291906125e3565b6040516020818303038152906040529392505050565b600061049f825490565b6001600160a01b0382166115ec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059f565b6115f581610f57565b156116425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059f565b61164e60008383611899565b6001600160a01b038216600090815260056020526040812080546001929061167790849061277a565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6116de82610f57565b6117415760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161059f565b6000828152600e6020908152604090912082516106d592840190612226565b60008281526020819052604090206001015461177c81336118a4565b6106d58383611908565b6117908282610b77565b610f19576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556117c63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546118515750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561049f565b50600061049f565b60006001600160e01b031982166380ac58cd60e01b148061188a57506001600160e01b03198216635b5e139f60e01b145b8061049f575061049f82611d3c565b6106d5838383611d61565b6118ae8282610b77565b610f19576118c6816001600160a01b03166014611dd3565b6118d1836020611dd3565b6040516020016118e2929190612612565b60408051601f198184030181529082905262461bcd60e51b825261059f916004016126c4565b6119128282610b77565b15610f19576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015611a565760006119916001836127c5565b85549091506000906119a5906001906127c5565b9050818114611a0a5760008660000182815481106119c5576119c56128cb565b90600052602060002001549050808760000184815481106119e8576119e86128cb565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611a1b57611a1b6128b5565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061049f565b600091505061049f565b6000611a6b826109b6565b9050611a7981600084611899565b611a84600083610f74565b6001600160a01b0381166000908152600560205260408120805460019290611aad9084906127c5565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000826000018281548110611b1e57611b1e6128cb565b9060005260206000200154905092915050565b60006001600160a01b0384163b15611c3357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b75903390899088908890600401612687565b602060405180830381600087803b158015611b8f57600080fd5b505af1925050508015611bbf575060408051601f3d908101601f19168201909252611bbc9181019061259a565b60015b611c19573d808015611bed576040519150601f19603f3d011682016040523d82523d6000602084013e611bf2565b606091505b508051611c115760405162461bcd60e51b815260040161059f906126d7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e1b565b506001949350505050565b606081611c625750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8c5780611c768161285a565b9150611c859050600a83612792565b9150611c66565b60008167ffffffffffffffff811115611ca757611ca76128e1565b6040519080825280601f01601f191660200182016040528015611cd1576020820181803683370190505b5090505b8415610e1b57611ce66001836127c5565b9150611cf3600a86612875565b611cfe90603061277a565b60f81b818381518110611d1357611d136128cb565b60200101906001600160f81b031916908160001a905350611d35600a86612792565b9450611cd5565b60006001600160e01b03198216635a05180f60e01b148061049f575061049f82611f6f565b611d6c838383611fa4565b600c5460ff16156106d55760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161059f565b60606000611de28360026127a6565b611ded90600261277a565b67ffffffffffffffff811115611e0557611e056128e1565b6040519080825280601f01601f191660200182016040528015611e2f576020820181803683370190505b509050600360fc1b81600081518110611e4a57611e4a6128cb565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e7957611e796128cb565b60200101906001600160f81b031916908160001a9053506000611e9d8460026127a6565b611ea890600161277a565b90505b6001811115611f20576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611edc57611edc6128cb565b1a60f81b828281518110611ef257611ef26128cb565b60200101906001600160f81b031916908160001a90535060049490941c93611f1981612808565b9050611eab565b508315610b705760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161059f565b60006001600160e01b03198216637965db0b60e01b148061049f57506301ffc9a760e01b6001600160e01b031983161461049f565b6001600160a01b038316611fff57611ffa81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612022565b816001600160a01b0316836001600160a01b03161461202257612022838261205c565b6001600160a01b038216612039576106d5816120f9565b826001600160a01b0316826001600160a01b0316146106d5576106d582826121a8565b6000600161206984610a2d565b61207391906127c5565b6000838152600960205260409020549091508082146120c6576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061210b906001906127c5565b6000838152600b6020526040812054600a8054939450909284908110612133576121336128cb565b9060005260206000200154905080600a8381548110612154576121546128cb565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061218c5761218c6128b5565b6001900381819060005260206000200160009055905550505050565b60006121b383610a2d565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b5080546121f89061281f565b6000825580601f10612208575050565b601f01602090049060005260206000209081019061092091906122aa565b8280546122329061281f565b90600052602060002090601f016020900481019282612254576000855561229a565b82601f1061226d57805160ff191683800117855561229a565b8280016001018555821561229a579182015b8281111561229a57825182559160200191906001019061227f565b506122a69291506122aa565b5090565b5b808211156122a657600081556001016122ab565b600067ffffffffffffffff808411156122da576122da6128e1565b604051601f8501601f19908116603f01168101908282118183101715612302576123026128e1565b8160405280935085815286868601111561231b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461234c57600080fd5b919050565b60006020828403121561236357600080fd5b610b7082612335565b6000806040838503121561237f57600080fd5b61238883612335565b915061239660208401612335565b90509250929050565b6000806000606084860312156123b457600080fd5b6123bd84612335565b92506123cb60208501612335565b9150604084013590509250925092565b600080600080608085870312156123f157600080fd5b6123fa85612335565b935061240860208601612335565b925060408501359150606085013567ffffffffffffffff81111561242b57600080fd5b8501601f8101871361243c57600080fd5b61244b878235602084016122bf565b91505092959194509250565b6000806040838503121561246a57600080fd5b61247383612335565b91506020830135801515811461248857600080fd5b809150509250929050565b600080604083850312156124a657600080fd5b6124af83612335565b9150602083013567ffffffffffffffff8111156124cb57600080fd5b8301601f810185136124dc57600080fd5b6124eb858235602084016122bf565b9150509250929050565b6000806040838503121561250857600080fd5b61251183612335565b946020939093013593505050565b60006020828403121561253157600080fd5b5035919050565b6000806040838503121561254b57600080fd5b8235915061239660208401612335565b6000806040838503121561256e57600080fd5b50508035926020909101359150565b60006020828403121561258f57600080fd5b8135610b70816128f7565b6000602082840312156125ac57600080fd5b8151610b70816128f7565b600081518084526125cf8160208601602086016127dc565b601f01601f19169290920160200192915050565b600083516125f58184602088016127dc565b8351908301906126098183602088016127dc565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161264a8160178501602088016127dc565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161267b8160288401602088016127dc565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126ba908301846125b7565b9695505050505050565b602081526000610b7060208301846125b7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561278d5761278d612889565b500190565b6000826127a1576127a161289f565b500490565b60008160001904831182151516156127c0576127c0612889565b500290565b6000828210156127d7576127d7612889565b500390565b60005b838110156127f75781810151838201526020016127df565b83811115610ca65750506000910152565b60008161281757612817612889565b506000190190565b600181811c9082168061283357607f821691505b6020821081141561285457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561286e5761286e612889565b5060010190565b6000826128845761288461289f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092057600080fdfea2646970667358221220877613c183fc65d38c067b56d1ca66ff1d7a60a0c4f812b43ea37803b1e709a064736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80636352211e1161010f578063b88d4fde116100a2578063d539139311610071578063d5391393146103f7578063d547741f1461041e578063e63ab1e914610431578063e985e9c51461045857600080fd5b8063b88d4fde146103ab578063c87b56dd146103be578063ca15c873146103d1578063d0def521146103e457600080fd5b806391d14854116100de57806391d148541461037557806395d89b4114610388578063a217fddf14610390578063a22cb4651461039857600080fd5b80636352211e1461033457806370a08231146103475780638456cb591461035a5780639010d07c1461036257600080fd5b80632f2ff15d1161018757806342842e0e1161015657806342842e0e146102f057806342966c68146103035780634f6ccce7146103165780635c975abb1461032957600080fd5b80632f2ff15d146102af5780632f745c59146102c257806336568abe146102d55780633f4ba83a146102e857600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd14610279578063248a9ca31461028c57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f836600461257d565b610494565b60405190151581526020015b60405180910390f35b61021a6104a5565b60405161020991906126c4565b61023a61023536600461251f565b610537565b6040516001600160a01b039091168152602001610209565b6102656102603660046124f5565b6105c4565b005b600a545b604051908152602001610209565b61026561028736600461239f565b6106da565b61026b61029a36600461251f565b60009081526020819052604090206001015490565b6102656102bd366004612538565b61070c565b61026b6102d03660046124f5565b61072e565b6102656102e3366004612538565b6107c4565b6102656107e6565b6102656102fe36600461239f565b61088e565b61026561031136600461251f565b6108a9565b61026b61032436600461251f565b610923565b600c5460ff166101fd565b61023a61034236600461251f565b6109b6565b61026b610355366004612351565b610a2d565b610265610ab4565b61023a61037036600461255b565b610b58565b6101fd610383366004612538565b610b77565b61021a610ba0565b61026b600081565b6102656103a6366004612457565b610baf565b6102656103b93660046123db565b610c74565b61021a6103cc36600461251f565b610cac565b61026b6103df36600461251f565b610e23565b6102656103f2366004612493565b610e3a565b61026b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61026561042c366004612538565b610f05565b61026b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6101fd61046636600461236c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600061049f82610f32565b92915050565b6060600280546104b49061281f565b80601f01602080910402602001604051908101604052809291908181526020018280546104e09061281f565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b600061054282610f57565b6105a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105cf826109b6565b9050806001600160a01b0316836001600160a01b0316141561063d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059f565b336001600160a01b038216148061065957506106598133610466565b6106cb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059f565b6106d58383610f74565b505050565b6106e5335b82610fe2565b6107015760405162461bcd60e51b815260040161059f90612729565b6106d58383836110c8565b6107168282611273565b60008281526001602052604090206106d59082610f1d565b600061073983610a2d565b821061079b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161059f565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6107ce8282611299565b60008281526001602052604090206106d59082611313565b6108107f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610b77565b610884576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365606482015260840161059f565b61088c611328565b565b6106d583838360405180602001604052806000815250610c74565b6108b2336106df565b6109175760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161059f565b610920816113bb565b50565b600061092e600a5490565b82106109915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161059f565b600a82815481106109a4576109a46128cb565b90600052602060002001549050919050565b6000818152600460205260408120546001600160a01b03168061049f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059f565b60006001600160a01b038216610a985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059f565b506001600160a01b031660009081526005602052604090205490565b610ade7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610b77565b610b505760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000606482015260840161059f565b61088c6113fb565b6000828152600160205260408120610b709083611476565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600380546104b49061281f565b6001600160a01b038216331415610c085760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c7e3383610fe2565b610c9a5760405162461bcd60e51b815260040161059f90612729565b610ca684848484611482565b50505050565b6060610cb782610f57565b610d1d5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161059f565b6000828152600e602052604081208054610d369061281f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d629061281f565b8015610daf5780601f10610d8457610100808354040283529160200191610daf565b820191906000526020600020905b815481529060010190602001808311610d9257829003601f168201915b505050505090506000610dcd60408051602081019091526000815290565b9050805160001415610de0575092915050565b815115610e12578082604051602001610dfa9291906125e3565b60405160208183030381529060405292505050919050565b610e1b846114b5565b949350505050565b600081815260016020526040812061049f9061158c565b610e647f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610b77565b610ed65760405162461bcd60e51b815260206004820152603d60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d7573742068617665206d696e74657220726f6c6520746f206d696e74000000606482015260840161059f565b6000610ee1600d5490565b9050610eed8382611596565b610ef781836116d5565b6106d5600d80546001019055565b6107ce8282611760565b610f198282611786565b5050565b6000610b70836001600160a01b03841661180a565b60006001600160e01b0319821663780e9d6360e01b148061049f575061049f82611859565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fa9826109b6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610fed82610f57565b61104e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b6000611059836109b6565b9050806001600160a01b0316846001600160a01b031614806110945750836001600160a01b031661108984610537565b6001600160a01b0316145b80610e1b57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16610e1b565b826001600160a01b03166110db826109b6565b6001600160a01b0316146111435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161059f565b6001600160a01b0382166111a55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059f565b6111b0838383611899565b6111bb600082610f74565b6001600160a01b03831660009081526005602052604081208054600192906111e49084906127c5565b90915550506001600160a01b038216600090815260056020526040812080546001929061121290849061277a565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020819052604090206001015461128f81336118a4565b6106d58383611786565b6001600160a01b03811633146113095760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161059f565b610f198282611908565b6000610b70836001600160a01b03841661196d565b600c5460ff166113715760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161059f565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6113c481611a60565b6000818152600e6020526040902080546113dd9061281f565b159050610920576000818152600e60205260408120610920916121ec565b600c5460ff16156114415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161059f565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861139e3390565b6000610b708383611b07565b61148d8484846110c8565b61149984848484611b31565b610ca65760405162461bcd60e51b815260040161059f906126d7565b60606114c082610f57565b6115245760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059f565b600061153b60408051602081019091526000815290565b9050600081511161155b5760405180602001604052806000815250610b70565b8061156584611c3e565b6040516020016115769291906125e3565b6040516020818303038152906040529392505050565b600061049f825490565b6001600160a01b0382166115ec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059f565b6115f581610f57565b156116425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059f565b61164e60008383611899565b6001600160a01b038216600090815260056020526040812080546001929061167790849061277a565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6116de82610f57565b6117415760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161059f565b6000828152600e6020908152604090912082516106d592840190612226565b60008281526020819052604090206001015461177c81336118a4565b6106d58383611908565b6117908282610b77565b610f19576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556117c63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546118515750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561049f565b50600061049f565b60006001600160e01b031982166380ac58cd60e01b148061188a57506001600160e01b03198216635b5e139f60e01b145b8061049f575061049f82611d3c565b6106d5838383611d61565b6118ae8282610b77565b610f19576118c6816001600160a01b03166014611dd3565b6118d1836020611dd3565b6040516020016118e2929190612612565b60408051601f198184030181529082905262461bcd60e51b825261059f916004016126c4565b6119128282610b77565b15610f19576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015611a565760006119916001836127c5565b85549091506000906119a5906001906127c5565b9050818114611a0a5760008660000182815481106119c5576119c56128cb565b90600052602060002001549050808760000184815481106119e8576119e86128cb565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611a1b57611a1b6128b5565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061049f565b600091505061049f565b6000611a6b826109b6565b9050611a7981600084611899565b611a84600083610f74565b6001600160a01b0381166000908152600560205260408120805460019290611aad9084906127c5565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000826000018281548110611b1e57611b1e6128cb565b9060005260206000200154905092915050565b60006001600160a01b0384163b15611c3357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b75903390899088908890600401612687565b602060405180830381600087803b158015611b8f57600080fd5b505af1925050508015611bbf575060408051601f3d908101601f19168201909252611bbc9181019061259a565b60015b611c19573d808015611bed576040519150601f19603f3d011682016040523d82523d6000602084013e611bf2565b606091505b508051611c115760405162461bcd60e51b815260040161059f906126d7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e1b565b506001949350505050565b606081611c625750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8c5780611c768161285a565b9150611c859050600a83612792565b9150611c66565b60008167ffffffffffffffff811115611ca757611ca76128e1565b6040519080825280601f01601f191660200182016040528015611cd1576020820181803683370190505b5090505b8415610e1b57611ce66001836127c5565b9150611cf3600a86612875565b611cfe90603061277a565b60f81b818381518110611d1357611d136128cb565b60200101906001600160f81b031916908160001a905350611d35600a86612792565b9450611cd5565b60006001600160e01b03198216635a05180f60e01b148061049f575061049f82611f6f565b611d6c838383611fa4565b600c5460ff16156106d55760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161059f565b60606000611de28360026127a6565b611ded90600261277a565b67ffffffffffffffff811115611e0557611e056128e1565b6040519080825280601f01601f191660200182016040528015611e2f576020820181803683370190505b509050600360fc1b81600081518110611e4a57611e4a6128cb565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e7957611e796128cb565b60200101906001600160f81b031916908160001a9053506000611e9d8460026127a6565b611ea890600161277a565b90505b6001811115611f20576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611edc57611edc6128cb565b1a60f81b828281518110611ef257611ef26128cb565b60200101906001600160f81b031916908160001a90535060049490941c93611f1981612808565b9050611eab565b508315610b705760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161059f565b60006001600160e01b03198216637965db0b60e01b148061049f57506301ffc9a760e01b6001600160e01b031983161461049f565b6001600160a01b038316611fff57611ffa81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612022565b816001600160a01b0316836001600160a01b03161461202257612022838261205c565b6001600160a01b038216612039576106d5816120f9565b826001600160a01b0316826001600160a01b0316146106d5576106d582826121a8565b6000600161206984610a2d565b61207391906127c5565b6000838152600960205260409020549091508082146120c6576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061210b906001906127c5565b6000838152600b6020526040812054600a8054939450909284908110612133576121336128cb565b9060005260206000200154905080600a8381548110612154576121546128cb565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061218c5761218c6128b5565b6001900381819060005260206000200160009055905550505050565b60006121b383610a2d565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b5080546121f89061281f565b6000825580601f10612208575050565b601f01602090049060005260206000209081019061092091906122aa565b8280546122329061281f565b90600052602060002090601f016020900481019282612254576000855561229a565b82601f1061226d57805160ff191683800117855561229a565b8280016001018555821561229a579182015b8281111561229a57825182559160200191906001019061227f565b506122a69291506122aa565b5090565b5b808211156122a657600081556001016122ab565b600067ffffffffffffffff808411156122da576122da6128e1565b604051601f8501601f19908116603f01168101908282118183101715612302576123026128e1565b8160405280935085815286868601111561231b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461234c57600080fd5b919050565b60006020828403121561236357600080fd5b610b7082612335565b6000806040838503121561237f57600080fd5b61238883612335565b915061239660208401612335565b90509250929050565b6000806000606084860312156123b457600080fd5b6123bd84612335565b92506123cb60208501612335565b9150604084013590509250925092565b600080600080608085870312156123f157600080fd5b6123fa85612335565b935061240860208601612335565b925060408501359150606085013567ffffffffffffffff81111561242b57600080fd5b8501601f8101871361243c57600080fd5b61244b878235602084016122bf565b91505092959194509250565b6000806040838503121561246a57600080fd5b61247383612335565b91506020830135801515811461248857600080fd5b809150509250929050565b600080604083850312156124a657600080fd5b6124af83612335565b9150602083013567ffffffffffffffff8111156124cb57600080fd5b8301601f810185136124dc57600080fd5b6124eb858235602084016122bf565b9150509250929050565b6000806040838503121561250857600080fd5b61251183612335565b946020939093013593505050565b60006020828403121561253157600080fd5b5035919050565b6000806040838503121561254b57600080fd5b8235915061239660208401612335565b6000806040838503121561256e57600080fd5b50508035926020909101359150565b60006020828403121561258f57600080fd5b8135610b70816128f7565b6000602082840312156125ac57600080fd5b8151610b70816128f7565b600081518084526125cf8160208601602086016127dc565b601f01601f19169290920160200192915050565b600083516125f58184602088016127dc565b8351908301906126098183602088016127dc565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161264a8160178501602088016127dc565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161267b8160288401602088016127dc565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126ba908301846125b7565b9695505050505050565b602081526000610b7060208301846125b7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561278d5761278d612889565b500190565b6000826127a1576127a161289f565b500490565b60008160001904831182151516156127c0576127c0612889565b500290565b6000828210156127d7576127d7612889565b500390565b60005b838110156127f75781810151838201526020016127df565b83811115610ca65750506000910152565b60008161281757612817612889565b506000190190565b600181811c9082168061283357607f821691505b6020821081141561285457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561286e5761286e612889565b5060010190565b6000826128845761288461289f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092057600080fdfea2646970667358221220877613c183fc65d38c067b56d1ca66ff1d7a60a0c4f812b43ea37803b1e709a064736f6c63430008070033
Deployed Bytecode Sourcemap
76797:5009:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79900:254;;;;;;:::i;:::-;;:::i;:::-;;;7208:14:1;;7201:22;7183:41;;7171:2;7156:18;79900:254:0;;;;;;;;22616:100;;;:::i;:::-;;;;;;;:::i;24309:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6506:32:1;;;6488:51;;6476:2;6461:18;24309:308:0;6342:203:1;23832:411:0;;;;;;:::i;:::-;;:::i;:::-;;37279:113;37367:10;:17;37279:113;;;7381:25:1;;;7369:2;7354:18;37279:113:0;7235:177:1;25368:376:0;;;;;;:::i;:::-;;:::i;55143:123::-;;;;;;:::i;:::-;55209:7;55236:12;;;;;;;;;;:22;;;;55143:123;73499:228;;;;;;:::i;:::-;;:::i;36860:343::-;;;;;;:::i;:::-;;:::i;74148:237::-;;;;;;:::i;:::-;;:::i;79359:222::-;;;:::i;25815:185::-;;;;;;:::i;:::-;;:::i;46482:282::-;;;;;;:::i;:::-;;:::i;37469:320::-;;;;;;:::i;:::-;;:::i;43962:86::-;44033:7;;;;43962:86;;22223:326;;;;;;:::i;:::-;;:::i;21866:295::-;;;;;;:::i;:::-;;:::i;78924:216::-;;;:::i;72872:186::-;;;;;;:::i;:::-;;:::i;53987:180::-;;;;;;:::i;:::-;;:::i;22785:104::-;;;:::i;53002:49::-;;53047:4;53002:49;;24689:327;;;;;;:::i;:::-;;:::i;26071:365::-;;;;;;:::i;:::-;;:::i;80225:749::-;;;;;;:::i;:::-;;:::i;73232:175::-;;;;;;:::i;:::-;;:::i;78171:538::-;;;;;;:::i;:::-;;:::i;76990:62::-;;77028:24;76990:62;;73820:233;;;;;;:::i;:::-;;:::i;77059:62::-;;77097:24;77059:62;;25087:214;;;;;;:::i;:::-;-1:-1:-1;;;;;25258:25:0;;;25229:4;25258:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25087:214;79900:254;80081:4;80110:36;80134:11;80110:23;:36::i;:::-;80103:43;79900:254;-1:-1:-1;;79900:254:0:o;22616:100::-;22670:13;22703:5;22696:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22616:100;:::o;24309:308::-;24430:7;24477:16;24485:7;24477;:16::i;:::-;24455:110;;;;-1:-1:-1;;;24455:110:0;;14541:2:1;24455:110:0;;;14523:21:1;14580:2;14560:18;;;14553:30;14619:34;14599:18;;;14592:62;-1:-1:-1;;;14670:18:1;;;14663:42;14722:19;;24455:110:0;;;;;;;;;-1:-1:-1;24585:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24585:24:0;;24309:308::o;23832:411::-;23913:13;23929:23;23944:7;23929:14;:23::i;:::-;23913:39;;23977:5;-1:-1:-1;;;;;23971:11:0;:2;-1:-1:-1;;;;;23971:11:0;;;23963:57;;;;-1:-1:-1;;;23963:57:0;;15780:2:1;23963:57:0;;;15762:21:1;15819:2;15799:18;;;15792:30;15858:34;15838:18;;;15831:62;-1:-1:-1;;;15909:18:1;;;15902:31;15950:19;;23963:57:0;15578:397:1;23963:57:0;16877:10;-1:-1:-1;;;;;24055:21:0;;;;:62;;-1:-1:-1;24080:37:0;24097:5;16877:10;25087:214;:::i;24080:37::-;24033:168;;;;-1:-1:-1;;;24033:168:0;;12101:2:1;24033:168:0;;;12083:21:1;12140:2;12120:18;;;12113:30;12179:34;12159:18;;;12152:62;12250:26;12230:18;;;12223:54;12294:19;;24033:168:0;11899:420:1;24033:168:0;24214:21;24223:2;24227:7;24214:8;:21::i;:::-;23902:341;23832:411;;:::o;25368:376::-;25577:41;16877:10;25596:12;25610:7;25577:18;:41::i;:::-;25555:140;;;;-1:-1:-1;;;25555:140:0;;;;;;;:::i;:::-;25708:28;25718:4;25724:2;25728:7;25708:9;:28::i;73499:228::-;73647:30;73663:4;73669:7;73647:15;:30::i;:::-;73688:18;;;;:12;:18;;;;;:31;;73711:7;73688:22;:31::i;36860:343::-;37002:7;37057:23;37074:5;37057:16;:23::i;:::-;37049:5;:31;37027:124;;;;-1:-1:-1;;;37027:124:0;;8965:2:1;37027:124:0;;;8947:21:1;9004:2;8984:18;;;8977:30;9043:34;9023:18;;;9016:62;-1:-1:-1;;;9094:18:1;;;9087:41;9145:19;;37027:124:0;8763:407:1;37027:124:0;-1:-1:-1;;;;;;37169:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36860:343::o;74148:237::-;74299:33;74318:4;74324:7;74299:18;:33::i;:::-;74343:18;;;;:12;:18;;;;;:34;;74369:7;74343:25;:34::i;79359:222::-;79426:34;77097:24;16877:10;53987:180;:::i;79426:34::-;79404:148;;;;;-1:-1:-1;;;79404:148:0;;17860:2:1;79404:148:0;;;17842:21:1;17879:18;;;17872:30;;;;17938:34;17918:18;;;17911:62;18009:34;17989:18;;;17982:62;18061:19;;79404:148:0;17658:428:1;79404:148:0;79563:10;:8;:10::i;:::-;79359:222::o;25815:185::-;25953:39;25970:4;25976:2;25980:7;25953:39;;;;;;;;;;;;:16;:39::i;46482:282::-;46614:41;16877:10;46633:12;16797:98;46614:41;46592:139;;;;-1:-1:-1;;;46592:139:0;;17443:2:1;46592:139:0;;;17425:21:1;17482:2;17462:18;;;17455:30;17521:34;17501:18;;;17494:62;-1:-1:-1;;;17572:18:1;;;17565:46;17628:19;;46592:139:0;17241:412:1;46592:139:0;46742:14;46748:7;46742:5;:14::i;:::-;46482:282;:::o;37469:320::-;37589:7;37644:30;37367:10;:17;;37279:113;37644:30;37636:5;:38;37614:132;;;;-1:-1:-1;;;37614:132:0;;16600:2:1;37614:132:0;;;16582:21:1;16639:2;16619:18;;;16612:30;16678:34;16658:18;;;16651:62;-1:-1:-1;;;16729:18:1;;;16722:42;16781:19;;37614:132:0;16398:408:1;37614:132:0;37764:10;37775:5;37764:17;;;;;;;;:::i;:::-;;;;;;;;;37757:24;;37469:320;;;:::o;22223:326::-;22340:7;22381:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22381:16:0;22430:19;22408:110;;;;-1:-1:-1;;;22408:110:0;;12937:2:1;22408:110:0;;;12919:21:1;12976:2;12956:18;;;12949:30;13015:34;12995:18;;;12988:62;-1:-1:-1;;;13066:18:1;;;13059:39;13115:19;;22408:110:0;12735:405:1;21866:295:0;21983:7;-1:-1:-1;;;;;22030:19:0;;22008:111;;;;-1:-1:-1;;;22008:111:0;;12526:2:1;22008:111:0;;;12508:21:1;12565:2;12545:18;;;12538:30;12604:34;12584:18;;;12577:62;-1:-1:-1;;;12655:18:1;;;12648:40;12705:19;;22008:111:0;12324:406:1;22008:111:0;-1:-1:-1;;;;;;22137:16:0;;;;;:9;:16;;;;;;;21866:295::o;78924:216::-;78989:34;77097:24;16877:10;53987:180;:::i;78989:34::-;78967:146;;;;-1:-1:-1;;;78967:146:0;;10153:2:1;78967:146:0;;;10135:21:1;10192:2;10172:18;;;10165:30;10231:34;10211:18;;;10204:62;10302:32;10282:18;;;10275:60;10352:19;;78967:146:0;9951:426:1;78967:146:0;79124:8;:6;:8::i;72872:186::-;72990:7;73022:18;;;:12;:18;;;;;:28;;73044:5;73022:21;:28::i;:::-;73015:35;72872:186;-1:-1:-1;;;72872:186:0:o;53987:180::-;54101:4;54130:12;;;;;;;;;;;-1:-1:-1;;;;;54130:29:0;;;;;;;;;;;;;;;53987:180::o;22785:104::-;22841:13;22874:7;22867:14;;;;;:::i;24689:327::-;-1:-1:-1;;;;;24824:24:0;;16877:10;24824:24;;24816:62;;;;-1:-1:-1;;;24816:62:0;;10989:2:1;24816:62:0;;;10971:21:1;11028:2;11008:18;;;11001:30;11067:27;11047:18;;;11040:55;11112:18;;24816:62:0;10787:349:1;24816:62:0;16877:10;24891:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24891:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24891:53:0;;;;;;;;;;24960:48;;7183:41:1;;;24891:42:0;;16877:10;24960:48;;7156:18:1;24960:48:0;;;;;;;24689:327;;:::o;26071:365::-;26260:41;16877:10;26293:7;26260:18;:41::i;:::-;26238:140;;;;-1:-1:-1;;;26238:140:0;;;;;;;:::i;:::-;26389:39;26403:4;26409:2;26413:7;26422:5;26389:13;:39::i;:::-;26071:365;;;;:::o;80225:749::-;80326:13;80379:16;80387:7;80379;:16::i;:::-;80357:115;;;;-1:-1:-1;;;80357:115:0;;14123:2:1;80357:115:0;;;14105:21:1;14162:2;14142:18;;;14135:30;14201:34;14181:18;;;14174:62;-1:-1:-1;;;14252:18:1;;;14245:47;14309:19;;80357:115:0;13921:413:1;80357:115:0;80485:23;80511:19;;;:10;:19;;;;;80485:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80541:18;80562:10;23753:9;;;;;;;;;-1:-1:-1;23753:9:0;;;23676:94;80562:10;80541:31;;80654:4;80648:18;80670:1;80648:23;80644:72;;;-1:-1:-1;80695:9:0;80225:749;-1:-1:-1;;80225:749:0:o;80644:72::-;80820:23;;:27;80816:108;;80895:4;80901:9;80878:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80864:48;;;;80225:749;;;:::o;80816:108::-;80943:23;80958:7;80943:14;:23::i;:::-;80936:30;80225:749;-1:-1:-1;;;;80225:749:0:o;73232:175::-;73340:7;73372:18;;;:12;:18;;;;;:27;;:25;:27::i;78171:538::-;78261:34;77028:24;16877:10;53987:180;:::i;78261:34::-;78239:145;;;;-1:-1:-1;;;78239:145:0;;17013:2:1;78239:145:0;;;16995:21:1;17052:2;17032:18;;;17025:30;17091:34;17071:18;;;17064:62;17162:31;17142:18;;;17135:59;17211:19;;78239:145:0;16811:425:1;78239:145:0;78549:15;78567:25;:15;75597:14;;75505:114;78567:25;78549:43;;78603:18;78609:2;78613:7;78603:5;:18::i;:::-;78632:31;78645:7;78654:8;78632:12;:31::i;:::-;78674:27;:15;75716:19;;75734:1;75716:19;;;75627:127;73820:233;73969:31;73986:4;73992:7;73969:16;:31::i;57528:112::-;57607:25;57618:4;57624:7;57607:10;:25::i;:::-;57528:112;;:::o;66517:175::-;66605:4;66634:50;66639:3;-1:-1:-1;;;;;66659:23:0;;66634:4;:50::i;36476:300::-;36623:4;-1:-1:-1;;;;;;36665:50:0;;-1:-1:-1;;;36665:50:0;;:103;;;36732:36;36756:11;36732:23;:36::i;27983:127::-;28048:4;28072:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28072:16:0;:30;;;27983:127::o;32106:174::-;32181:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32181:29:0;-1:-1:-1;;;;;32181:29:0;;;;;;;;:24;;32235:23;32181:24;32235:14;:23::i;:::-;-1:-1:-1;;;;;32226:46:0;;;;;;;;;;;32106:174;;:::o;28277:452::-;28406:4;28450:16;28458:7;28450;:16::i;:::-;28428:110;;;;-1:-1:-1;;;28428:110:0;;11343:2:1;28428:110:0;;;11325:21:1;11382:2;11362:18;;;11355:30;11421:34;11401:18;;;11394:62;-1:-1:-1;;;11472:18:1;;;11465:42;11524:19;;28428:110:0;11141:408:1;28428:110:0;28549:13;28565:23;28580:7;28565:14;:23::i;:::-;28549:39;;28618:5;-1:-1:-1;;;;;28607:16:0;:7;-1:-1:-1;;;;;28607:16:0;;:64;;;;28664:7;-1:-1:-1;;;;;28640:31:0;:20;28652:7;28640:11;:20::i;:::-;-1:-1:-1;;;;;28640:31:0;;28607:64;:113;;;-1:-1:-1;;;;;;25258:25:0;;;25229:4;25258:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28688:32;25087:214;31373:615;31546:4;-1:-1:-1;;;;;31519:31:0;:23;31534:7;31519:14;:23::i;:::-;-1:-1:-1;;;;;31519:31:0;;31497:122;;;;-1:-1:-1;;;31497:122:0;;14954:2:1;31497:122:0;;;14936:21:1;14993:2;14973:18;;;14966:30;15032:34;15012:18;;;15005:62;-1:-1:-1;;;15083:18:1;;;15076:39;15132:19;;31497:122:0;14752:405:1;31497:122:0;-1:-1:-1;;;;;31638:16:0;;31630:65;;;;-1:-1:-1;;;31630:65:0;;10584:2:1;31630:65:0;;;10566:21:1;10623:2;10603:18;;;10596:30;10662:34;10642:18;;;10635:62;-1:-1:-1;;;10713:18:1;;;10706:34;10757:19;;31630:65:0;10382:400:1;31630:65:0;31708:39;31729:4;31735:2;31739:7;31708:20;:39::i;:::-;31812:29;31829:1;31833:7;31812:8;:29::i;:::-;-1:-1:-1;;;;;31854:15:0;;;;;;:9;:15;;;;;:20;;31873:1;;31854:15;:20;;31873:1;;31854:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31885:13:0;;;;;;:9;:13;;;;;:18;;31902:1;;31885:13;:18;;31902:1;;31885:18;:::i;:::-;;;;-1:-1:-1;;31914:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31914:21:0;-1:-1:-1;;;;;31914:21:0;;;;;;;;;31953:27;;31914:16;;31953:27;;;;;;;31373:615;;;:::o;55528:188::-;55209:7;55236:12;;;;;;;;;;:22;;;53493:30;53504:4;16877:10;53493;:30::i;:::-;55683:25:::1;55694:4;55700:7;55683:10;:25::i;56658:287::-:0;-1:-1:-1;;;;;56800:23:0;;16877:10;56800:23;56778:120;;;;-1:-1:-1;;;56778:120:0;;18293:2:1;56778:120:0;;;18275:21:1;18332:2;18312:18;;;18305:30;18371:34;18351:18;;;18344:62;-1:-1:-1;;;18422:18:1;;;18415:45;18477:19;;56778:120:0;18091:411:1;56778:120:0;56911:26;56923:4;56929:7;56911:11;:26::i;66868:181::-;66959:4;66988:53;66996:3;-1:-1:-1;;;;;67016:23:0;;66988:7;:53::i;45021:120::-;44033:7;;;;44557:41;;;;-1:-1:-1;;;44557:41:0;;8616:2:1;44557:41:0;;;8598:21:1;8655:2;8635:18;;;8628:30;-1:-1:-1;;;8674:18:1;;;8667:50;8734:18;;44557:41:0;8414:344:1;44557:41:0;45080:7:::1;:15:::0;;-1:-1:-1;;45080:15:0::1;::::0;;45111:22:::1;16877:10:::0;45120:12:::1;45111:22;::::0;-1:-1:-1;;;;;6506:32:1;;;6488:51;;6476:2;6461:18;45111:22:0::1;;;;;;;45021:120::o:0;81605:198::-;81666:20;81678:7;81666:11;:20::i;:::-;81709:19;;;;:10;:19;;;;;81703:33;;;;;:::i;:::-;:38;;-1:-1:-1;81699:97:0;;81765:19;;;;:10;:19;;;;;81758:26;;;:::i;44762:118::-;44033:7;;;;44287:9;44279:38;;;;-1:-1:-1;;;44279:38:0;;11756:2:1;44279:38:0;;;11738:21:1;11795:2;11775:18;;;11768:30;-1:-1:-1;;;11814:18:1;;;11807:46;11870:18;;44279:38:0;11554:340:1;44279:38:0;44822:7:::1;:14:::0;;-1:-1:-1;;44822:14:0::1;44832:4;44822:14;::::0;;44852:20:::1;44859:12;16877:10:::0;;16797:98;67891:190;67992:7;68048:22;68052:3;68064:5;68048:3;:22::i;27318:352::-;27475:28;27485:4;27491:2;27495:7;27475:9;:28::i;:::-;27536:48;27559:4;27565:2;27569:7;27578:5;27536:22;:48::i;:::-;27514:148;;;;-1:-1:-1;;;27514:148:0;;;;;;;:::i;22960:468::-;23078:13;23131:16;23139:7;23131;:16::i;:::-;23109:113;;;;-1:-1:-1;;;23109:113:0;;15364:2:1;23109:113:0;;;15346:21:1;15403:2;15383:18;;;15376:30;15442:34;15422:18;;;15415:62;-1:-1:-1;;;15493:18:1;;;15486:45;15548:19;;23109:113:0;15162:411:1;23109:113:0;23235:21;23259:10;23753:9;;;;;;;;;-1:-1:-1;23753:9:0;;;23676:94;23259:10;23235:34;;23324:1;23306:7;23300:21;:25;:120;;;;;;;;;;;;;;;;;23369:7;23378:18;:7;:16;:18::i;:::-;23352:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23280:140;22960:468;-1:-1:-1;;;22960:468:0:o;67420:117::-;67483:7;67510:19;67518:3;62652:18;;62569:109;30065:382;-1:-1:-1;;;;;30145:16:0;;30137:61;;;;-1:-1:-1;;;30137:61:0;;13762:2:1;30137:61:0;;;13744:21:1;;;13781:18;;;13774:30;13840:34;13820:18;;;13813:62;13892:18;;30137:61:0;13560:356:1;30137:61:0;30218:16;30226:7;30218;:16::i;:::-;30217:17;30209:58;;;;-1:-1:-1;;;30209:58:0;;9796:2:1;30209:58:0;;;9778:21:1;9835:2;9815:18;;;9808:30;9874;9854:18;;;9847:58;9922:18;;30209:58:0;9594:352:1;30209:58:0;30280:45;30309:1;30313:2;30317:7;30280:20;:45::i;:::-;-1:-1:-1;;;;;30338:13:0;;;;;;:9;:13;;;;;:18;;30355:1;;30338:13;:18;;30355:1;;30338:18;:::i;:::-;;;;-1:-1:-1;;30367:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30367:21:0;-1:-1:-1;;;;;30367:21:0;;;;;;;;30406:33;;30367:16;;;30406:33;;30367:16;;30406:33;30065:382;;:::o;81130:246::-;81236:16;81244:7;81236;:16::i;:::-;81214:112;;;;-1:-1:-1;;;81214:112:0;;13347:2:1;81214:112:0;;;13329:21:1;13386:2;13366:18;;;13359:30;13425:34;13405:18;;;13398:62;-1:-1:-1;;;13476:18:1;;;13469:44;13530:19;;81214:112:0;13145:410:1;81214:112:0;81337:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;55961:190::-;55209:7;55236:12;;;;;;;;;;:22;;;53493:30;53504:4;16877:10;53493;:30::i;:::-;56117:26:::1;56129:4;56135:7;56117:11;:26::i;58031:229::-:0;58106:22;58114:4;58120:7;58106;:22::i;:::-;58101:152;;58145:6;:12;;;;;;;;;;;-1:-1:-1;;;;;58145:29:0;;;;;;;;;:36;;-1:-1:-1;;58145:36:0;58177:4;58145:36;;;58228:12;16877:10;;16797:98;58228:12;-1:-1:-1;;;;;58201:40:0;58219:7;-1:-1:-1;;;;;58201:40:0;58213:4;58201:40;;;;;;;;;;58031:229;;:::o;60226:414::-;60289:4;62451:19;;;:12;;;:19;;;;;;60306:327;;-1:-1:-1;60349:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;60532:18;;60510:19;;;:12;;;:19;;;;;;:40;;;;60565:11;;60306:327;-1:-1:-1;60616:5:0;60609:12;;21447:355;21594:4;-1:-1:-1;;;;;;21636:40:0;;-1:-1:-1;;;21636:40:0;;:105;;-1:-1:-1;;;;;;;21693:48:0;;-1:-1:-1;;;21693:48:0;21636:105;:158;;;;21758:36;21782:11;21758:23;:36::i;79589:239::-;79775:45;79802:4;79808:2;79812:7;79775:26;:45::i;54457:497::-;54538:22;54546:4;54552:7;54538;:22::i;:::-;54533:414;;54726:41;54754:7;-1:-1:-1;;;;;54726:41:0;54764:2;54726:19;:41::i;:::-;54840:38;54868:4;54875:2;54840:19;:38::i;:::-;54631:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;54631:270:0;;;;;;;;;;-1:-1:-1;;;54577:358:0;;;;;;;:::i;58268:230::-;58343:22;58351:4;58357:7;58343;:22::i;:::-;58339:152;;;58414:5;58382:12;;;;;;;;;;;-1:-1:-1;;;;;58382:29:0;;;;;;;;;;:37;;-1:-1:-1;;58382:37:0;;;58439:40;16877:10;;58382:12;;58439:40;;58414:5;58439:40;58268:230;;:::o;60816:1420::-;60882:4;61021:19;;;:12;;;:19;;;;;;61057:15;;61053:1176;;61432:21;61456:14;61469:1;61456:10;:14;:::i;:::-;61505:18;;61432:38;;-1:-1:-1;61485:17:0;;61505:22;;61526:1;;61505:22;:::i;:::-;61485:42;;61561:13;61548:9;:26;61544:405;;61595:17;61615:3;:11;;61627:9;61615:22;;;;;;;;:::i;:::-;;;;;;;;;61595:42;;61769:9;61740:3;:11;;61752:13;61740:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;61854:23;;;:12;;;:23;;;;;:36;;;61544:405;62030:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;62125:3;:12;;:19;62138:5;62125:19;;;;;;;;;;;62118:26;;;62168:4;62161:11;;;;;;;61053:1176;62212:5;62205:12;;;;;30676:360;30736:13;30752:23;30767:7;30752:14;:23::i;:::-;30736:39;;30788:48;30809:5;30824:1;30828:7;30788:20;:48::i;:::-;30877:29;30894:1;30898:7;30877:8;:29::i;:::-;-1:-1:-1;;;;;30919:16:0;;;;;;:9;:16;;;;;:21;;30939:1;;30919:16;:21;;30939:1;;30919:21;:::i;:::-;;;;-1:-1:-1;;30958:16:0;;;;:7;:16;;;;;;30951:23;;-1:-1:-1;;;;;;30951:23:0;;;30992:36;30966:7;;30958:16;-1:-1:-1;;;;;30992:36:0;;;;;30958:16;;30992:36;30725:311;30676:360;:::o;63032:152::-;63126:7;63158:3;:11;;63170:5;63158:18;;;;;;;;:::i;:::-;;;;;;;;;63151:25;;63032:152;;;;:::o;32845:980::-;33000:4;-1:-1:-1;;;;;33021:13:0;;8695:20;8743:8;33017:801;;33074:175;;-1:-1:-1;;;33074:175:0;;-1:-1:-1;;;;;33074:36:0;;;;;:175;;16877:10;;33168:4;;33195:7;;33225:5;;33074:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33074:175:0;;;;;;;;-1:-1:-1;;33074:175:0;;;;;;;;;;;;:::i;:::-;;;33053:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33432:13:0;;33428:320;;33475:108;;-1:-1:-1;;;33475:108:0;;;;;;;:::i;33428:320::-;33698:6;33692:13;33683:6;33679:2;33675:15;33668:38;33053:710;-1:-1:-1;;;;;;33313:51:0;-1:-1:-1;;;33313:51:0;;-1:-1:-1;33306:58:0;;33017:801;-1:-1:-1;33802:4:0;32845:980;;;;;;:::o;17324:723::-;17380:13;17601:10;17597:53;;-1:-1:-1;;17628:10:0;;;;;;;;;;;;-1:-1:-1;;;17628:10:0;;;;;17324:723::o;17597:53::-;17675:5;17660:12;17716:78;17723:9;;17716:78;;17749:8;;;;:::i;:::-;;-1:-1:-1;17772:10:0;;-1:-1:-1;17780:2:0;17772:10;;:::i;:::-;;;17716:78;;;17804:19;17836:6;17826:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17826:17:0;;17804:39;;17854:154;17861:10;;17854:154;;17888:11;17898:1;17888:11;;:::i;:::-;;-1:-1:-1;17957:10:0;17965:2;17957:5;:10;:::i;:::-;17944:24;;:2;:24;:::i;:::-;17931:39;;17914:6;17921;17914:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17914:56:0;;;;;;;;-1:-1:-1;17985:11:0;17994:2;17985:11;;:::i;:::-;;;17854:154;;71983:290;72113:4;-1:-1:-1;;;;;;72155:57:0;;-1:-1:-1;;;72155:57:0;;:110;;;72229:36;72253:11;72229:23;:36::i;45745:275::-;45889:45;45916:4;45922:2;45926:7;45889:26;:45::i;:::-;44033:7;;;;45955:9;45947:65;;;;-1:-1:-1;;;45947:65:0;;8204:2:1;45947:65:0;;;8186:21:1;8243:2;8223:18;;;8216:30;8282:34;8262:18;;;8255:62;-1:-1:-1;;;8333:18:1;;;8326:41;8384:19;;45947:65:0;8002:407:1;18625:483:0;18727:13;18758:19;18790:10;18794:6;18790:1;:10;:::i;:::-;:14;;18803:1;18790:14;:::i;:::-;18780:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18780:25:0;;18758:47;;-1:-1:-1;;;18816:6:0;18823:1;18816:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18816:15:0;;;;;;;;;-1:-1:-1;;;18842:6:0;18849:1;18842:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18842:15:0;;;;;;;;-1:-1:-1;18873:9:0;18885:10;18889:6;18885:1;:10;:::i;:::-;:14;;18898:1;18885:14;:::i;:::-;18873:26;;18868:135;18905:1;18901;:5;18868:135;;;-1:-1:-1;;;18953:5:0;18961:3;18953:11;18940:25;;;;;;;:::i;:::-;;;;18928:6;18935:1;18928:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;18928:37:0;;;;;;;;-1:-1:-1;18990:1:0;18980:11;;;;;18908:3;;;:::i;:::-;;;18868:135;;;-1:-1:-1;19021:10:0;;19013:55;;;;-1:-1:-1;;;19013:55:0;;7843:2:1;19013:55:0;;;7825:21:1;;;7862:18;;;7855:30;7921:34;7901:18;;;7894:62;7973:18;;19013:55:0;7641:356:1;53615:280:0;53745:4;-1:-1:-1;;;;;;53787:47:0;;-1:-1:-1;;;53787:47:0;;:100;;-1:-1:-1;;;;;;;;;;20072:40:0;;;53851:36;19913:207;38402:589;-1:-1:-1;;;;;38608:18:0;;38604:187;;38643:40;38675:7;39818:10;:17;;39791:24;;;;:15;:24;;;;;:44;;;39846:24;;;;;;;;;;;;39714:164;38643:40;38604:187;;;38713:2;-1:-1:-1;;;;;38705:10:0;:4;-1:-1:-1;;;;;38705:10:0;;38701:90;;38732:47;38765:4;38771:7;38732:32;:47::i;:::-;-1:-1:-1;;;;;38805:16:0;;38801:183;;38838:45;38875:7;38838:36;:45::i;38801:183::-;38911:4;-1:-1:-1;;;;;38905:10:0;:2;-1:-1:-1;;;;;38905:10:0;;38901:83;;38932:40;38960:2;38964:7;38932:27;:40::i;40505:1002::-;40785:22;40835:1;40810:22;40827:4;40810:16;:22::i;:::-;:26;;;;:::i;:::-;40847:18;40868:26;;;:17;:26;;;;;;40785:51;;-1:-1:-1;41001:28:0;;;40997:328;;-1:-1:-1;;;;;41068:18:0;;41046:19;41068:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41119:30;;;;;;:44;;;41236:30;;:17;:30;;;;;:43;;;40997:328;-1:-1:-1;41421:26:0;;;;:17;:26;;;;;;;;41414:33;;;-1:-1:-1;;;;;41465:18:0;;;;;:12;:18;;;;;:34;;;;;;;41458:41;40505:1002::o;41802:1079::-;42080:10;:17;42055:22;;42080:21;;42100:1;;42080:21;:::i;:::-;42112:18;42133:24;;;:15;:24;;;;;;42506:10;:26;;42055:46;;-1:-1:-1;42133:24:0;;42055:46;;42506:26;;;;;;:::i;:::-;;;;;;;;;42484:48;;42570:11;42545:10;42556;42545:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42650:28;;;:15;:28;;;;;;;:41;;;42822:24;;;;;42815:31;42857:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41873:1008;;;41802:1079;:::o;39292:221::-;39377:14;39394:20;39411:2;39394:16;:20::i;:::-;-1:-1:-1;;;;;39425:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39470:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39292:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:524::-;2718:6;2726;2779:2;2767:9;2758:7;2754:23;2750:32;2747:52;;;2795:1;2792;2785:12;2747:52;2818:29;2837:9;2818:29;:::i;:::-;2808:39;;2898:2;2887:9;2883:18;2870:32;2925:18;2917:6;2914:30;2911:50;;;2957:1;2954;2947:12;2911:50;2980:22;;3033:4;3025:13;;3021:27;-1:-1:-1;3011:55:1;;3062:1;3059;3052:12;3011:55;3085:73;3150:7;3145:2;3132:16;3127:2;3123;3119:11;3085:73;:::i;:::-;3075:83;;;2640:524;;;;;:::o;3169:254::-;3237:6;3245;3298:2;3286:9;3277:7;3273:23;3269:32;3266:52;;;3314:1;3311;3304:12;3266:52;3337:29;3356:9;3337:29;:::i;:::-;3327:39;3413:2;3398:18;;;;3385:32;;-1:-1:-1;;;3169:254:1:o;3428:180::-;3487:6;3540:2;3528:9;3519:7;3515:23;3511:32;3508:52;;;3556:1;3553;3546:12;3508:52;-1:-1:-1;3579:23:1;;3428:180;-1:-1:-1;3428:180:1:o;3613:254::-;3681:6;3689;3742:2;3730:9;3721:7;3717:23;3713:32;3710:52;;;3758:1;3755;3748:12;3710:52;3794:9;3781:23;3771:33;;3823:38;3857:2;3846:9;3842:18;3823:38;:::i;3872:248::-;3940:6;3948;4001:2;3989:9;3980:7;3976:23;3972:32;3969:52;;;4017:1;4014;4007:12;3969:52;-1:-1:-1;;4040:23:1;;;4110:2;4095:18;;;4082:32;;-1:-1:-1;3872:248:1:o;4125:245::-;4183:6;4236:2;4224:9;4215:7;4211:23;4207:32;4204:52;;;4252:1;4249;4242:12;4204:52;4291:9;4278:23;4310:30;4334:5;4310:30;:::i;4375:249::-;4444:6;4497:2;4485:9;4476:7;4472:23;4468:32;4465:52;;;4513:1;4510;4503:12;4465:52;4545:9;4539:16;4564:30;4588:5;4564:30;:::i;4814:257::-;4855:3;4893:5;4887:12;4920:6;4915:3;4908:19;4936:63;4992:6;4985:4;4980:3;4976:14;4969:4;4962:5;4958:16;4936:63;:::i;:::-;5053:2;5032:15;-1:-1:-1;;5028:29:1;5019:39;;;;5060:4;5015:50;;4814:257;-1:-1:-1;;4814:257:1:o;5076:470::-;5255:3;5293:6;5287:13;5309:53;5355:6;5350:3;5343:4;5335:6;5331:17;5309:53;:::i;:::-;5425:13;;5384:16;;;;5447:57;5425:13;5384:16;5481:4;5469:17;;5447:57;:::i;:::-;5520:20;;5076:470;-1:-1:-1;;;;5076:470:1:o;5551:786::-;5962:25;5957:3;5950:38;5932:3;6017:6;6011:13;6033:62;6088:6;6083:2;6078:3;6074:12;6067:4;6059:6;6055:17;6033:62;:::i;:::-;-1:-1:-1;;;6154:2:1;6114:16;;;6146:11;;;6139:40;6204:13;;6226:63;6204:13;6275:2;6267:11;;6260:4;6248:17;;6226:63;:::i;:::-;6309:17;6328:2;6305:26;;5551:786;-1:-1:-1;;;;5551:786:1:o;6550:488::-;-1:-1:-1;;;;;6819:15:1;;;6801:34;;6871:15;;6866:2;6851:18;;6844:43;6918:2;6903:18;;6896:34;;;6966:3;6961:2;6946:18;;6939:31;;;6744:4;;6987:45;;7012:19;;7004:6;6987:45;:::i;:::-;6979:53;6550:488;-1:-1:-1;;;;;;6550:488:1:o;7417:219::-;7566:2;7555:9;7548:21;7529:4;7586:44;7626:2;7615:9;7611:18;7603:6;7586:44;:::i;9175:414::-;9377:2;9359:21;;;9416:2;9396:18;;;9389:30;9455:34;9450:2;9435:18;;9428:62;-1:-1:-1;;;9521:2:1;9506:18;;9499:48;9579:3;9564:19;;9175:414::o;15980:413::-;16182:2;16164:21;;;16221:2;16201:18;;;16194:30;16260:34;16255:2;16240:18;;16233:62;-1:-1:-1;;;16326:2:1;16311:18;;16304:47;16383:3;16368:19;;15980:413::o;18689:128::-;18729:3;18760:1;18756:6;18753:1;18750:13;18747:39;;;18766:18;;:::i;:::-;-1:-1:-1;18802:9:1;;18689:128::o;18822:120::-;18862:1;18888;18878:35;;18893:18;;:::i;:::-;-1:-1:-1;18927:9:1;;18822:120::o;18947:168::-;18987:7;19053:1;19049;19045:6;19041:14;19038:1;19035:21;19030:1;19023:9;19016:17;19012:45;19009:71;;;19060:18;;:::i;:::-;-1:-1:-1;19100:9:1;;18947:168::o;19120:125::-;19160:4;19188:1;19185;19182:8;19179:34;;;19193:18;;:::i;:::-;-1:-1:-1;19230:9:1;;19120:125::o;19250:258::-;19322:1;19332:113;19346:6;19343:1;19340:13;19332:113;;;19422:11;;;19416:18;19403:11;;;19396:39;19368:2;19361:10;19332:113;;;19463:6;19460:1;19457:13;19454:48;;;-1:-1:-1;;19498:1:1;19480:16;;19473:27;19250:258::o;19513:136::-;19552:3;19580:5;19570:39;;19589:18;;:::i;:::-;-1:-1:-1;;;19625:18:1;;19513:136::o;19654:380::-;19733:1;19729:12;;;;19776;;;19797:61;;19851:4;19843:6;19839:17;19829:27;;19797:61;19904:2;19896:6;19893:14;19873:18;19870:38;19867:161;;;19950:10;19945:3;19941:20;19938:1;19931:31;19985:4;19982:1;19975:15;20013:4;20010:1;20003:15;19867:161;;19654:380;;;:::o;20039:135::-;20078:3;-1:-1:-1;;20099:17:1;;20096:43;;;20119:18;;:::i;:::-;-1:-1:-1;20166:1:1;20155:13;;20039:135::o;20179:112::-;20211:1;20237;20227:35;;20242:18;;:::i;:::-;-1:-1:-1;20276:9:1;;20179:112::o;20296:127::-;20357:10;20352:3;20348:20;20345:1;20338:31;20388:4;20385:1;20378:15;20412:4;20409:1;20402:15;20428:127;20489:10;20484:3;20480:20;20477:1;20470:31;20520:4;20517:1;20510:15;20544:4;20541:1;20534:15;20560:127;20621:10;20616:3;20612:20;20609:1;20602:31;20652:4;20649:1;20642:15;20676:4;20673:1;20666:15;20692:127;20753:10;20748:3;20744:20;20741:1;20734:31;20784:4;20781:1;20774:15;20808:4;20805:1;20798:15;20824:127;20885:10;20880:3;20876:20;20873:1;20866:31;20916:4;20913:1;20906:15;20940:4;20937:1;20930:15;20956:131;-1:-1:-1;;;;;;21030:32:1;;21020:43;;21010:71;;21077:1;21074;21067:12
Swarm Source
ipfs://877613c183fc65d38c067b56d1ca66ff1d7a60a0c4f812b43ea37803b1e709a0
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.