ERC-721
Overview
Max Total Supply
108 TripRoom
Holders
41
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TripRoomLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TripRoom
Compiler Version
v0.8.2+commit.661d1103
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-06 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.2; /** * @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); } /** * @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; } /** * @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); } /** * @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; } } /** * @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); } /** * @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); } /** * @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); } } } } /** * @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; } } /** * @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); } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @dev 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(); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } abstract contract baggie { function ownerOfToken(uint256 tokenId) public view virtual returns (address); function burnFromTripRoom(uint256 baggieID) external virtual; } contract TripRoom is ERC721, Ownable, ERC721Enumerable, ReentrancyGuard { using Strings for uint256; uint256 public NFT_MINTED; string private baseURI; bool public mintEnable; baggie public immutable Baggie = baggie(0x706fbC8b9523121953d0A91022F92660599bDf13); mapping(uint256 => address) public allowedList; mapping(address => uint256[]) TripRoomAllList; constructor() ERC721('TripRoom', 'TripRoom') {} function mintNFT(uint256 tokenID, uint256 baggieID) public nonReentrant{ require( mintEnable, "TripRoom: mint is not enable" ); require( Baggie.ownerOfToken(baggieID) == msg.sender, "TripRoom: Incorrect owner" ); require( !_exists(tokenID), "TripRoom: token already exists" ); require( allowedList[tokenID] == msg.sender, "TripRoom: minter is not allowed to mint this nft" ); _safeMint(msg.sender, tokenID); Baggie.burnFromTripRoom(baggieID); NFT_MINTED++; for (uint256 i = 0; i < TripRoomAllList[msg.sender].length; i++) { if (TripRoomAllList[msg.sender][i] == tokenID) { TripRoomAllList[msg.sender][i] = TripRoomAllList[msg.sender][TripRoomAllList[msg.sender].length - 1]; TripRoomAllList[msg.sender].pop(); break; } } } function setWhiteListAddress(address[] calldata addresses, uint256[] calldata tokenID) external onlyOwner { require( addresses.length == tokenID.length, "TripRoom: Length mismatch" ); for (uint256 i = 0; i < addresses.length; i++) { require( !_exists(tokenID[i]), "The TripRoom: token already exists" ); require( allowedList[tokenID[i]] != addresses[i], "The TripRoom: token already assign to this address" ); if(allowedList[tokenID[i]] != address(0)) { removeWhiteListAddress(allowedList[tokenID[i]], tokenID[i]); } allowedList[tokenID[i]] = addresses[i]; TripRoomAllList[addresses[i]].push(tokenID[i]); } } function removeWhiteListAddress(address addresses, uint256 tokenID) internal{ for (uint256 i = 0; i < TripRoomAllList[addresses].length; i++) { if (TripRoomAllList[addresses][i] == tokenID) { TripRoomAllList[addresses][i] = TripRoomAllList[addresses][TripRoomAllList[addresses].length - 1]; TripRoomAllList[addresses].pop(); break; } } } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable){ super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json")); } function setURI(string memory _URI) external onlyOwner { baseURI = _URI; } function withdraw() external onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function setMintingStatus(bool status) public onlyOwner { require(mintEnable != status); mintEnable = status; } function getAllowedList(address _address) public view returns (uint256[] memory) { return TripRoomAllList[_address]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Baggie","outputs":[{"internalType":"contract baggie","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowedList","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"_address","type":"address"}],"name":"getAllowedList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"baggieID","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setMintingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"tokenID","type":"uint256[]"}],"name":"setWhiteListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040527f706fbc8b9523121953d0a91022f92660599bdf130000000000000000000000006080523480156200003557600080fd5b5060408051808201825260088082526754726970526f6f6d60c01b60208084018281528551808701909652928552840152815191929162000079916000916200010d565b5080516200008f9060019060208401906200010d565b505050620000ac620000a6620000b760201b60201c565b620000bb565b6001600b55620001f0565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011b90620001b3565b90600052602060002090601f0160209004810192826200013f57600085556200018a565b82601f106200015a57805160ff19168380011785556200018a565b828001600101855582156200018a579182015b828111156200018a5782518255916020019190600101906200016d565b50620001989291506200019c565b5090565b5b808211156200019857600081556001016200019d565b600281046001821680620001c857607f821691505b60208210811415620001ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c6129366200021d600039600081816102a101528181610fc7015261118c01526129366000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a22cb465116100a2578063c48283ff11610071578063c48283ff146103e3578063c87b56dd146103f6578063e985e9c514610409578063f2fde38b14610445576101cf565b8063a22cb46514610387578063a43d51b21461039a578063b88d4fde146103c3578063c1e1ce29146103d6576101cf565b80638da5cb5b116100de5780638da5cb5b1461033b5780638ff84dd21461034c57806395d89b411461035f57806399b5afcb14610367576101cf565b806370a082311461030d578063715018a6146103205780637420aa3614610328576101cf565b80632f745c591161017157806342842e0e1161014b57806342842e0e146102cb5780634f6ccce7146102de5780635658e02f146102f15780636352211e146102fa576101cf565b80632f745c59146102895780633cb347cb1461029c5780633ccfd60b146102c3576101cf565b8063081812fc116101ad578063081812fc14610226578063095ea7b31461025157806318160ddd1461026457806323b872dd14610276576101cf565b806301ffc9a7146101d457806302fe5305146101fc57806306fdde0314610211575b600080fd5b6101e76101e2366004612495565b610458565b60405190151581526020015b60405180910390f35b61020f61020a3660046124cd565b61046b565b005b6102196104b5565b6040516101f391906126cf565b610239610234366004612513565b610547565b6040516001600160a01b0390911681526020016101f3565b61020f61025f3660046123e7565b6105cf565b6009545b6040519081526020016101f3565b61020f6102843660046122f6565b6106e5565b6102686102973660046123e7565b610716565b6102397f000000000000000000000000000000000000000000000000000000000000000081565b61020f6107ac565b61020f6102d93660046122f6565b6107fc565b6102686102ec366004612513565b610817565b610268600c5481565b610239610308366004612513565b6108b8565b61026861031b36600461227f565b61092f565b61020f6109b6565b61020f61033636600461247b565b6109ea565b6006546001600160a01b0316610239565b61020f61035a366004612412565b610a3d565b610219610e3f565b61037a61037536600461227f565b610e4e565b6040516101f3919061268b565b61020f6103953660046123b3565b610eba565b6102396103a8366004612513565b600f602052600090815260409020546001600160a01b031681565b61020f6103d1366004612336565b610ec5565b600e546101e79060ff1681565b61020f6103f136600461252b565b610efd565b610219610404366004612513565b61134a565b6101e76104173660046122be565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020f61045336600461227f565b6113eb565b600061046382611486565b90505b919050565b6006546001600160a01b0316331461049e5760405162461bcd60e51b815260040161049590612734565b60405180910390fd5b80516104b190600d906020840190612117565b5050565b6060600080546104c490612829565b80601f01602080910402602001604051908101604052809291908181526020018280546104f090612829565b801561053d5780601f106105125761010080835404028352916020019161053d565b820191906000526020600020905b81548152906001019060200180831161052057829003601f168201915b5050505050905090565b6000610552826114ab565b6105b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610495565b506000908152600460205260409020546001600160a01b031690565b60006105da826108b8565b9050806001600160a01b0316836001600160a01b031614156106485760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610495565b336001600160a01b038216148061066457506106648133610417565b6106d65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610495565b6106e083836114c8565b505050565b6106ef3382611536565b61070b5760405162461bcd60e51b815260040161049590612769565b6106e0838383611620565b60006107218361092f565b82106107835760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610495565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6006546001600160a01b031633146107d65760405162461bcd60e51b815260040161049590612734565b60405133904780156108fc02916000818181858888f193505050506107fa57600080fd5b565b6106e083838360405180602001604052806000815250610ec5565b600061082260095490565b82106108855760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610495565b600982815481106108a657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610495565b60006001600160a01b03821661099a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610495565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109e05760405162461bcd60e51b815260040161049590612734565b6107fa60006117cb565b6006546001600160a01b03163314610a145760405162461bcd60e51b815260040161049590612734565b600e5460ff1615158115151415610a2a57600080fd5b600e805460ff1916911515919091179055565b6006546001600160a01b03163314610a675760405162461bcd60e51b815260040161049590612734565b828114610ab65760405162461bcd60e51b815260206004820152601960248201527f54726970526f6f6d3a204c656e677468206d69736d61746368000000000000006044820152606401610495565b60005b83811015610e3857610af0838383818110610ae457634e487b7160e01b600052603260045260246000fd5b905060200201356114ab565b15610b485760405162461bcd60e51b815260206004820152602260248201527f5468652054726970526f6f6d3a20746f6b656e20616c72656164792065786973604482015261747360f01b6064820152608401610495565b848482818110610b6857634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b7d919061227f565b6001600160a01b0316600f6000858585818110610baa57634e487b7160e01b600052603260045260246000fd5b60209081029290920135835250810191909152604001600020546001600160a01b03161415610c365760405162461bcd60e51b815260206004820152603260248201527f5468652054726970526f6f6d3a20746f6b656e20616c72656164792061737369604482015271676e20746f2074686973206164647265737360701b6064820152608401610495565b6000600f81858585818110610c5b57634e487b7160e01b600052603260045260246000fd5b60209081029290920135835250810191909152604001600020546001600160a01b031614610cf957610cf9600f6000858585818110610caa57634e487b7160e01b600052603260045260246000fd5b60209081029290920135835250810191909152604001600020546001600160a01b0316848484818110610ced57634e487b7160e01b600052603260045260246000fd5b9050602002013561181d565b848482818110610d1957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d2e919061227f565b600f6000858585818110610d5257634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060106000868684818110610daf57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610dc4919061227f565b6001600160a01b03166001600160a01b03168152602001908152602001600020838383818110610e0457634e487b7160e01b600052603260045260246000fd5b8354600181018555600094855260209485902091909402929092013591909201555080610e3081612864565b915050610ab9565b5050505050565b6060600180546104c490612829565b6001600160a01b038116600090815260106020908152604091829020805483518184028101840190945280845260609392830182828015610eae57602002820191906000526020600020905b815481526020019060010190808311610e9a575b50505050509050919050565b6104b133838361198f565b610ecf3383611536565b610eeb5760405162461bcd60e51b815260040161049590612769565b610ef784848484611a5e565b50505050565b6002600b541415610f505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610495565b6002600b55600e5460ff16610fa75760405162461bcd60e51b815260206004820152601c60248201527f54726970526f6f6d3a206d696e74206973206e6f7420656e61626c65000000006044820152606401610495565b6040516362bd62eb60e11b81526004810182905233906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c57ac5d69060240160206040518083038186803b15801561100957600080fd5b505afa15801561101d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104191906122a2565b6001600160a01b0316146110975760405162461bcd60e51b815260206004820152601960248201527f54726970526f6f6d3a20496e636f7272656374206f776e6572000000000000006044820152606401610495565b6110a0826114ab565b156110ed5760405162461bcd60e51b815260206004820152601e60248201527f54726970526f6f6d3a20746f6b656e20616c72656164792065786973747300006044820152606401610495565b6000828152600f60205260409020546001600160a01b0316331461116c5760405162461bcd60e51b815260206004820152603060248201527f54726970526f6f6d3a206d696e746572206973206e6f7420616c6c6f7765642060448201526f1d1bc81b5a5b9d081d1a1a5cc81b999d60821b6064820152608401610495565b6111763383611a91565b604051632b685b3560e01b8152600481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632b685b3590602401600060405180830381600087803b1580156111d857600080fd5b505af11580156111ec573d6000803e3d6000fd5b5050600c805492509050600061120183612864565b919050555060005b336000908152601060205260409020548110156113405733600090815260106020526040902080548491908390811061125257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154141561132e573360009081526010602052604090208054611280906001906127e6565b8154811061129e57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910154338352601090915260409091208054839081106112d957634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925533815260109091526040902080548061131357634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055611340565b8061133881612864565b915050611209565b50506001600b5550565b6060611355826114ab565b6113b95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610495565b600d6113c483611aab565b6040516020016113d5929190612594565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146114155760405162461bcd60e51b815260040161049590612734565b6001600160a01b03811661147a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610495565b611483816117cb565b50565b60006001600160e01b0319821663780e9d6360e01b1480610463575061046382611bc6565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114fd826108b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611541826114ab565b6115a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610495565b60006115ad836108b8565b9050806001600160a01b0316846001600160a01b031614806115e85750836001600160a01b03166115dd84610547565b6001600160a01b0316145b8061161857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611633826108b8565b6001600160a01b03161461169b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610495565b6001600160a01b0382166116fd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610495565b611708838383611c16565b6117136000826114c8565b6001600160a01b038316600090815260036020526040812080546001929061173c9084906127e6565b90915550506001600160a01b038216600090815260036020526040812080546001929061176a9084906127ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b6001600160a01b0383166000908152601060205260409020548110156106e0576001600160a01b038316600090815260106020526040902080548391908390811061187b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154141561197d576001600160a01b038316600090815260106020526040902080546118b2906001906127e6565b815481106118d057634e487b7160e01b600052603260045260246000fd5b906000526020600020015460106000856001600160a01b03166001600160a01b03168152602001908152602001600020828154811061191f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092556001600160a01b038516815260109091526040902080548061196257634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590556106e0565b8061198781612864565b915050611820565b816001600160a01b0316836001600160a01b031614156119f15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610495565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a69848484611620565b611a7584848484611c21565b610ef75760405162461bcd60e51b8152600401610495906126e2565b6104b1828260405180602001604052806000815250611d2e565b606081611ad057506040805180820190915260018152600360fc1b6020820152610466565b8160005b8115611afa5780611ae481612864565b9150611af39050600a836127d2565b9150611ad4565b60008167ffffffffffffffff811115611b2357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b4d576020820181803683370190505b5090505b841561161857611b626001836127e6565b9150611b6f600a8661287f565b611b7a9060306127ba565b60f81b818381518110611b9d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611bbf600a866127d2565b9450611b51565b60006001600160e01b031982166380ac58cd60e01b1480611bf757506001600160e01b03198216635b5e139f60e01b145b8061046357506301ffc9a760e01b6001600160e01b0319831614610463565b6106e0838383611d61565b60006001600160a01b0384163b15611d2357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c6590339089908890889060040161264e565b602060405180830381600087803b158015611c7f57600080fd5b505af1925050508015611caf575060408051601f3d908101601f19168201909252611cac918101906124b1565b60015b611d09573d808015611cdd576040519150601f19603f3d011682016040523d82523d6000602084013e611ce2565b606091505b508051611d015760405162461bcd60e51b8152600401610495906126e2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611618565b506001949350505050565b611d388383611e1e565b611d456000848484611c21565b6106e05760405162461bcd60e51b8152600401610495906126e2565b6001600160a01b038316611dbc57611db781600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611ddf565b816001600160a01b0316836001600160a01b031614611ddf57611ddf8382611f5d565b6001600160a01b038216611dfb57611df681611ffa565b6106e0565b826001600160a01b0316826001600160a01b0316146106e0576106e082826120d3565b6001600160a01b038216611e745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610495565b611e7d816114ab565b15611eca5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610495565b611ed660008383611c16565b6001600160a01b0382166000908152600360205260408120805460019290611eff9084906127ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611f6a8461092f565b611f7491906127e6565b600083815260086020526040902054909150808214611fc7576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061200c906001906127e6565b6000838152600a60205260408120546009805493945090928490811061204257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061207157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806120b757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120de8361092f565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461212390612829565b90600052602060002090601f016020900481019282612145576000855561218b565b82601f1061215e57805160ff191683800117855561218b565b8280016001018555821561218b579182015b8281111561218b578251825591602001919060010190612170565b5061219792915061219b565b5090565b5b80821115612197576000815560010161219c565b600067ffffffffffffffff808411156121cb576121cb6128bf565b604051601f8501601f19908116603f011681019082821181831017156121f3576121f36128bf565b8160405280935085815286868601111561220c57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112612237578182fd5b50813567ffffffffffffffff81111561224e578182fd5b602083019150836020808302850101111561226857600080fd5b9250929050565b8035801515811461046657600080fd5b600060208284031215612290578081fd5b813561229b816128d5565b9392505050565b6000602082840312156122b3578081fd5b815161229b816128d5565b600080604083850312156122d0578081fd5b82356122db816128d5565b915060208301356122eb816128d5565b809150509250929050565b60008060006060848603121561230a578081fd5b8335612315816128d5565b92506020840135612325816128d5565b929592945050506040919091013590565b6000806000806080858703121561234b578081fd5b8435612356816128d5565b93506020850135612366816128d5565b925060408501359150606085013567ffffffffffffffff811115612388578182fd5b8501601f81018713612398578182fd5b6123a7878235602084016121b0565b91505092959194509250565b600080604083850312156123c5578182fd5b82356123d0816128d5565b91506123de6020840161226f565b90509250929050565b600080604083850312156123f9578182fd5b8235612404816128d5565b946020939093013593505050565b60008060008060408587031215612427578384fd5b843567ffffffffffffffff8082111561243e578586fd5b61244a88838901612226565b90965094506020870135915080821115612462578384fd5b5061246f87828801612226565b95989497509550505050565b60006020828403121561248c578081fd5b61229b8261226f565b6000602082840312156124a6578081fd5b813561229b816128ea565b6000602082840312156124c2578081fd5b815161229b816128ea565b6000602082840312156124de578081fd5b813567ffffffffffffffff8111156124f4578182fd5b8201601f81018413612504578182fd5b611618848235602084016121b0565b600060208284031215612524578081fd5b5035919050565b6000806040838503121561253d578182fd5b50508035926020909101359150565b600081518084526125648160208601602086016127fd565b601f01601f19169290920160200192915050565b6000815161258a8185602086016127fd565b9290920192915050565b82546000908190600281046001808316806125b057607f831692505b60208084108214156125d057634e487b7160e01b87526022600452602487fd5b8180156125e457600181146125f557612621565b60ff19861689528489019650612621565b60008b815260209020885b868110156126195781548b820152908501908301612600565b505084890196505b5050505050506126456126348286612578565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126819083018461254c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126c3578351835292840192918401916001016126a7565b50909695505050505050565b60006020825261229b602083018461254c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127cd576127cd612893565b500190565b6000826127e1576127e16128a9565b500490565b6000828210156127f8576127f8612893565b500390565b60005b83811015612818578181015183820152602001612800565b83811115610ef75750506000910152565b60028104600182168061283d57607f821691505b6020821081141561285e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561287857612878612893565b5060010190565b60008261288e5761288e6128a9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461148357600080fd5b6001600160e01b03198116811461148357600080fdfea2646970667358221220cfc5bb588d8db9ba4cd959784e9a0ba0ca17bd49efe17297124e73801737381164736f6c63430008020033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a22cb465116100a2578063c48283ff11610071578063c48283ff146103e3578063c87b56dd146103f6578063e985e9c514610409578063f2fde38b14610445576101cf565b8063a22cb46514610387578063a43d51b21461039a578063b88d4fde146103c3578063c1e1ce29146103d6576101cf565b80638da5cb5b116100de5780638da5cb5b1461033b5780638ff84dd21461034c57806395d89b411461035f57806399b5afcb14610367576101cf565b806370a082311461030d578063715018a6146103205780637420aa3614610328576101cf565b80632f745c591161017157806342842e0e1161014b57806342842e0e146102cb5780634f6ccce7146102de5780635658e02f146102f15780636352211e146102fa576101cf565b80632f745c59146102895780633cb347cb1461029c5780633ccfd60b146102c3576101cf565b8063081812fc116101ad578063081812fc14610226578063095ea7b31461025157806318160ddd1461026457806323b872dd14610276576101cf565b806301ffc9a7146101d457806302fe5305146101fc57806306fdde0314610211575b600080fd5b6101e76101e2366004612495565b610458565b60405190151581526020015b60405180910390f35b61020f61020a3660046124cd565b61046b565b005b6102196104b5565b6040516101f391906126cf565b610239610234366004612513565b610547565b6040516001600160a01b0390911681526020016101f3565b61020f61025f3660046123e7565b6105cf565b6009545b6040519081526020016101f3565b61020f6102843660046122f6565b6106e5565b6102686102973660046123e7565b610716565b6102397f000000000000000000000000706fbc8b9523121953d0a91022f92660599bdf1381565b61020f6107ac565b61020f6102d93660046122f6565b6107fc565b6102686102ec366004612513565b610817565b610268600c5481565b610239610308366004612513565b6108b8565b61026861031b36600461227f565b61092f565b61020f6109b6565b61020f61033636600461247b565b6109ea565b6006546001600160a01b0316610239565b61020f61035a366004612412565b610a3d565b610219610e3f565b61037a61037536600461227f565b610e4e565b6040516101f3919061268b565b61020f6103953660046123b3565b610eba565b6102396103a8366004612513565b600f602052600090815260409020546001600160a01b031681565b61020f6103d1366004612336565b610ec5565b600e546101e79060ff1681565b61020f6103f136600461252b565b610efd565b610219610404366004612513565b61134a565b6101e76104173660046122be565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020f61045336600461227f565b6113eb565b600061046382611486565b90505b919050565b6006546001600160a01b0316331461049e5760405162461bcd60e51b815260040161049590612734565b60405180910390fd5b80516104b190600d906020840190612117565b5050565b6060600080546104c490612829565b80601f01602080910402602001604051908101604052809291908181526020018280546104f090612829565b801561053d5780601f106105125761010080835404028352916020019161053d565b820191906000526020600020905b81548152906001019060200180831161052057829003601f168201915b5050505050905090565b6000610552826114ab565b6105b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610495565b506000908152600460205260409020546001600160a01b031690565b60006105da826108b8565b9050806001600160a01b0316836001600160a01b031614156106485760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610495565b336001600160a01b038216148061066457506106648133610417565b6106d65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610495565b6106e083836114c8565b505050565b6106ef3382611536565b61070b5760405162461bcd60e51b815260040161049590612769565b6106e0838383611620565b60006107218361092f565b82106107835760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610495565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6006546001600160a01b031633146107d65760405162461bcd60e51b815260040161049590612734565b60405133904780156108fc02916000818181858888f193505050506107fa57600080fd5b565b6106e083838360405180602001604052806000815250610ec5565b600061082260095490565b82106108855760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610495565b600982815481106108a657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610495565b60006001600160a01b03821661099a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610495565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109e05760405162461bcd60e51b815260040161049590612734565b6107fa60006117cb565b6006546001600160a01b03163314610a145760405162461bcd60e51b815260040161049590612734565b600e5460ff1615158115151415610a2a57600080fd5b600e805460ff1916911515919091179055565b6006546001600160a01b03163314610a675760405162461bcd60e51b815260040161049590612734565b828114610ab65760405162461bcd60e51b815260206004820152601960248201527f54726970526f6f6d3a204c656e677468206d69736d61746368000000000000006044820152606401610495565b60005b83811015610e3857610af0838383818110610ae457634e487b7160e01b600052603260045260246000fd5b905060200201356114ab565b15610b485760405162461bcd60e51b815260206004820152602260248201527f5468652054726970526f6f6d3a20746f6b656e20616c72656164792065786973604482015261747360f01b6064820152608401610495565b848482818110610b6857634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b7d919061227f565b6001600160a01b0316600f6000858585818110610baa57634e487b7160e01b600052603260045260246000fd5b60209081029290920135835250810191909152604001600020546001600160a01b03161415610c365760405162461bcd60e51b815260206004820152603260248201527f5468652054726970526f6f6d3a20746f6b656e20616c72656164792061737369604482015271676e20746f2074686973206164647265737360701b6064820152608401610495565b6000600f81858585818110610c5b57634e487b7160e01b600052603260045260246000fd5b60209081029290920135835250810191909152604001600020546001600160a01b031614610cf957610cf9600f6000858585818110610caa57634e487b7160e01b600052603260045260246000fd5b60209081029290920135835250810191909152604001600020546001600160a01b0316848484818110610ced57634e487b7160e01b600052603260045260246000fd5b9050602002013561181d565b848482818110610d1957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d2e919061227f565b600f6000858585818110610d5257634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060106000868684818110610daf57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610dc4919061227f565b6001600160a01b03166001600160a01b03168152602001908152602001600020838383818110610e0457634e487b7160e01b600052603260045260246000fd5b8354600181018555600094855260209485902091909402929092013591909201555080610e3081612864565b915050610ab9565b5050505050565b6060600180546104c490612829565b6001600160a01b038116600090815260106020908152604091829020805483518184028101840190945280845260609392830182828015610eae57602002820191906000526020600020905b815481526020019060010190808311610e9a575b50505050509050919050565b6104b133838361198f565b610ecf3383611536565b610eeb5760405162461bcd60e51b815260040161049590612769565b610ef784848484611a5e565b50505050565b6002600b541415610f505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610495565b6002600b55600e5460ff16610fa75760405162461bcd60e51b815260206004820152601c60248201527f54726970526f6f6d3a206d696e74206973206e6f7420656e61626c65000000006044820152606401610495565b6040516362bd62eb60e11b81526004810182905233906001600160a01b037f000000000000000000000000706fbc8b9523121953d0a91022f92660599bdf13169063c57ac5d69060240160206040518083038186803b15801561100957600080fd5b505afa15801561101d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104191906122a2565b6001600160a01b0316146110975760405162461bcd60e51b815260206004820152601960248201527f54726970526f6f6d3a20496e636f7272656374206f776e6572000000000000006044820152606401610495565b6110a0826114ab565b156110ed5760405162461bcd60e51b815260206004820152601e60248201527f54726970526f6f6d3a20746f6b656e20616c72656164792065786973747300006044820152606401610495565b6000828152600f60205260409020546001600160a01b0316331461116c5760405162461bcd60e51b815260206004820152603060248201527f54726970526f6f6d3a206d696e746572206973206e6f7420616c6c6f7765642060448201526f1d1bc81b5a5b9d081d1a1a5cc81b999d60821b6064820152608401610495565b6111763383611a91565b604051632b685b3560e01b8152600481018290527f000000000000000000000000706fbc8b9523121953d0a91022f92660599bdf136001600160a01b031690632b685b3590602401600060405180830381600087803b1580156111d857600080fd5b505af11580156111ec573d6000803e3d6000fd5b5050600c805492509050600061120183612864565b919050555060005b336000908152601060205260409020548110156113405733600090815260106020526040902080548491908390811061125257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154141561132e573360009081526010602052604090208054611280906001906127e6565b8154811061129e57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910154338352601090915260409091208054839081106112d957634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925533815260109091526040902080548061131357634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055611340565b8061133881612864565b915050611209565b50506001600b5550565b6060611355826114ab565b6113b95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610495565b600d6113c483611aab565b6040516020016113d5929190612594565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146114155760405162461bcd60e51b815260040161049590612734565b6001600160a01b03811661147a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610495565b611483816117cb565b50565b60006001600160e01b0319821663780e9d6360e01b1480610463575061046382611bc6565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114fd826108b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611541826114ab565b6115a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610495565b60006115ad836108b8565b9050806001600160a01b0316846001600160a01b031614806115e85750836001600160a01b03166115dd84610547565b6001600160a01b0316145b8061161857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611633826108b8565b6001600160a01b03161461169b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610495565b6001600160a01b0382166116fd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610495565b611708838383611c16565b6117136000826114c8565b6001600160a01b038316600090815260036020526040812080546001929061173c9084906127e6565b90915550506001600160a01b038216600090815260036020526040812080546001929061176a9084906127ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b6001600160a01b0383166000908152601060205260409020548110156106e0576001600160a01b038316600090815260106020526040902080548391908390811061187b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154141561197d576001600160a01b038316600090815260106020526040902080546118b2906001906127e6565b815481106118d057634e487b7160e01b600052603260045260246000fd5b906000526020600020015460106000856001600160a01b03166001600160a01b03168152602001908152602001600020828154811061191f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092556001600160a01b038516815260109091526040902080548061196257634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590556106e0565b8061198781612864565b915050611820565b816001600160a01b0316836001600160a01b031614156119f15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610495565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a69848484611620565b611a7584848484611c21565b610ef75760405162461bcd60e51b8152600401610495906126e2565b6104b1828260405180602001604052806000815250611d2e565b606081611ad057506040805180820190915260018152600360fc1b6020820152610466565b8160005b8115611afa5780611ae481612864565b9150611af39050600a836127d2565b9150611ad4565b60008167ffffffffffffffff811115611b2357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b4d576020820181803683370190505b5090505b841561161857611b626001836127e6565b9150611b6f600a8661287f565b611b7a9060306127ba565b60f81b818381518110611b9d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611bbf600a866127d2565b9450611b51565b60006001600160e01b031982166380ac58cd60e01b1480611bf757506001600160e01b03198216635b5e139f60e01b145b8061046357506301ffc9a760e01b6001600160e01b0319831614610463565b6106e0838383611d61565b60006001600160a01b0384163b15611d2357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c6590339089908890889060040161264e565b602060405180830381600087803b158015611c7f57600080fd5b505af1925050508015611caf575060408051601f3d908101601f19168201909252611cac918101906124b1565b60015b611d09573d808015611cdd576040519150601f19603f3d011682016040523d82523d6000602084013e611ce2565b606091505b508051611d015760405162461bcd60e51b8152600401610495906126e2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611618565b506001949350505050565b611d388383611e1e565b611d456000848484611c21565b6106e05760405162461bcd60e51b8152600401610495906126e2565b6001600160a01b038316611dbc57611db781600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611ddf565b816001600160a01b0316836001600160a01b031614611ddf57611ddf8382611f5d565b6001600160a01b038216611dfb57611df681611ffa565b6106e0565b826001600160a01b0316826001600160a01b0316146106e0576106e082826120d3565b6001600160a01b038216611e745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610495565b611e7d816114ab565b15611eca5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610495565b611ed660008383611c16565b6001600160a01b0382166000908152600360205260408120805460019290611eff9084906127ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611f6a8461092f565b611f7491906127e6565b600083815260086020526040902054909150808214611fc7576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061200c906001906127e6565b6000838152600a60205260408120546009805493945090928490811061204257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061207157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806120b757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120de8361092f565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461212390612829565b90600052602060002090601f016020900481019282612145576000855561218b565b82601f1061215e57805160ff191683800117855561218b565b8280016001018555821561218b579182015b8281111561218b578251825591602001919060010190612170565b5061219792915061219b565b5090565b5b80821115612197576000815560010161219c565b600067ffffffffffffffff808411156121cb576121cb6128bf565b604051601f8501601f19908116603f011681019082821181831017156121f3576121f36128bf565b8160405280935085815286868601111561220c57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112612237578182fd5b50813567ffffffffffffffff81111561224e578182fd5b602083019150836020808302850101111561226857600080fd5b9250929050565b8035801515811461046657600080fd5b600060208284031215612290578081fd5b813561229b816128d5565b9392505050565b6000602082840312156122b3578081fd5b815161229b816128d5565b600080604083850312156122d0578081fd5b82356122db816128d5565b915060208301356122eb816128d5565b809150509250929050565b60008060006060848603121561230a578081fd5b8335612315816128d5565b92506020840135612325816128d5565b929592945050506040919091013590565b6000806000806080858703121561234b578081fd5b8435612356816128d5565b93506020850135612366816128d5565b925060408501359150606085013567ffffffffffffffff811115612388578182fd5b8501601f81018713612398578182fd5b6123a7878235602084016121b0565b91505092959194509250565b600080604083850312156123c5578182fd5b82356123d0816128d5565b91506123de6020840161226f565b90509250929050565b600080604083850312156123f9578182fd5b8235612404816128d5565b946020939093013593505050565b60008060008060408587031215612427578384fd5b843567ffffffffffffffff8082111561243e578586fd5b61244a88838901612226565b90965094506020870135915080821115612462578384fd5b5061246f87828801612226565b95989497509550505050565b60006020828403121561248c578081fd5b61229b8261226f565b6000602082840312156124a6578081fd5b813561229b816128ea565b6000602082840312156124c2578081fd5b815161229b816128ea565b6000602082840312156124de578081fd5b813567ffffffffffffffff8111156124f4578182fd5b8201601f81018413612504578182fd5b611618848235602084016121b0565b600060208284031215612524578081fd5b5035919050565b6000806040838503121561253d578182fd5b50508035926020909101359150565b600081518084526125648160208601602086016127fd565b601f01601f19169290920160200192915050565b6000815161258a8185602086016127fd565b9290920192915050565b82546000908190600281046001808316806125b057607f831692505b60208084108214156125d057634e487b7160e01b87526022600452602487fd5b8180156125e457600181146125f557612621565b60ff19861689528489019650612621565b60008b815260209020885b868110156126195781548b820152908501908301612600565b505084890196505b5050505050506126456126348286612578565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126819083018461254c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126c3578351835292840192918401916001016126a7565b50909695505050505050565b60006020825261229b602083018461254c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127cd576127cd612893565b500190565b6000826127e1576127e16128a9565b500490565b6000828210156127f8576127f8612893565b500390565b60005b83811015612818578181015183820152602001612800565b83811115610ef75750506000910152565b60028104600182168061283d57607f821691505b6020821081141561285e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561287857612878612893565b5060010190565b60008261288e5761288e6128a9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461148357600080fd5b6001600160e01b03198116811461148357600080fdfea2646970667358221220cfc5bb588d8db9ba4cd959784e9a0ba0ca17bd49efe17297124e73801737381164736f6c63430008020033
Deployed Bytecode Sourcemap
45284:3655:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48001:171;;;;;;:::i;:::-;;:::i;:::-;;;9964:14:1;;9957:22;9939:41;;9927:2;9912:18;48001:171:0;;;;;;;;48456:88;;;;;;:::i;:::-;;:::i;:::-;;24049:100;;;:::i;:::-;;;;;;;:::i;25608:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8622:32:1;;;8604:51;;8592:2;8577:18;25608:221:0;8559:102:1;25131:411:0;;;;;;:::i;:::-;;:::i;36998:113::-;37086:10;:17;36998:113;;;20814:25:1;;;20802:2;20787:18;36998:113:0;20769:76:1;26358:339:0;;;;;;:::i;:::-;;:::i;36666:256::-;;;;;;:::i;:::-;;:::i;45485:83::-;;;;;48550:114;;;:::i;26768:185::-;;;;;;:::i;:::-;;:::i;37188:233::-;;;;;;:::i;:::-;;:::i;45395:25::-;;;;;;23743:239;;;;;;:::i;:::-;;:::i;23473:208::-;;;;;;:::i;:::-;;:::i;21060:103::-;;;:::i;48670:128::-;;;;;;:::i;:::-;;:::i;20409:87::-;20482:6;;-1:-1:-1;;;;;20482:6:0;20409:87;;46662:706;;;;;;:::i;:::-;;:::i;24218:104::-;;;:::i;48804:132::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25901:155::-;;;;;;:::i;:::-;;:::i;45575:46::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;45575:46:0;;;27024:328;;;;;;:::i;:::-;;:::i;45456:22::-;;;;;;;;;45732:924;;;;;;:::i;:::-;;:::i;48181:266::-;;;;;;:::i;:::-;;:::i;26127:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26248:25:0;;;26224:4;26248:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26127:164;21318:201;;;;;;:::i;:::-;;:::i;48001:171::-;48104:4;48128:36;48152:11;48128:23;:36::i;:::-;48121:43;;48001:171;;;;:::o;48456:88::-;20482:6;;-1:-1:-1;;;;;20482:6:0;17371:10;20629:23;20621:68;;;;-1:-1:-1;;;20621:68:0;;;;;;;:::i;:::-;;;;;;;;;48522:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48456:88:::0;:::o;24049:100::-;24103:13;24136:5;24129:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24049:100;:::o;25608:221::-;25684:7;25712:16;25720:7;25712;:16::i;:::-;25704:73;;;;-1:-1:-1;;;25704:73:0;;16561:2:1;25704:73:0;;;16543:21:1;16600:2;16580:18;;;16573:30;16639:34;16619:18;;;16612:62;-1:-1:-1;;;16690:18:1;;;16683:42;16742:19;;25704:73:0;16533:234:1;25704:73:0;-1:-1:-1;25797:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25797:24:0;;25608:221::o;25131:411::-;25212:13;25228:23;25243:7;25228:14;:23::i;:::-;25212:39;;25276:5;-1:-1:-1;;;;;25270:11:0;:2;-1:-1:-1;;;;;25270:11:0;;;25262:57;;;;-1:-1:-1;;;25262:57:0;;18161:2:1;25262:57:0;;;18143:21:1;18200:2;18180:18;;;18173:30;18239:34;18219:18;;;18212:62;-1:-1:-1;;;18290:18:1;;;18283:31;18331:19;;25262:57:0;18133:223:1;25262:57:0;17371:10;-1:-1:-1;;;;;25354:21:0;;;;:62;;-1:-1:-1;25379:37:0;25396:5;17371:10;25403:12;17291:98;25379:37;25332:168;;;;-1:-1:-1;;;25332:168:0;;14600:2:1;25332:168:0;;;14582:21:1;14639:2;14619:18;;;14612:30;14678:34;14658:18;;;14651:62;14749:26;14729:18;;;14722:54;14793:19;;25332:168:0;14572:246:1;25332:168:0;25513:21;25522:2;25526:7;25513:8;:21::i;:::-;25131:411;;;:::o;26358:339::-;26553:41;17371:10;26586:7;26553:18;:41::i;:::-;26545:103;;;;-1:-1:-1;;;26545:103:0;;;;;;;:::i;:::-;26661:28;26671:4;26677:2;26681:7;26661:9;:28::i;36666:256::-;36763:7;36799:23;36816:5;36799:16;:23::i;:::-;36791:5;:31;36783:87;;;;-1:-1:-1;;;36783:87:0;;10640:2:1;36783:87:0;;;10622:21:1;10679:2;10659:18;;;10652:30;10718:34;10698:18;;;10691:62;-1:-1:-1;;;10769:18:1;;;10762:41;10820:19;;36783:87:0;10612:233:1;36783:87:0;-1:-1:-1;;;;;;36888:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36666:256::o;48550:114::-;20482:6;;-1:-1:-1;;;;;20482:6:0;17371:10;20629:23;20621:68;;;;-1:-1:-1;;;20621:68:0;;;;;;;:::i;:::-;48608:47:::1;::::0;48616:10:::1;::::0;48633:21:::1;48608:47:::0;::::1;;;::::0;::::1;::::0;;;48633:21;48616:10;48608:47;::::1;;;;;;48600:56;;;::::0;::::1;;48550:114::o:0;26768:185::-;26906:39;26923:4;26929:2;26933:7;26906:39;;;;;;;;;;;;:16;:39::i;37188:233::-;37263:7;37299:30;37086:10;:17;36998:113;;37299:30;37291:5;:38;37283:95;;;;-1:-1:-1;;;37283:95:0;;20097:2:1;37283:95:0;;;20079:21:1;20136:2;20116:18;;;20109:30;20175:34;20155:18;;;20148:62;-1:-1:-1;;;20226:18:1;;;20219:42;20278:19;;37283:95:0;20069:234:1;37283:95:0;37396:10;37407:5;37396:17;;;;;;-1:-1:-1;;;37396:17:0;;;;;;;;;;;;;;;;;37389:24;;37188:233;;;:::o;23743:239::-;23815:7;23851:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23851:16:0;23886:19;23878:73;;;;-1:-1:-1;;;23878:73:0;;15436:2:1;23878:73:0;;;15418:21:1;15475:2;15455:18;;;15448:30;15514:34;15494:18;;;15487:62;-1:-1:-1;;;15565:18:1;;;15558:39;15614:19;;23878:73:0;15408:231:1;23473:208:0;23545:7;-1:-1:-1;;;;;23573:19:0;;23565:74;;;;-1:-1:-1;;;23565:74:0;;15025:2:1;23565:74:0;;;15007:21:1;15064:2;15044:18;;;15037:30;15103:34;15083:18;;;15076:62;-1:-1:-1;;;15154:18:1;;;15147:40;15204:19;;23565:74:0;14997:232:1;23565:74:0;-1:-1:-1;;;;;;23657:16:0;;;;;:9;:16;;;;;;;23473:208::o;21060:103::-;20482:6;;-1:-1:-1;;;;;20482:6:0;17371:10;20629:23;20621:68;;;;-1:-1:-1;;;20621:68:0;;;;;;;:::i;:::-;21125:30:::1;21152:1;21125:18;:30::i;48670:128::-:0;20482:6;;-1:-1:-1;;;;;20482:6:0;17371:10;20629:23;20621:68;;;;-1:-1:-1;;;20621:68:0;;;;;;;:::i;:::-;48745:10:::1;::::0;::::1;;:20;;::::0;::::1;;;;48737:29;;;::::0;::::1;;48771:10;:19:::0;;-1:-1:-1;;48771:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48670:128::o;46662:706::-;20482:6;;-1:-1:-1;;;;;20482:6:0;17371:10;20629:23;20621:68;;;;-1:-1:-1;;;20621:68:0;;;;;;;:::i;:::-;46789:34;;::::1;46776:86;;;::::0;-1:-1:-1;;;46776:86:0;;15846:2:1;46776:86:0::1;::::0;::::1;15828:21:1::0;15885:2;15865:18;;;15858:30;15924:27;15904:18;;;15897:55;15969:18;;46776:86:0::1;15818:175:1::0;46776:86:0::1;46872:9;46867:497;46887:20:::0;;::::1;46867:497;;;46938:19;46946:7;;46954:1;46946:10;;;;;-1:-1:-1::0;;;46946:10:0::1;;;;;;;;;;;;;;;46938:7;:19::i;:::-;46937:20;46923:84;;;::::0;-1:-1:-1;;;46923:84:0;;18922:2:1;46923:84:0::1;::::0;::::1;18904:21:1::0;18961:2;18941:18;;;18934:30;19000:34;18980:18;;;18973:62;-1:-1:-1;;;19051:18:1;;;19044:32;19093:19;;46923:84:0::1;18894:224:1::0;46923:84:0::1;47054:9;;47064:1;47054:12;;;;;-1:-1:-1::0;;;47054:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47027:39:0::1;:11;:23;47039:7;;47047:1;47039:10;;;;;-1:-1:-1::0;;;47039:10:0::1;;;;;;;;;;::::0;;::::1;::::0;;;::::1;;47027:23:::0;;-1:-1:-1;47027:23:0;::::1;::::0;;;;;;-1:-1:-1;47027:23:0;;-1:-1:-1;;;;;47027:23:0::1;:39;;47013:119;;;::::0;-1:-1:-1;;;47013:119:0;;12235:2:1;47013:119:0::1;::::0;::::1;12217:21:1::0;12274:2;12254:18;;;12247:30;12313:34;12293:18;;;12286:62;-1:-1:-1;;;12364:18:1;;;12357:48;12422:19;;47013:119:0::1;12207:240:1::0;47013:119:0::1;47176:1;47141:11;47176:1:::0;47153:7;;47161:1;47153:10;;::::1;;;-1:-1:-1::0;;;47153:10:0::1;;;;;;;;;;::::0;;::::1;::::0;;;::::1;;47141:23:::0;;-1:-1:-1;47141:23:0;::::1;::::0;;;;;;-1:-1:-1;47141:23:0;;-1:-1:-1;;;;;47141:23:0::1;:37;47138:122;;47194:59;47217:11;:23;47229:7;;47237:1;47229:10;;;;;-1:-1:-1::0;;;47229:10:0::1;;;;;;;;;;::::0;;::::1;::::0;;;::::1;;47217:23:::0;;-1:-1:-1;47217:23:0;::::1;::::0;;;;;;-1:-1:-1;47217:23:0;;-1:-1:-1;;;;;47217:23:0::1;47242:7:::0;;47250:1;47242:10;;::::1;;;-1:-1:-1::0;;;47242:10:0::1;;;;;;;;;;;;;;;47194:22;:59::i;:::-;47294:9;;47304:1;47294:12;;;;;-1:-1:-1::0;;;47294:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47268:11;:23;47280:7;;47288:1;47280:10;;;;;-1:-1:-1::0;;;47280:10:0::1;;;;;;;;;;;;;;;47268:23;;;;;;;;;;;;:38;;;;;-1:-1:-1::0;;;;;47268:38:0::1;;;;;-1:-1:-1::0;;;;;47268:38:0::1;;;;;;47312:15;:29;47328:9;;47338:1;47328:12;;;;;-1:-1:-1::0;;;47328:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47312:29:0::1;-1:-1:-1::0;;;;;47312:29:0::1;;;;;;;;;;;;47347:7;;47355:1;47347:10;;;;;-1:-1:-1::0;;;47347:10:0::1;;;;;;;;;47312:46:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;47312:46:0;;;47347:10:::1;47312:46:::0;;;;47347:10;;;::::1;::::0;;;::::1;;47312:46:::0;;;::::1;::::0;-1:-1:-1;46909:3:0;::::1;::::0;::::1;:::i;:::-;;;;46867:497;;;;46662:706:::0;;;;:::o;24218:104::-;24274:13;24307:7;24300:14;;;;;:::i;48804:132::-;-1:-1:-1;;;;;48903:25:0;;;;;;:15;:25;;;;;;;;;48896:32;;;;;;;;;;;;;;;;;48867:16;;48896:32;;;48903:25;48896:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48804:132;;;:::o;25901:155::-;25996:52;17371:10;26029:8;26039;25996:18;:52::i;27024:328::-;27199:41;17371:10;27232:7;27199:18;:41::i;:::-;27191:103;;;;-1:-1:-1;;;27191:103:0;;;;;;;:::i;:::-;27305:39;27319:4;27325:2;27329:7;27338:5;27305:13;:39::i;:::-;27024:328;;;;:::o;45732:924::-;44157:1;44755:7;;:19;;44747:63;;;;-1:-1:-1;;;44747:63:0;;20510:2:1;44747:63:0;;;20492:21:1;20549:2;20529:18;;;20522:30;20588:33;20568:18;;;20561:61;20639:18;;44747:63:0;20482:181:1;44747:63:0;44157:1;44888:7;:18;45821:10:::1;::::0;::::1;;45808:65;;;::::0;-1:-1:-1;;;45808:65:0;;14243:2:1;45808:65:0::1;::::0;::::1;14225:21:1::0;14282:2;14262:18;;;14255:30;14321;14301:18;;;14294:58;14369:18;;45808:65:0::1;14215:178:1::0;45808:65:0::1;45900:29;::::0;-1:-1:-1;;;45900:29:0;;::::1;::::0;::::1;20814:25:1::0;;;45933:10:0::1;::::0;-1:-1:-1;;;;;45900:6:0::1;:19;::::0;::::1;::::0;20787:18:1;;45900:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45900:43:0::1;;45878:118;;;::::0;-1:-1:-1;;;45878:118:0;;19743:2:1;45878:118:0::1;::::0;::::1;19725:21:1::0;19782:2;19762:18;;;19755:30;19821:27;19801:18;;;19794:55;19866:18;;45878:118:0::1;19715:175:1::0;45878:118:0::1;46015:16;46023:7;46015;:16::i;:::-;46014:17;46001:74;;;::::0;-1:-1:-1;;;46001:74:0;;18563:2:1;46001:74:0::1;::::0;::::1;18545:21:1::0;18602:2;18582:18;;;18575:30;18641:32;18621:18;;;18614:60;18691:18;;46001:74:0::1;18535:180:1::0;46001:74:0::1;46093:20;::::0;;;:11:::1;:20;::::0;;;;;-1:-1:-1;;;;;46093:20:0::1;46117:10;46093:34;46080:109;;;::::0;-1:-1:-1;;;46080:109:0;;13413:2:1;46080:109:0::1;::::0;::::1;13395:21:1::0;13452:2;13432:18;;;13425:30;13491:34;13471:18;;;13464:62;-1:-1:-1;;;13542:18:1;;;13535:46;13598:19;;46080:109:0::1;13385:238:1::0;46080:109:0::1;46200:30;46210:10;46222:7;46200:9;:30::i;:::-;46235:33;::::0;-1:-1:-1;;;46235:33:0;;::::1;::::0;::::1;20814:25:1::0;;;46235:6:0::1;-1:-1:-1::0;;;;;46235:23:0::1;::::0;::::1;::::0;20787:18:1;;46235:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;46279:10:0::1;:12:::0;;;-1:-1:-1;46279:10:0;-1:-1:-1;46279:10:0::1;:12;::::0;::::1;:::i;:::-;;;;;;46305:9;46300:349;46340:10;46324:27;::::0;;;:15:::1;:27;::::0;;;;:34;46320:38;::::1;46300:349;;;46400:10;46384:27;::::0;;;:15:::1;:27;::::0;;;;:30;;46418:7;;46384:27;46412:1;;46384:30;::::1;;;-1:-1:-1::0;;;46384:30:0::1;;;;;;;;;;;;;;;;;:41;46380:258;;;46495:10;46479:27;::::0;;;:15:::1;:27;::::0;;;;46507:34;;:38:::1;::::0;46544:1:::1;::::0;46507:38:::1;:::i;:::-;46479:67;;;;;;-1:-1:-1::0;;;46479:67:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;46462:10:::1;46446:27:::0;;:15:::1;:27:::0;;;;;;;:30;;46474:1;;46446:30;::::1;;;-1:-1:-1::0;;;46446:30:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;:100:::0;;;;46581:10:::1;46565:27:::0;;:15:::1;:27:::0;;;;;;:33;;;::::1;;-1:-1:-1::0;;;46565:33:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;46617:5;;46380:258;46360:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46300:349;;;-1:-1:-1::0;;44113:1:0;45067:7;:22;-1:-1:-1;45732:924:0:o;48181:266::-;48255:13;48289:17;48297:8;48289:7;:17::i;:::-;48281:77;;;;-1:-1:-1;;;48281:77:0;;17745:2:1;48281:77:0;;;17727:21:1;17784:2;17764:18;;;17757:30;17823:34;17803:18;;;17796:62;-1:-1:-1;;;17874:18:1;;;17867:45;17929:19;;48281:77:0;17717:237:1;48281:77:0;48400:7;48409:19;:8;:17;:19::i;:::-;48383:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48369:70;;48181:266;;;:::o;21318:201::-;20482:6;;-1:-1:-1;;;;;20482:6:0;17371:10;20629:23;20621:68;;;;-1:-1:-1;;;20621:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21407:22:0;::::1;21399:73;;;::::0;-1:-1:-1;;;21399:73:0;;11471:2:1;21399:73:0::1;::::0;::::1;11453:21:1::0;11510:2;11490:18;;;11483:30;11549:34;11529:18;;;11522:62;-1:-1:-1;;;11600:18:1;;;11593:36;11646:19;;21399:73:0::1;11443:228:1::0;21399:73:0::1;21483:28;21502:8;21483:18;:28::i;:::-;21318:201:::0;:::o;36358:224::-;36460:4;-1:-1:-1;;;;;;36484:50:0;;-1:-1:-1;;;36484:50:0;;:90;;;36538:36;36562:11;36538:23;:36::i;28862:127::-;28927:4;28951:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28951:16:0;:30;;;28862:127::o;32844:174::-;32919:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32919:29:0;-1:-1:-1;;;;;32919:29:0;;;;;;;;:24;;32973:23;32919:24;32973:14;:23::i;:::-;-1:-1:-1;;;;;32964:46:0;;;;;;;;;;;32844:174;;:::o;29156:348::-;29249:4;29274:16;29282:7;29274;:16::i;:::-;29266:73;;;;-1:-1:-1;;;29266:73:0;;13830:2:1;29266:73:0;;;13812:21:1;13869:2;13849:18;;;13842:30;13908:34;13888:18;;;13881:62;-1:-1:-1;;;13959:18:1;;;13952:42;14011:19;;29266:73:0;13802:234:1;29266:73:0;29350:13;29366:23;29381:7;29366:14;:23::i;:::-;29350:39;;29419:5;-1:-1:-1;;;;;29408:16:0;:7;-1:-1:-1;;;;;29408:16:0;;:51;;;;29452:7;-1:-1:-1;;;;;29428:31:0;:20;29440:7;29428:11;:20::i;:::-;-1:-1:-1;;;;;29428:31:0;;29408:51;:87;;;-1:-1:-1;;;;;;26248:25:0;;;26224:4;26248:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29463:32;29400:96;29156:348;-1:-1:-1;;;;29156:348:0:o;32148:578::-;32307:4;-1:-1:-1;;;;;32280:31:0;:23;32295:7;32280:14;:23::i;:::-;-1:-1:-1;;;;;32280:31:0;;32272:85;;;;-1:-1:-1;;;32272:85:0;;17335:2:1;32272:85:0;;;17317:21:1;17374:2;17354:18;;;17347:30;17413:34;17393:18;;;17386:62;-1:-1:-1;;;17464:18:1;;;17457:39;17513:19;;32272:85:0;17307:231:1;32272:85:0;-1:-1:-1;;;;;32376:16:0;;32368:65;;;;-1:-1:-1;;;32368:65:0;;12654:2:1;32368:65:0;;;12636:21:1;12693:2;12673:18;;;12666:30;12732:34;12712:18;;;12705:62;-1:-1:-1;;;12783:18:1;;;12776:34;12827:19;;32368:65:0;12626:226:1;32368:65:0;32446:39;32467:4;32473:2;32477:7;32446:20;:39::i;:::-;32550:29;32567:1;32571:7;32550:8;:29::i;:::-;-1:-1:-1;;;;;32592:15:0;;;;;;:9;:15;;;;;:20;;32611:1;;32592:15;:20;;32611:1;;32592:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32623:13:0;;;;;;:9;:13;;;;;:18;;32640:1;;32623:13;:18;;32640:1;;32623:18;:::i;:::-;;;;-1:-1:-1;;32652:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32652:21:0;-1:-1:-1;;;;;32652:21:0;;;;;;;;;32691:27;;32652:16;;32691:27;;;;;;;32148:578;;;:::o;21679:191::-;21772:6;;;-1:-1:-1;;;;;21789:17:0;;;-1:-1:-1;;;;;;21789:17:0;;;;;;;21822:40;;21772:6;;;21789:17;21772:6;;21822:40;;21753:16;;21822:40;21679:191;;:::o;47374:429::-;47461:9;47456:343;-1:-1:-1;;;;;47480:26:0;;;;;;:15;:26;;;;;:33;47476:37;;47456:343;;;-1:-1:-1;;;;;47539:26:0;;;;;;:15;:26;;;;;:29;;47572:7;;47539:26;47566:1;;47539:29;;;;-1:-1:-1;;;47539:29:0;;;;;;;;;;;;;;;;;:40;47535:253;;;-1:-1:-1;;;;;47632:26:0;;;;;;:15;:26;;;;;47659:33;;:37;;47695:1;;47659:37;:::i;:::-;47632:65;;;;;;-1:-1:-1;;;47632:65:0;;;;;;;;;;;;;;;;;47600:15;:26;47616:9;-1:-1:-1;;;;;47600:26:0;-1:-1:-1;;;;;47600:26:0;;;;;;;;;;;;47627:1;47600:29;;;;;;-1:-1:-1;;;47600:29:0;;;;;;;;;;;;;;;;;;;;:97;;;;-1:-1:-1;;;;;47716:26:0;;;;:15;:26;;;;;;:32;;;;;-1:-1:-1;;;47716:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;47767:5;;47535:253;47515:3;;;;:::i;:::-;;;;47456:343;;33160:315;33315:8;-1:-1:-1;;;;;33306:17:0;:5;-1:-1:-1;;;;;33306:17:0;;;33298:55;;;;-1:-1:-1;;;33298:55:0;;13059:2:1;33298:55:0;;;13041:21:1;13098:2;13078:18;;;13071:30;13137:27;13117:18;;;13110:55;13182:18;;33298:55:0;13031:175:1;33298:55:0;-1:-1:-1;;;;;33364:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33364:46:0;;;;;;;;;;33426:41;;9939::1;;;33426::0;;9912:18:1;33426:41:0;;;;;;;33160:315;;;:::o;28234:::-;28391:28;28401:4;28407:2;28411:7;28391:9;:28::i;:::-;28438:48;28461:4;28467:2;28471:7;28480:5;28438:22;:48::i;:::-;28430:111;;;;-1:-1:-1;;;28430:111:0;;;;;;;:::i;29846:110::-;29922:26;29932:2;29936:7;29922:26;;;;;;;;;;;;:9;:26::i;17731:723::-;17787:13;18008:10;18004:53;;-1:-1:-1;18035:10:0;;;;;;;;;;;;-1:-1:-1;;;18035:10:0;;;;;;18004:53;18082:5;18067:12;18123:78;18130:9;;18123:78;;18156:8;;;;:::i;:::-;;-1:-1:-1;18179:10:0;;-1:-1:-1;18187:2:0;18179:10;;:::i;:::-;;;18123:78;;;18211:19;18243:6;18233:17;;;;;;-1:-1:-1;;;18233:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18233:17:0;;18211:39;;18261:154;18268:10;;18261:154;;18295:11;18305:1;18295:11;;:::i;:::-;;-1:-1:-1;18364:10:0;18372:2;18364:5;:10;:::i;:::-;18351:24;;:2;:24;:::i;:::-;18338:39;;18321:6;18328;18321:14;;;;;;-1:-1:-1;;;18321:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18321:56:0;;;;;;;;-1:-1:-1;18392:11:0;18401:2;18392:11;;:::i;:::-;;;18261:154;;23104:305;23206:4;-1:-1:-1;;;;;;23243:40:0;;-1:-1:-1;;;23243:40:0;;:105;;-1:-1:-1;;;;;;;23300:48:0;;-1:-1:-1;;;23300:48:0;23243:105;:158;;;-1:-1:-1;;;;;;;;;;7202:40:0;;;23365:36;7093:157;47812:180;47939:45;47966:4;47972:2;47976:7;47939:26;:45::i;34040:799::-;34195:4;-1:-1:-1;;;;;34216:13:0;;9743:20;9791:8;34212:620;;34252:72;;-1:-1:-1;;;34252:72:0;;-1:-1:-1;;;;;34252:36:0;;;;;:72;;17371:10;;34303:4;;34309:7;;34318:5;;34252:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34252:72:0;;;;;;;;-1:-1:-1;;34252:72:0;;;;;;;;;;;;:::i;:::-;;;34248:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34494:13:0;;34490:272;;34537:60;;-1:-1:-1;;;34537:60:0;;;;;;;:::i;34490:272::-;34712:6;34706:13;34697:6;34693:2;34689:15;34682:38;34248:529;-1:-1:-1;;;;;;34375:51:0;-1:-1:-1;;;34375:51:0;;-1:-1:-1;34368:58:0;;34212:620;-1:-1:-1;34816:4:0;34040:799;;;;;;:::o;30183:321::-;30313:18;30319:2;30323:7;30313:5;:18::i;:::-;30364:54;30395:1;30399:2;30403:7;30412:5;30364:22;:54::i;:::-;30342:154;;;;-1:-1:-1;;;30342:154:0;;;;;;;:::i;38034:589::-;-1:-1:-1;;;;;38240:18:0;;38236:187;;38275:40;38307:7;39450:10;:17;;39423:24;;;;:15;:24;;;;;:44;;;39478:24;;;;;;;;;;;;39346:164;38275:40;38236:187;;;38345:2;-1:-1:-1;;;;;38337:10:0;:4;-1:-1:-1;;;;;38337:10:0;;38333:90;;38364:47;38397:4;38403:7;38364:32;:47::i;:::-;-1:-1:-1;;;;;38437:16:0;;38433:183;;38470:45;38507:7;38470:36;:45::i;:::-;38433:183;;;38543:4;-1:-1:-1;;;;;38537:10:0;:2;-1:-1:-1;;;;;38537:10:0;;38533:83;;38564:40;38592:2;38596:7;38564:27;:40::i;30840:382::-;-1:-1:-1;;;;;30920:16:0;;30912:61;;;;-1:-1:-1;;;30912:61:0;;16200:2:1;30912:61:0;;;16182:21:1;;;16219:18;;;16212:30;16278:34;16258:18;;;16251:62;16330:18;;30912:61:0;16172:182:1;30912:61:0;30993:16;31001:7;30993;:16::i;:::-;30992:17;30984:58;;;;-1:-1:-1;;;30984:58:0;;11878:2:1;30984:58:0;;;11860:21:1;11917:2;11897:18;;;11890:30;11956;11936:18;;;11929:58;12004:18;;30984:58:0;11850:178:1;30984:58:0;31055:45;31084:1;31088:2;31092:7;31055:20;:45::i;:::-;-1:-1:-1;;;;;31113:13:0;;;;;;:9;:13;;;;;:18;;31130:1;;31113:13;:18;;31130:1;;31113:18;:::i;:::-;;;;-1:-1:-1;;31142:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31142:21:0;-1:-1:-1;;;;;31142:21:0;;;;;;;;31181:33;;31142:16;;;31181:33;;31142:16;;31181:33;30840:382;;:::o;40137:988::-;40403:22;40453:1;40428:22;40445:4;40428:16;:22::i;:::-;:26;;;;:::i;:::-;40465:18;40486:26;;;:17;:26;;;;;;40403:51;;-1:-1:-1;40619:28:0;;;40615:328;;-1:-1:-1;;;;;40686:18:0;;40664:19;40686:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40737:30;;;;;;:44;;;40854:30;;:17;:30;;;;;:43;;;40615:328;-1:-1:-1;41039:26:0;;;;:17;:26;;;;;;;;41032:33;;;-1:-1:-1;;;;;41083:18:0;;;;;:12;:18;;;;;:34;;;;;;;41076:41;40137:988::o;41420:1079::-;41698:10;:17;41673:22;;41698:21;;41718:1;;41698:21;:::i;:::-;41730:18;41751:24;;;:15;:24;;;;;;42124:10;:26;;41673:46;;-1:-1:-1;41751:24:0;;41673:46;;42124:26;;;;-1:-1:-1;;;42124:26:0;;;;;;;;;;;;;;;;;42102:48;;42188:11;42163:10;42174;42163:22;;;;;;-1:-1:-1;;;42163:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42268:28;;;:15;:28;;;;;;;:41;;;42440:24;;;;;42433:31;42475:10;:16;;;;;-1:-1:-1;;;42475:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;41420:1079;;;;:::o;38924:221::-;39009:14;39026:20;39043:2;39026:16;:20::i;:::-;-1:-1:-1;;;;;39057:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39102:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38924:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:398::-;;;777:3;770:4;762:6;758:17;754:27;744:2;;802:8;792;785:26;744:2;-1:-1:-1;832:20:1;;875:18;864:30;;861:2;;;914:8;904;897:26;861:2;958:4;950:6;946:17;934:29;;1021:3;1014:4;1006;998:6;994:17;986:6;982:30;978:41;975:50;972:2;;;1038:1;1035;1028:12;972:2;734:314;;;;;:::o;1053:160::-;1118:20;;1174:13;;1167:21;1157:32;;1147:2;;1203:1;1200;1193:12;1218:257;;1330:2;1318:9;1309:7;1305:23;1301:32;1298:2;;;1351:6;1343;1336:22;1298:2;1395:9;1382:23;1414:31;1439:5;1414:31;:::i;:::-;1464:5;1288:187;-1:-1:-1;;;1288:187:1:o;1480:261::-;;1603:2;1591:9;1582:7;1578:23;1574:32;1571:2;;;1624:6;1616;1609:22;1571:2;1661:9;1655:16;1680:31;1705:5;1680:31;:::i;1746:398::-;;;1875:2;1863:9;1854:7;1850:23;1846:32;1843:2;;;1896:6;1888;1881:22;1843:2;1940:9;1927:23;1959:31;1984:5;1959:31;:::i;:::-;2009:5;-1:-1:-1;2066:2:1;2051:18;;2038:32;2079:33;2038:32;2079:33;:::i;:::-;2131:7;2121:17;;;1833:311;;;;;:::o;2149:466::-;;;;2295:2;2283:9;2274:7;2270:23;2266:32;2263:2;;;2316:6;2308;2301:22;2263:2;2360:9;2347:23;2379:31;2404:5;2379:31;:::i;:::-;2429:5;-1:-1:-1;2486:2:1;2471:18;;2458:32;2499:33;2458:32;2499:33;:::i;:::-;2253:362;;2551:7;;-1:-1:-1;;;2605:2:1;2590:18;;;;2577:32;;2253:362::o;2620:824::-;;;;;2792:3;2780:9;2771:7;2767:23;2763:33;2760:2;;;2814:6;2806;2799:22;2760:2;2858:9;2845:23;2877:31;2902:5;2877:31;:::i;:::-;2927:5;-1:-1:-1;2984:2:1;2969:18;;2956:32;2997:33;2956:32;2997:33;:::i;:::-;3049:7;-1:-1:-1;3103:2:1;3088:18;;3075:32;;-1:-1:-1;3158:2:1;3143:18;;3130:32;3185:18;3174:30;;3171:2;;;3222:6;3214;3207:22;3171:2;3250:22;;3303:4;3295:13;;3291:27;-1:-1:-1;3281:2:1;;3337:6;3329;3322:22;3281:2;3365:73;3430:7;3425:2;3412:16;3407:2;3403;3399:11;3365:73;:::i;:::-;3355:83;;;2750:694;;;;;;;:::o;3449:325::-;;;3575:2;3563:9;3554:7;3550:23;3546:32;3543:2;;;3596:6;3588;3581:22;3543:2;3640:9;3627:23;3659:31;3684:5;3659:31;:::i;:::-;3709:5;-1:-1:-1;3733:35:1;3764:2;3749:18;;3733:35;:::i;:::-;3723:45;;3533:241;;;;;:::o;3779:325::-;;;3908:2;3896:9;3887:7;3883:23;3879:32;3876:2;;;3929:6;3921;3914:22;3876:2;3973:9;3960:23;3992:31;4017:5;3992:31;:::i;:::-;4042:5;4094:2;4079:18;;;;4066:32;;-1:-1:-1;;;3866:238:1:o;4109:803::-;;;;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4403:18;4444:2;4436:6;4433:14;4430:2;;;4465:6;4457;4450:22;4430:2;4509:70;4571:7;4562:6;4551:9;4547:22;4509:70;:::i;:::-;4598:8;;-1:-1:-1;4483:96:1;-1:-1:-1;4686:2:1;4671:18;;4658:32;;-1:-1:-1;4702:16:1;;;4699:2;;;4736:6;4728;4721:22;4699:2;;4780:72;4844:7;4833:8;4822:9;4818:24;4780:72;:::i;:::-;4266:646;;;;-1:-1:-1;4871:8:1;-1:-1:-1;;;;4266:646:1:o;4917:190::-;;5026:2;5014:9;5005:7;5001:23;4997:32;4994:2;;;5047:6;5039;5032:22;4994:2;5075:26;5091:9;5075:26;:::i;5112:255::-;;5223:2;5211:9;5202:7;5198:23;5194:32;5191:2;;;5244:6;5236;5229:22;5191:2;5288:9;5275:23;5307:30;5331:5;5307:30;:::i;5372:259::-;;5494:2;5482:9;5473:7;5469:23;5465:32;5462:2;;;5515:6;5507;5500:22;5462:2;5552:9;5546:16;5571:30;5595:5;5571:30;:::i;5636:480::-;;5758:2;5746:9;5737:7;5733:23;5729:32;5726:2;;;5779:6;5771;5764:22;5726:2;5824:9;5811:23;5857:18;5849:6;5846:30;5843:2;;;5894:6;5886;5879:22;5843:2;5922:22;;5975:4;5967:13;;5963:27;-1:-1:-1;5953:2:1;;6009:6;6001;5994:22;5953:2;6037:73;6102:7;6097:2;6084:16;6079:2;6075;6071:11;6037:73;:::i;6121:190::-;;6233:2;6221:9;6212:7;6208:23;6204:32;6201:2;;;6254:6;6246;6239:22;6201:2;-1:-1:-1;6282:23:1;;6191:120;-1:-1:-1;6191:120:1:o;6316:258::-;;;6445:2;6433:9;6424:7;6420:23;6416:32;6413:2;;;6466:6;6458;6451:22;6413:2;-1:-1:-1;;6494:23:1;;;6564:2;6549:18;;;6536:32;;-1:-1:-1;6403:171:1:o;6579:257::-;;6658:5;6652:12;6685:6;6680:3;6673:19;6701:63;6757:6;6750:4;6745:3;6741:14;6734:4;6727:5;6723:16;6701:63;:::i;:::-;6818:2;6797:15;-1:-1:-1;;6793:29:1;6784:39;;;;6825:4;6780:50;;6628:208;-1:-1:-1;;6628:208:1:o;6841:185::-;;6921:5;6915:12;6936:52;6981:6;6976:3;6969:4;6962:5;6958:16;6936:52;:::i;:::-;7004:16;;;;;6891:135;-1:-1:-1;;6891:135:1:o;7149:1304::-;7484:13;;7149:1304;;;;7557:1;7542:17;;7578:1;7614:18;;;;7641:2;;7695:4;7687:6;7683:17;7673:27;;7641:2;7721;7769;7761:6;7758:14;7738:18;7735:38;7732:2;;;-1:-1:-1;;;7796:33:1;;7852:4;7849:1;7842:15;7882:4;7803:3;7870:17;7732:2;7913:18;7940:104;;;;8058:1;8053:322;;;;7906:469;;7940:104;-1:-1:-1;;7973:24:1;;7961:37;;8018:16;;;;-1:-1:-1;7940:104:1;;8053:322;20850:127;20916:17;;;20966:4;20950:21;;8148:3;8164:165;8178:6;8175:1;8172:13;8164:165;;;8256:14;;8243:11;;;8236:35;8299:16;;;;8193:10;;8164:165;;;8168:3;;8358:6;8353:3;8349:16;8342:23;;7906:469;;;;;;;8391:56;8416:30;8442:3;8434:6;8416:30;:::i;:::-;-1:-1:-1;;;7091:20:1;;7136:1;7127:11;;7081:63;8391:56;8384:63;7434:1019;-1:-1:-1;;;;;7434:1019:1:o;8666:488::-;-1:-1:-1;;;;;8935:15:1;;;8917:34;;8987:15;;8982:2;8967:18;;8960:43;9034:2;9019:18;;9012:34;;;9082:3;9077:2;9062:18;;9055:31;;;8666:488;;9103:45;;9128:19;;9120:6;9103:45;:::i;:::-;9095:53;8869:285;-1:-1:-1;;;;;;8869:285:1:o;9159:635::-;9330:2;9382:21;;;9452:13;;9355:18;;;9474:22;;;9159:635;;9330:2;9553:15;;;;9527:2;9512:18;;;9159:635;9599:169;9613:6;9610:1;9607:13;9599:169;;;9674:13;;9662:26;;9743:15;;;;9708:12;;;;9635:1;9628:9;9599:169;;;-1:-1:-1;9785:3:1;;9310:484;-1:-1:-1;;;;;;9310:484:1:o;10214:219::-;;10363:2;10352:9;10345:21;10383:44;10423:2;10412:9;10408:18;10400:6;10383:44;:::i;10850:414::-;11052:2;11034:21;;;11091:2;11071:18;;;11064:30;11130:34;11125:2;11110:18;;11103:62;-1:-1:-1;;;11196:2:1;11181:18;;11174:48;11254:3;11239:19;;11024:240::o;16772:356::-;16974:2;16956:21;;;16993:18;;;16986:30;17052:34;17047:2;17032:18;;17025:62;17119:2;17104:18;;16946:182::o;19123:413::-;19325:2;19307:21;;;19364:2;19344:18;;;19337:30;19403:34;19398:2;19383:18;;19376:62;-1:-1:-1;;;19469:2:1;19454:18;;19447:47;19526:3;19511:19;;19297:239::o;20982:128::-;;21053:1;21049:6;21046:1;21043:13;21040:2;;;21059:18;;:::i;:::-;-1:-1:-1;21095:9:1;;21030:80::o;21115:120::-;;21181:1;21171:2;;21186:18;;:::i;:::-;-1:-1:-1;21220:9:1;;21161:74::o;21240:125::-;;21308:1;21305;21302:8;21299:2;;;21313:18;;:::i;:::-;-1:-1:-1;21350:9:1;;21289:76::o;21370:258::-;21442:1;21452:113;21466:6;21463:1;21460:13;21452:113;;;21542:11;;;21536:18;21523:11;;;21516:39;21488:2;21481:10;21452:113;;;21583:6;21580:1;21577:13;21574:2;;;-1:-1:-1;;21618:1:1;21600:16;;21593:27;21423:205::o;21633:380::-;21718:1;21708:12;;21765:1;21755:12;;;21776:2;;21830:4;21822:6;21818:17;21808:27;;21776:2;21883;21875:6;21872:14;21852:18;21849:38;21846:2;;;21929:10;21924:3;21920:20;21917:1;21910:31;21964:4;21961:1;21954:15;21992:4;21989:1;21982:15;21846:2;;21688:325;;;:::o;22018:135::-;;-1:-1:-1;;22078:17:1;;22075:2;;;22098:18;;:::i;:::-;-1:-1:-1;22145:1:1;22134:13;;22065:88::o;22158:112::-;;22216:1;22206:2;;22221:18;;:::i;:::-;-1:-1:-1;22255:9:1;;22196:74::o;22275:127::-;22336:10;22331:3;22327:20;22324:1;22317:31;22367:4;22364:1;22357:15;22391:4;22388:1;22381:15;22407:127;22468:10;22463:3;22459:20;22456:1;22449:31;22499:4;22496:1;22489:15;22523:4;22520:1;22513:15;22539:127;22600:10;22595:3;22591:20;22588:1;22581:31;22631:4;22628:1;22621:15;22655:4;22652:1;22645:15;22671:131;-1:-1:-1;;;;;22746:31:1;;22736:42;;22726:2;;22792:1;22789;22782:12;22807:131;-1:-1:-1;;;;;;22881:32:1;;22871:43;;22861:2;;22928:1;22925;22918:12
Swarm Source
ipfs://cfc5bb588d8db9ba4cd959784e9a0ba0ca17bd49efe17297124e738017373811
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.