ETH Price: $3,540.65 (-0.93%)
Gas: 28 Gwei

Token

The SolaVerse: SOLA-STARS (SOLA-STAR)
 

Overview

Max Total Supply

2,000 SOLA-STAR

Holders

817

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The SolaVerse, an ever-expanding metaverse based in the stars. The first stop on our journey is a Play-2-Earn MMO strategy game, that will be free to play in your browser and on mobile in 2022.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SolaStars

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-13
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;


/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
	function _msgSender() internal view virtual returns (address) {
		return msg.sender;
	}

	function _msgData() internal view virtual returns (bytes calldata) {
		return msg.data;
	}
}


/**
 * @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() {
		_setOwner(_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 {
		_setOwner(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");
		_setOwner(newOwner);
	}

	function _setOwner(address newOwner) private {
		address oldOwner = _owner;
		_owner = newOwner;
		emit OwnershipTransferred(oldOwner, newOwner);
	}
}


/**
 * @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 make 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;
	}
}


/**
 * @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 Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
	/*
	 * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
	 */
	bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

	/**
	 * @dev Mapping of interface ids to whether or not it's supported.
	 */
	mapping(bytes4 => bool) private _supportedInterfaces;

	constructor () {
		// Derived contracts need only register support for their own interfaces,
		// we register support for ERC165 itself here
		_registerInterface(_INTERFACE_ID_ERC165);
	}

	/**
	 * @dev See {IERC165-supportsInterface}.
	 *
	 * Time complexity O(1), guaranteed to always use less than 30 000 gas.
	 */
	function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
		return _supportedInterfaces[interfaceId];
	}

	/**
	 * @dev Registers the contract as an implementer of the interface defined by
	 * `interfaceId`. Support of the actual ERC165 interface is automatic and
	 * registering its interface id is not required.
	 *
	 * See {IERC165-supportsInterface}.
	 *
	 * Requirements:
	 *
	 * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
	 */
	function _registerInterface(bytes4 interfaceId) internal virtual {
		require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
		_supportedInterfaces[interfaceId] = true;
	}
}


/**
 * @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 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 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);
}


/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
	using SafeMath for uint256;
	using Address for address;
	using EnumerableSet for EnumerableSet.UintSet;
	using EnumerableMap for EnumerableMap.UintToAddressMap;
	using Strings for uint256;

	// Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
	// which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
	bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

	// Mapping from holder address to their (enumerable) set of owned tokens
	mapping (address => EnumerableSet.UintSet) private _holderTokens;

	// Enumerable mapping from token ids to their owners
	EnumerableMap.UintToAddressMap private _tokenOwners;

	// 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;

	// Token name
	string private _name;

	// Token symbol
	string private _symbol;

	// Optional mapping for token URIs
	mapping (uint256 => string) private _tokenURIs;

	// Base URI
	string private _baseURI;

	/*
	 *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
	 *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
	 *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
	 *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
	 *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
	 *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
	 *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
	 *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
	 *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
	 *
	 *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
	 *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
	 */
	bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

	/*
	 *     bytes4(keccak256('name()')) == 0x06fdde03
	 *     bytes4(keccak256('symbol()')) == 0x95d89b41
	 *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
	 *
	 *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
	 */
	bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

	/*
	 *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
	 *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
	 *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
	 *
	 *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
	 */
	bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

	/**
	 * @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_;

		// register the supported interfaces to conform to ERC721 via ERC165
		_registerInterface(_INTERFACE_ID_ERC721);
		_registerInterface(_INTERFACE_ID_ERC721_METADATA);
		_registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
	}

	/**
	 * @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 _holderTokens[owner].length();
	}

	/**
	 * @dev See {IERC721-ownerOf}.
	 */
	function ownerOf(uint256 tokenId) public view virtual override returns (address) {
		return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
	}

	/**
	 * @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 _tokenURI = _tokenURIs[tokenId];
		string memory base = baseURI();

		// If there is no base URI, return the token URI.
		if (bytes(base).length == 0) {
			return _tokenURI;
		}
		// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
		if (bytes(_tokenURI).length > 0) {
			return string(abi.encodePacked(base, _tokenURI));
		}
		// If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
		return string(abi.encodePacked(base, tokenId.toString()));
	}

	/**
	* @dev Returns the base URI set via {_setBaseURI}. This will be
	* automatically added as a prefix in {tokenURI} to each token's URI, or
	* to the token ID if no specific URI is set for that token ID.
	*/
	function baseURI() public view virtual returns (string memory) {
		return _baseURI;
	}

	/**
	 * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
	 */
	function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
		return _holderTokens[owner].at(index);
	}

	/**
	 * @dev See {IERC721Enumerable-totalSupply}.
	 */
	function totalSupply() public view virtual override returns (uint256) {
		// _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
		return _tokenOwners.length();
	}

	/**
	 * @dev See {IERC721Enumerable-tokenByIndex}.
	 */
	function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
		(uint256 tokenId, ) = _tokenOwners.at(index);
		return tokenId;
	}

	/**
	 * @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 || ERC721.isApprovedForAll(owner, _msgSender()),
			"ERC721: approve caller is not owner nor approved for all"
		);

		_approve(to, tokenId);
	}

	/**
	 * @dev See {IERC721-getApproved}.
	 */
	function getApproved(uint256 tokenId) public view virtual override returns (address) {
		require(_exists(tokenId), "ERC721: approved query for nonexistent token");

		return _tokenApprovals[tokenId];
	}

	/**
	 * @dev See {IERC721-setApprovalForAll}.
	 */
	function setApprovalForAll(address operator, bool approved) public virtual override {
		require(operator != _msgSender(), "ERC721: approve to caller");

		_operatorApprovals[_msgSender()][operator] = approved;
		emit ApprovalForAll(_msgSender(), operator, approved);
	}

	/**
	 * @dev See {IERC721-isApprovedForAll}.
	 */
	function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
		return _operatorApprovals[owner][operator];
	}

	/**
	 * @dev See {IERC721-transferFrom}.
	 */
	function transferFrom(address from, address to, uint256 tokenId) public virtual override {
		//solhint-disable-next-line max-line-length
		require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

		_transfer(from, to, tokenId);
	}

	/**
	 * @dev See {IERC721-safeTransferFrom}.
	 */
	function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
		safeTransferFrom(from, to, tokenId, "");
	}

	/**
	 * @dev See {IERC721-safeTransferFrom}.
	 */
	function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
		require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
		_safeTransfer(from, to, tokenId, _data);
	}

	/**
	 * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
	 * are aware of the ERC721 protocol to prevent tokens from being forever locked.
	 *
	 * `_data` is additional data, it has no specified format and it is sent in call to `to`.
	 *
	 * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
	 * implement alternative mechanisms to perform token transfer, such as signature-based.
	 *
	 * Requirements:
	 *
	 * - `from` cannot be the zero address.
	 * - `to` cannot be the zero address.
	 * - `tokenId` token must exist and be owned by `from`.
	 * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
	 *
	 * Emits a {Transfer} event.
	 */
	function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
		_transfer(from, to, tokenId);
		require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
	}

	/**
	 * @dev Returns whether `tokenId` exists.
	 *
	 * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
	 *
	 * Tokens start existing when they are minted (`_mint`),
	 * and stop existing when they are burned (`_burn`).
	 */
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
		return _tokenOwners.contains(tokenId);
	}

	/**
	 * @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 || ERC721.isApprovedForAll(owner, spender));
	}

	/**
	 * @dev Safely mints `tokenId` and transfers it to `to`.
	 *
	 * Requirements:
	 d*
	 * - `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);

		_holderTokens[to].add(tokenId);

		_tokenOwners.set(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); // internal owner

		_beforeTokenTransfer(owner, address(0), tokenId);

		// Clear approvals
		_approve(address(0), tokenId);

		// Clear metadata (if any)
		if (bytes(_tokenURIs[tokenId]).length != 0) {
			delete _tokenURIs[tokenId];
		}

		_holderTokens[owner].remove(tokenId);

		_tokenOwners.remove(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"); // internal owner
		require(to != address(0), "ERC721: transfer to the zero address");

		_beforeTokenTransfer(from, to, tokenId);

		// Clear approvals from the previous owner
		_approve(address(0), tokenId);

		_holderTokens[from].remove(tokenId);
		_holderTokens[to].add(tokenId);

		_tokenOwners.set(tokenId, to);

		emit Transfer(from, to, tokenId);
	}

	/**
	 * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
	 *
	 * Requirements:
	 *
	 * - `tokenId` must exist.
	 */
	function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
		require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
		_tokenURIs[tokenId] = _tokenURI;
	}

	/**
	 * @dev Internal function to set the base URI for all token IDs. It is
	 * automatically added as a prefix to the value returned in {tokenURI},
	 * or to the token ID if {tokenURI} is empty.
	 */
	function _setBaseURI(string memory baseURI_) internal virtual {
		_baseURI = baseURI_;
	}

	/**
	 * @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()) {
			return true;
		}
		bytes memory returndata = to.functionCall(abi.encodeWithSelector(
			IERC721Receiver(to).onERC721Received.selector,
			_msgSender(),
			from,
			tokenId,
			_data
		), "ERC721: transfer to non ERC721Receiver implementer");
		bytes4 retval = abi.decode(returndata, (bytes4));
		return (retval == _ERC721_RECEIVED);
	}

	/**
	 * @dev Approve `to` to operate on `tokenId`
	 *
	 * Emits an {Approval} event.
	 */
	function _approve(address to, uint256 tokenId) internal virtual {
		_tokenApprovals[tokenId] = to;
		emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
	}

	/**
	 * @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 { }
}


/**
 * @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 Extends ERC721 Non-Fungible Token Standard basic implementation
 *
 */
contract SolaStars is ERC721, ReentrancyGuard, Ownable
{
	using SafeMath for uint256;

	uint256 public max_tokens_per_transaction = 2;
	uint256 public token_price = 200000000000000000;
	uint256 public max_token_supply = 2000;
	uint256 public starting_index_block;
	uint256 public starting_index;

	bool public whitelist_sale_active = false;
	bool public public_raffle_sale_active = false;
	bool public general_sale_active = false;

	string public provenance_hash = "";


	/**
	 * @dev Nothing to see here.
	 */
	constructor() ERC721("The SolaVerse: SOLA-STARS", "SOLA-STAR") {}


	/**
	 * @dev Whitelisted method to mint a free token.
	 *
	 * @param _signature bytes memory
	 * @param _id string memory
	 * @param _timestamp string memory
	 */
	function mintStarWhitelist(bytes memory _signature, string memory _id, string memory _timestamp) public nonReentrant
	{
		require(whitelist_sale_active, "Whitelist not open");
		require(isWalletAuthorisedToMint(msg.sender, _signature, _id, _timestamp, "Whitelist"), "Not authorised to mint");
		require(IERC721(address(this)).balanceOf(msg.sender) == 0, "Wallet has already minted");

		maybeMintTokens(1);
	}


	/**
	 * @dev Whitelisted method to mint a free token and one additional token at normal price.
	 *
	 * @param _signature bytes memory
	 * @param _id string memory
	 * @param _timestamp string memory
	 */
	function mintStarsWhitelist(bytes memory _signature, string memory _id, string memory _timestamp) public payable nonReentrant
	{
		require(whitelist_sale_active, "Whitelist not open");
		require(msg.value >= token_price, "Not enough ETH");
		require(isWalletAuthorisedToMint(msg.sender, _signature, _id, _timestamp, "Whitelist"), "Not authorised to mint");
		require(IERC721(address(this)).balanceOf(msg.sender) == 0, "Wallet has already minted");

		maybeMintTokens(2);
	}


	/**
	 * @dev Public payable method to mint the number of tokens requested based on the results of the public raffle.
	 *
	 * @param _num_tokens uint256
	 * @param _signature bytes memory
	 * @param _id string memory
	 * @param _timestamp string memory
	 */
	function mintStarRaffle(uint256 _num_tokens, bytes memory _signature, string memory _id, string memory _timestamp) public payable nonReentrant
	{
		require(public_raffle_sale_active, "Public Raffle not open");
		require(msg.value >= (token_price * _num_tokens), "Not enough ETH");
		require(isWalletAuthorisedToMint(msg.sender, _signature, _id, _timestamp, "Public-Raffle"), "Not authorised to mint");
		require(IERC721(address(this)).balanceOf(msg.sender) == 0, "Wallet has already minted");

		maybeMintTokens(_num_tokens);
	}


	/**
	 * @dev Public payable method to mint the number of tokens requested.
	 *
	 * @param _num_tokens uint256
	 */
	function mintStarPublic(uint256 _num_tokens) public payable nonReentrant
	{
		require(general_sale_active, "General sale not open");
		require(msg.value >= (token_price * _num_tokens), "Not enough ETH");

		maybeMintTokens(_num_tokens);
	}


	/**
	 * @dev Mint the requested number of tokens if there's enough available.

	 * @dev If we haven't set the starting index yet and this is either 1) the last saleable token or 2) the first token to be sold after the end of pre-sale, set the starting index block.
	 */
	function maybeMintTokens(uint _num_tokens) internal
	{
		require((_num_tokens > 0) && (_num_tokens <= max_tokens_per_transaction), "Cannot mint that many tokens");
		require(totalSupply().add(_num_tokens) <= max_token_supply, "Exceeds max tokens available");

		for (uint256 i=0; i<_num_tokens; i++)
		{
			uint256 new_token_id = totalSupply();
			_safeMint(msg.sender, new_token_id);
		}

		if (starting_index_block == 0 && (totalSupply() == max_token_supply))
		{
			starting_index_block = block.number;
		}
	}


	/**
	 * @dev Use ECDSA to get the wallet info from the signature and check to make sure it matches the current sender's wallet.
	 *
	 * @param _wallet address
	 * @param _signature bytes memory
	 * @param _id string memory
	 * @param _timestamp string memory
	 * @param _sale string memory
	 * @return bool
	 */
	function isWalletAuthorisedToMint(address _wallet, bytes memory _signature, string memory _id, string memory _timestamp, string memory _sale) public pure returns(bool)
	{
		return ECDSA.recover(ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked("Token-", bytes(_sale), "-Mint--", bytes(_id), "--", bytes(_timestamp), "."))), _signature) == _wallet;
	}


	/**
	 * @dev Finalize starting index.
	 */
	function finalizeStartingIndex() public
	{
		require(starting_index == 0, "Starting index already set");
		require(starting_index_block != 0, "Starting index block not set");

		starting_index = uint256(blockhash(starting_index_block)) % max_token_supply;

		if (block.number.sub(starting_index_block) > 255)
		{
			starting_index = uint256(blockhash(block.number-1)) % max_token_supply;
		}

		if (starting_index == 0)
		{
			starting_index = starting_index.add(1);
		}
	}


	/**
	 * @dev Set the starting index block for the collection, essentially unblocking setting starting index.
	 */
	function emergencySetStartingIndexBlock() public onlyOwner
	{
		require(starting_index == 0, "Starting index is already set");

		starting_index_block = block.number;
	}


	/**
	 * @dev Set provenance once it's calculated.
	 *
	 * @param _provenance_hash string memory
	 */
	function setProvenanceHash(string memory _provenance_hash) public onlyOwner
	{
		provenance_hash = _provenance_hash;
	}


	/**
	 * @dev Set the base URI to a new value once we reveal the tokens.
	 *
	 * @param _new_token_base_uri string memory
	 */
	function setBaseURI(string memory _new_token_base_uri) public onlyOwner
	{
		_setBaseURI(_new_token_base_uri);
	}


	/**
	 * @dev Set the flag to enable/disable the Whitelist sale.
	 */
	function setWhitelistSaleActive(bool _active) public onlyOwner
	{
		whitelist_sale_active = _active;
	}


	/**
	 * @dev Set the flag to enable/disable the Public Raffle sale.
	 */
	function setPublicRaffleSaleActive(bool _active) public onlyOwner
	{
		public_raffle_sale_active = _active;
	}


	/**
	 * @dev Set the flag to enable/disable the General sale.
	 */
	function setGeneralSaleActive(bool _active) public onlyOwner
	{
		general_sale_active = _active;
	}


	/**
	 * @dev Allow owner withdrawal from the main wallet.
	 */
	function withdraw() public onlyOwner
	{
		uint256 balance = address(this).balance;
		require(balance > 0, "Balance is 0");
		payable(msg.sender).transfer(balance);
	}
}


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
	/**
	 * @dev Returns the addition of two unsigned integers, with an overflow flag.
	 *
	 * _Available since v3.4._
	 */
	function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		uint256 c = a + b;
		if (c < a) return (false, 0);
		return (true, c);
	}

	/**
	 * @dev Returns the substraction of two unsigned integers, with an overflow flag.
	 *
	 * _Available since v3.4._
	 */
	function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		if (b > a) return (false, 0);
		return (true, a - b);
	}

	/**
	 * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
	 *
	 * _Available since v3.4._
	 */
	function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
		// benefit is lost if 'b' is also tested.
		// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
		if (a == 0) return (true, 0);
		uint256 c = a * b;
		if (c / a != b) return (false, 0);
		return (true, c);
	}

	/**
	 * @dev Returns the division of two unsigned integers, with a division by zero flag.
	 *
	 * _Available since v3.4._
	 */
	function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		if (b == 0) return (false, 0);
		return (true, a / b);
	}

	/**
	 * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
	 *
	 * _Available since v3.4._
	 */
	function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		if (b == 0) return (false, 0);
		return (true, a % b);
	}

	/**
	 * @dev Returns the addition of two unsigned integers, reverting on
	 * overflow.
	 *
	 * Counterpart to Solidity's `+` operator.
	 *
	 * Requirements:
	 *
	 * - Addition cannot overflow.
	 */
	function add(uint256 a, uint256 b) internal pure returns (uint256) {
		uint256 c = a + b;
		require(c >= a, "SafeMath: addition overflow");
		return c;
	}

	/**
	 * @dev Returns the subtraction of two unsigned integers, reverting on
	 * overflow (when the result is negative).
	 *
	 * Counterpart to Solidity's `-` operator.
	 *
	 * Requirements:
	 *
	 * - Subtraction cannot overflow.
	 */
	function sub(uint256 a, uint256 b) internal pure returns (uint256) {
		require(b <= a, "SafeMath: subtraction overflow");
		return a - b;
	}

	/**
	 * @dev Returns the multiplication of two unsigned integers, reverting on
	 * overflow.
	 *
	 * Counterpart to Solidity's `*` operator.
	 *
	 * Requirements:
	 *
	 * - Multiplication cannot overflow.
	 */
	function mul(uint256 a, uint256 b) internal pure returns (uint256) {
		if (a == 0) return 0;
		uint256 c = a * b;
		require(c / a == b, "SafeMath: multiplication overflow");
		return c;
	}

	/**
	 * @dev Returns the integer division of two unsigned integers, reverting on
	 * division by zero. The result is rounded towards zero.
	 *
	 * Counterpart to Solidity's `/` operator. Note: this function uses a
	 * `revert` opcode (which leaves remaining gas untouched) while Solidity
	 * uses an invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function div(uint256 a, uint256 b) internal pure returns (uint256) {
		require(b > 0, "SafeMath: division by zero");
		return a / b;
	}

	/**
	 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
	 * reverting when dividing by zero.
	 *
	 * Counterpart to Solidity's `%` operator. This function uses a `revert`
	 * opcode (which leaves remaining gas untouched) while Solidity uses an
	 * invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function mod(uint256 a, uint256 b) internal pure returns (uint256) {
		require(b > 0, "SafeMath: modulo by zero");
		return a % b;
	}

	/**
	 * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
	 * overflow (when the result is negative).
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {trySub}.
	 *
	 * Counterpart to Solidity's `-` operator.
	 *
	 * Requirements:
	 *
	 * - Subtraction cannot overflow.
	 */
	function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
		require(b <= a, errorMessage);
		return a - b;
	}

	/**
	 * @dev Returns the integer division of two unsigned integers, reverting with custom message on
	 * division by zero. The result is rounded towards zero.
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {tryDiv}.
	 *
	 * Counterpart to Solidity's `/` operator. Note: this function uses a
	 * `revert` opcode (which leaves remaining gas untouched) while Solidity
	 * uses an invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
		require(b > 0, errorMessage);
		return a / b;
	}

	/**
	 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
	 * reverting with custom message when dividing by zero.
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {tryMod}.
	 *
	 * Counterpart to Solidity's `%` operator. This function uses a `revert`
	 * opcode (which leaves remaining gas untouched) while Solidity uses an
	 * invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
		require(b > 0, errorMessage);
		return a % b;
	}
}


/**
 * @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);
	}

	function _verifyCallResult(
		bool success,
		bytes memory returndata,
		string memory errorMessage
	) private 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 String operations.
 */
library Strings {
	/**
	 * @dev Converts a `uint256` to its ASCII `string` 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);
		uint256 index = digits - 1;
		temp = value;
		while (temp != 0) {
			buffer[index--] = bytes1(uint8(48 + temp % 10));
			temp /= 10;
		}
		return string(buffer);
	}
}


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
	enum RecoverError {
		NoError,
		InvalidSignature,
		InvalidSignatureLength,
		InvalidSignatureS,
		InvalidSignatureV
	}

	function _throwError(RecoverError error) private pure {
		if (error == RecoverError.NoError) {
			return; // no error: do nothing
		} else if (error == RecoverError.InvalidSignature) {
			revert("ECDSA: invalid signature");
		} else if (error == RecoverError.InvalidSignatureLength) {
			revert("ECDSA: invalid signature length");
		} else if (error == RecoverError.InvalidSignatureS) {
			revert("ECDSA: invalid signature 's' value");
		} else if (error == RecoverError.InvalidSignatureV) {
			revert("ECDSA: invalid signature 'v' value");
		}
	}

	/**
	 * @dev Returns the address that signed a hashed message (`hash`) with
	 * `signature` or error string. This address can then be used for verification purposes.
	 *
	 * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
	 * this function rejects them by requiring the `s` value to be in the lower
	 * half order, and the `v` value to be either 27 or 28.
	 *
	 * IMPORTANT: `hash` _must_ be the result of a hash operation for the
	 * verification to be secure: it is possible to craft signatures that
	 * recover to arbitrary addresses for non-hashed data. A safe way to ensure
	 * this is by receiving a hash of the original message (which may otherwise
	 * be too long), and then calling {toEthSignedMessageHash} on it.
	 *
	 * Documentation for signature generation:
	 * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
	 * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
	 *
	 * _Available since v4.3._
	 */
	function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
		// Check the signature length
		// - case 65: r,s,v signature (standard)
		// - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
		if (signature.length == 65) {
			bytes32 r;
			bytes32 s;
			uint8 v;
			// ecrecover takes the signature parameters, and the only way to get them
			// currently is to use assembly.
			assembly {
				r := mload(add(signature, 0x20))
				s := mload(add(signature, 0x40))
				v := byte(0, mload(add(signature, 0x60)))
			}
			return tryRecover(hash, v, r, s);
		} else if (signature.length == 64) {
			bytes32 r;
			bytes32 vs;
			// ecrecover takes the signature parameters, and the only way to get them
			// currently is to use assembly.
			assembly {
				r := mload(add(signature, 0x20))
				vs := mload(add(signature, 0x40))
			}
			return tryRecover(hash, r, vs);
		} else {
			return (address(0), RecoverError.InvalidSignatureLength);
		}
	}

	/**
	 * @dev Returns the address that signed a hashed message (`hash`) with
	 * `signature`. This address can then be used for verification purposes.
	 *
	 * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
	 * this function rejects them by requiring the `s` value to be in the lower
	 * half order, and the `v` value to be either 27 or 28.
	 *
	 * IMPORTANT: `hash` _must_ be the result of a hash operation for the
	 * verification to be secure: it is possible to craft signatures that
	 * recover to arbitrary addresses for non-hashed data. A safe way to ensure
	 * this is by receiving a hash of the original message (which may otherwise
	 * be too long), and then calling {toEthSignedMessageHash} on it.
	 */
	function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
		(address recovered, RecoverError error) = tryRecover(hash, signature);
		_throwError(error);
		return recovered;
	}

	/**
	 * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
	 *
	 * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
	 *
	 * _Available since v4.3._
	 */
	function tryRecover(
		bytes32 hash,
		bytes32 r,
		bytes32 vs
	) internal pure returns (address, RecoverError) {
		bytes32 s;
		uint8 v;
		assembly {
			s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
			v := add(shr(255, vs), 27)
		}
		return tryRecover(hash, v, r, s);
	}

	/**
	 * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
	 *
	 * _Available since v4.2._
	 */
	function recover(
		bytes32 hash,
		bytes32 r,
		bytes32 vs
	) internal pure returns (address) {
		(address recovered, RecoverError error) = tryRecover(hash, r, vs);
		_throwError(error);
		return recovered;
	}

	/**
	 * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
	 * `r` and `s` signature fields separately.
	 *
	 * _Available since v4.3._
	 */
	function tryRecover(
		bytes32 hash,
		uint8 v,
		bytes32 r,
		bytes32 s
	) internal pure returns (address, RecoverError) {
		// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
		// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
		// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
		// signatures from current libraries generate a unique signature with an s-value in the lower half order.
		//
		// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
		// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
		// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
		// these malleable signatures as well.
		if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
			return (address(0), RecoverError.InvalidSignatureS);
		}
		if (v != 27 && v != 28) {
			return (address(0), RecoverError.InvalidSignatureV);
		}

		// If the signature is valid (and not malleable), return the signer address
		address signer = ecrecover(hash, v, r, s);
		if (signer == address(0)) {
			return (address(0), RecoverError.InvalidSignature);
		}

		return (signer, RecoverError.NoError);
	}

	/**
	 * @dev Overload of {ECDSA-recover} that receives the `v`,
	 * `r` and `s` signature fields separately.
	 */
	function recover(
		bytes32 hash,
		uint8 v,
		bytes32 r,
		bytes32 s
	) internal pure returns (address) {
		(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
		_throwError(error);
		return recovered;
	}

	/**
	 * @dev Returns an Ethereum Signed Message, created from a `hash`. This
	 * produces hash corresponding to the one signed with the
	 * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
	 * JSON-RPC method as part of EIP-191.
	 *
	 * See {recover}.
	 */
	function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
		// 32 is the length in bytes of hash,
		// enforced by the type signature above
		return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
	}

	/**
	 * @dev Returns an Ethereum Signed Message, created from `s`. This
	 * produces hash corresponding to the one signed with the
	 * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
	 * JSON-RPC method as part of EIP-191.
	 *
	 * See {recover}.
	 */
	function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
		return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
	}

	/**
	 * @dev Returns an Ethereum Signed Typed Data, created from a
	 * `domainSeparator` and a `structHash`. This produces hash corresponding
	 * to the one signed with the
	 * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
	 * JSON-RPC method as part of EIP-712.
	 *
	 * See {recover}.
	 */
	function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
		return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
	}
}


/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
	// To implement this library for multiple types with as little code
	// repetition as possible, we write it in terms of a generic Set type with
	// bytes32 values.
	// The Set implementation uses private functions, and user-facing
	// implementations (such as AddressSet) are just wrappers around the
	// underlying Set.
	// This means that we can only create new EnumerableSets for types that fit
	// in bytes32.

	struct Set {
		// Storage of set values
		bytes32[] _values;
		// Position of the value in the `values` array, plus 1 because index 0
		// means a value is not in the set.
		mapping(bytes32 => uint256) _indexes;
	}

	/**
	 * @dev Add a value to a set. O(1).
	 *
	 * Returns true if the value was added to the set, that is if it was not
	 * already present.
	 */
	function _add(Set storage set, bytes32 value) private returns (bool) {
		if (!_contains(set, value)) {
			set._values.push(value);
			// The value is stored at length-1, but we add 1 to all indexes
			// and use 0 as a sentinel value
			set._indexes[value] = set._values.length;
			return true;
		} else {
			return false;
		}
	}

	/**
	 * @dev Removes a value from a set. O(1).
	 *
	 * Returns true if the value was removed from the set, that is if it was
	 * present.
	 */
	function _remove(Set storage set, bytes32 value) private returns (bool) {
		// We read and store the value's index to prevent multiple reads from the same storage slot
		uint256 valueIndex = set._indexes[value];

		if (valueIndex != 0) {
			// Equivalent to contains(set, value)
			// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
			// the array, and then remove the last element (sometimes called as 'swap and pop').
			// This modifies the order of the array, as noted in {at}.

			uint256 toDeleteIndex = valueIndex - 1;
			uint256 lastIndex = set._values.length - 1;

			if (lastIndex != toDeleteIndex) {
				bytes32 lastvalue = set._values[lastIndex];

				// Move the last value to the index where the value to delete is
				set._values[toDeleteIndex] = lastvalue;
				// Update the index for the moved value
				set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
			}

			// Delete the slot where the moved value was stored
			set._values.pop();

			// Delete the index for the deleted slot
			delete set._indexes[value];

			return true;
		} else {
			return false;
		}
	}

	/**
	 * @dev Returns true if the value is in the set. O(1).
	 */
	function _contains(Set storage set, bytes32 value) private view returns (bool) {
		return set._indexes[value] != 0;
	}

	/**
	 * @dev Returns the number of values on the set. O(1).
	 */
	function _length(Set storage set) private view returns (uint256) {
		return set._values.length;
	}

	/**
	 * @dev Returns the value stored at position `index` in the set. O(1).
	 *
	 * Note that there are no guarantees on the ordering of values inside the
	 * array, and it may change when more values are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function _at(Set storage set, uint256 index) private view returns (bytes32) {
		return set._values[index];
	}

	/**
	 * @dev Return the entire set in an array
	 *
	 * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
	 * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
	 * this function has an unbounded cost, and using it as part of a state-changing function may render the function
	 * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
	 */
	function _values(Set storage set) private view returns (bytes32[] memory) {
		return set._values;
	}

	// Bytes32Set

	struct Bytes32Set {
		Set _inner;
	}

	/**
	 * @dev Add a value to a set. O(1).
	 *
	 * Returns true if the value was added to the set, that is if it was not
	 * already present.
	 */
	function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
		return _add(set._inner, value);
	}

	/**
	 * @dev Removes a value from a set. O(1).
	 *
	 * Returns true if the value was removed from the set, that is if it was
	 * present.
	 */
	function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
		return _remove(set._inner, value);
	}

	/**
	 * @dev Returns true if the value is in the set. O(1).
	 */
	function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
		return _contains(set._inner, value);
	}

	/**
	 * @dev Returns the number of values in the set. O(1).
	 */
	function length(Bytes32Set storage set) internal view returns (uint256) {
		return _length(set._inner);
	}

	/**
	 * @dev Returns the value stored at position `index` in the set. O(1).
	 *
	 * Note that there are no guarantees on the ordering of values inside the
	 * array, and it may change when more values are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
		return _at(set._inner, index);
	}

	/**
	 * @dev Return the entire set in an array
	 *
	 * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
	 * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
	 * this function has an unbounded cost, and using it as part of a state-changing function may render the function
	 * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
	 */
	function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
		return _values(set._inner);
	}

	// AddressSet

	struct AddressSet {
		Set _inner;
	}

	/**
	 * @dev Add a value to a set. O(1).
	 *
	 * Returns true if the value was added to the set, that is if it was not
	 * already present.
	 */
	function add(AddressSet storage set, address value) internal returns (bool) {
		return _add(set._inner, bytes32(uint256(uint160(value))));
	}

	/**
	 * @dev Removes a value from a set. O(1).
	 *
	 * Returns true if the value was removed from the set, that is if it was
	 * present.
	 */
	function remove(AddressSet storage set, address value) internal returns (bool) {
		return _remove(set._inner, bytes32(uint256(uint160(value))));
	}

	/**
	 * @dev Returns true if the value is in the set. O(1).
	 */
	function contains(AddressSet storage set, address value) internal view returns (bool) {
		return _contains(set._inner, bytes32(uint256(uint160(value))));
	}

	/**
	 * @dev Returns the number of values in the set. O(1).
	 */
	function length(AddressSet storage set) internal view returns (uint256) {
		return _length(set._inner);
	}

	/**
	 * @dev Returns the value stored at position `index` in the set. O(1).
	 *
	 * Note that there are no guarantees on the ordering of values inside the
	 * array, and it may change when more values are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function at(AddressSet storage set, uint256 index) internal view returns (address) {
		return address(uint160(uint256(_at(set._inner, index))));
	}

	/**
	 * @dev Return the entire set in an array
	 *
	 * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
	 * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
	 * this function has an unbounded cost, and using it as part of a state-changing function may render the function
	 * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
	 */
	function values(AddressSet storage set) internal view returns (address[] memory) {
		bytes32[] memory store = _values(set._inner);
		address[] memory result;

		assembly {
			result := store
		}

		return result;
	}

	// UintSet

	struct UintSet {
		Set _inner;
	}

	/**
	 * @dev Add a value to a set. O(1).
	 *
	 * Returns true if the value was added to the set, that is if it was not
	 * already present.
	 */
	function add(UintSet storage set, uint256 value) internal returns (bool) {
		return _add(set._inner, bytes32(value));
	}

	/**
	 * @dev Removes a value from a set. O(1).
	 *
	 * Returns true if the value was removed from the set, that is if it was
	 * present.
	 */
	function remove(UintSet storage set, uint256 value) internal returns (bool) {
		return _remove(set._inner, bytes32(value));
	}

	/**
	 * @dev Returns true if the value is in the set. O(1).
	 */
	function contains(UintSet storage set, uint256 value) internal view returns (bool) {
		return _contains(set._inner, bytes32(value));
	}

	/**
	 * @dev Returns the number of values on the set. O(1).
	 */
	function length(UintSet storage set) internal view returns (uint256) {
		return _length(set._inner);
	}

	/**
	 * @dev Returns the value stored at position `index` in the set. O(1).
	 *
	 * Note that there are no guarantees on the ordering of values inside the
	 * array, and it may change when more values are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function at(UintSet storage set, uint256 index) internal view returns (uint256) {
		return uint256(_at(set._inner, index));
	}

	/**
	 * @dev Return the entire set in an array
	 *
	 * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
	 * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
	 * this function has an unbounded cost, and using it as part of a state-changing function may render the function
	 * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
	 */
	function values(UintSet storage set) internal view returns (uint256[] memory) {
		bytes32[] memory store = _values(set._inner);
		uint256[] memory result;

		assembly {
			result := store
		}

		return result;
	}
}


/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
	using EnumerableSet for EnumerableSet.Bytes32Set;

	// To implement this library for multiple types with as little code
	// repetition as possible, we write it in terms of a generic Map type with
	// bytes32 keys and values.
	// The Map implementation uses private functions, and user-facing
	// implementations (such as Uint256ToAddressMap) are just wrappers around
	// the underlying Map.
	// This means that we can only create new EnumerableMaps for types that fit
	// in bytes32.

	struct Map {
		// Storage of keys
		EnumerableSet.Bytes32Set _keys;
		mapping(bytes32 => bytes32) _values;
	}

	/**
	 * @dev Adds a key-value pair to a map, or updates the value for an existing
	 * key. O(1).
	 *
	 * Returns true if the key was added to the map, that is if it was not
	 * already present.
	 */
	function _set(
		Map storage map,
		bytes32 key,
		bytes32 value
	) private returns (bool) {
		map._values[key] = value;
		return map._keys.add(key);
	}

	/**
	 * @dev Removes a key-value pair from a map. O(1).
	 *
	 * Returns true if the key was removed from the map, that is if it was present.
	 */
	function _remove(Map storage map, bytes32 key) private returns (bool) {
		delete map._values[key];
		return map._keys.remove(key);
	}

	/**
	 * @dev Returns true if the key is in the map. O(1).
	 */
	function _contains(Map storage map, bytes32 key) private view returns (bool) {
		return map._keys.contains(key);
	}

	/**
	 * @dev Returns the number of key-value pairs in the map. O(1).
	 */
	function _length(Map storage map) private view returns (uint256) {
		return map._keys.length();
	}

	/**
	 * @dev Returns the key-value pair stored at position `index` in the map. O(1).
	 *
	 * Note that there are no guarantees on the ordering of entries inside the
	 * array, and it may change when more entries are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
		bytes32 key = map._keys.at(index);
		return (key, map._values[key]);
	}

	/**
	 * @dev Tries to returns the value associated with `key`.  O(1).
	 * Does not revert if `key` is not in the map.
	 */
	function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
		bytes32 value = map._values[key];
		if (value == bytes32(0)) {
			return (_contains(map, key), bytes32(0));
		} else {
			return (true, value);
		}
	}

	/**
	 * @dev Returns the value associated with `key`.  O(1).
	 *
	 * Requirements:
	 *
	 * - `key` must be in the map.
	 */
	function _get(Map storage map, bytes32 key) private view returns (bytes32) {
		bytes32 value = map._values[key];
		require(value != 0 || _contains(map, key), "EnumerableMap: nonexistent key");
		return value;
	}

	/**
	 * @dev Same as {_get}, with a custom error message when `key` is not in the map.
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {_tryGet}.
	 */
	function _get(
		Map storage map,
		bytes32 key,
		string memory errorMessage
	) private view returns (bytes32) {
		bytes32 value = map._values[key];
		require(value != 0 || _contains(map, key), errorMessage);
		return value;
	}

	// UintToAddressMap

	struct UintToAddressMap {
		Map _inner;
	}

	/**
	 * @dev Adds a key-value pair to a map, or updates the value for an existing
	 * key. O(1).
	 *
	 * Returns true if the key was added to the map, that is if it was not
	 * already present.
	 */
	function set(
		UintToAddressMap storage map,
		uint256 key,
		address value
	) internal returns (bool) {
		return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
	}

	/**
	 * @dev Removes a value from a set. O(1).
	 *
	 * Returns true if the key was removed from the map, that is if it was present.
	 */
	function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
		return _remove(map._inner, bytes32(key));
	}

	/**
	 * @dev Returns true if the key is in the map. O(1).
	 */
	function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
		return _contains(map._inner, bytes32(key));
	}

	/**
	 * @dev Returns the number of elements in the map. O(1).
	 */
	function length(UintToAddressMap storage map) internal view returns (uint256) {
		return _length(map._inner);
	}

	/**
	 * @dev Returns the element stored at position `index` in the set. O(1).
	 * Note that there are no guarantees on the ordering of values inside the
	 * array, and it may change when more values are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
		(bytes32 key, bytes32 value) = _at(map._inner, index);
		return (uint256(key), address(uint160(uint256(value))));
	}

	/**
	 * @dev Tries to returns the value associated with `key`.  O(1).
	 * Does not revert if `key` is not in the map.
	 *
	 * _Available since v3.4._
	 */
	function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
		(bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
		return (success, address(uint160(uint256(value))));
	}

	/**
	 * @dev Returns the value associated with `key`.  O(1).
	 *
	 * Requirements:
	 *
	 * - `key` must be in the map.
	 */
	function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
		return address(uint160(uint256(_get(map._inner, bytes32(key)))));
	}

	/**
	 * @dev Same as {get}, with a custom error message when `key` is not in the map.
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {tryGet}.
	 */
	function get(
		UintToAddressMap storage map,
		uint256 key,
		string memory errorMessage
	) internal view returns (address) {
		return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalizeStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"general_sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"string","name":"_id","type":"string"},{"internalType":"string","name":"_timestamp","type":"string"},{"internalType":"string","name":"_sale","type":"string"}],"name":"isWalletAuthorisedToMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"max_token_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_tokens_per_transaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num_tokens","type":"uint256"}],"name":"mintStarPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num_tokens","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"string","name":"_id","type":"string"},{"internalType":"string","name":"_timestamp","type":"string"}],"name":"mintStarRaffle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"string","name":"_id","type":"string"},{"internalType":"string","name":"_timestamp","type":"string"}],"name":"mintStarWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"string","name":"_id","type":"string"},{"internalType":"string","name":"_timestamp","type":"string"}],"name":"mintStarsWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance_hash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_raffle_sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_new_token_base_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setGeneralSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setPublicRaffleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setWhitelistSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"starting_index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"starting_index_block","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"token_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"whitelist_sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6002600d556702c68af0bb140000600e556107d0600f556012805462ffffff1916905560a06040819052600060808190526200003e9160139162000212565b503480156200004c57600080fd5b50604080518082018252601981527f54686520536f6c6156657273653a20534f4c412d5354415253000000000000006020808301919091528251808401909352600983526829a7a62096a9aa20a960b91b9083015290620000b46301ffc9a760e01b62000137565b8151620000c990600790602085019062000212565b508051620000df90600890602084019062000212565b50620000f26380ac58cd60e01b62000137565b62000104635b5e139f60e01b62000137565b6200011663780e9d6360e01b62000137565b50506001600b55620001316200012b620001bc565b620001c0565b620002be565b6001600160e01b0319808216141562000197576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200024a576000855562000295565b82601f106200026557805160ff191683800117855562000295565b8280016001018555821562000295579182015b828111156200029557825182559160200191906001019062000278565b50620002a3929150620002a7565b5090565b5b80821115620002a35760008155600101620002a8565b613f5880620002ce6000396000f3fe6080604052600436106102d15760003560e01c806367e0bd25116101795780638da5cb5b116100d6578063bf23943b1161008a578063d0ba9e5411610064578063d0ba9e5414610f3d578063e985e9c51461118d578063f2fde38b146111c8576102d1565b8063bf23943b14610ee9578063c22328c614610efe578063c87b56dd14610f13576102d1565b8063a22cb465116100bb578063a22cb46514610c28578063b6e1b50f14610c63578063b88d4fde14610e18576102d1565b80638da5cb5b14610bfe57806395d89b4114610c13576102d1565b806370a082311161012d57806374df39c91161011257806374df39c914610bbf5780637b4fd96e14610bd45780637d17fcbe14610be9576102d1565b806370a0823114610b77578063715018a614610baa576102d1565b80636c0360eb1161015e5780636c0360eb14610b215780636d59fad614610b365780636fdca22714610b62576102d1565b806367e0bd251461093a5780636a78f22714610af5576102d1565b80632f745c59116102325780634d7b6358116101e657806355f804b3116101c057806355f804b3146108335780635c430931146108e45780636352211e14610910576102d1565b80634d7b63581461063e5780634ef7d5961461065b5780634f6ccce714610809576102d1565b80633ccfd60b116102175780633ccfd60b146105d157806341fb9679146105e657806342842e0e146105fb576102d1565b80632f745c591461058357806332f5cb05146105bc576102d1565b8063153f1a95116102895780631d6d9c8f1161026e5780631d6d9c8f1461051657806323b872dd1461052b5780632a39b67f1461056e576102d1565b8063153f1a95146104da57806318160ddd14610501576102d1565b8063081812fc116102ba578063081812fc146103a8578063095ea7b3146103ee5780631096952314610429576102d1565b806301ffc9a7146102d657806306fdde031461031e575b600080fd5b3480156102e257600080fd5b5061030a600480360360208110156102f957600080fd5b50356001600160e01b0319166111fb565b604080519115158252519081900360200190f35b34801561032a57600080fd5b5061033361121e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561036d578181015183820152602001610355565b50505050905090810190601f16801561039a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b457600080fd5b506103d2600480360360208110156103cb57600080fd5b50356112b4565b604080516001600160a01b039092168252519081900360200190f35b3480156103fa57600080fd5b506104276004803603604081101561041157600080fd5b506001600160a01b038135169060200135611316565b005b34801561043557600080fd5b506104276004803603602081101561044c57600080fd5b810190602081018135600160201b81111561046657600080fd5b82018360208201111561047857600080fd5b803590602001918460018302840111600160201b8311171561049957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506113f1945050505050565b3480156104e657600080fd5b506104ef61146a565b60408051918252519081900360200190f35b34801561050d57600080fd5b506104ef611470565b34801561052257600080fd5b506104ef611481565b34801561053757600080fd5b506104276004803603606081101561054e57600080fd5b506001600160a01b03813581169160208101359091169060400135611487565b34801561057a57600080fd5b5061030a6114de565b34801561058f57600080fd5b506104ef600480360360408110156105a657600080fd5b506001600160a01b0381351690602001356114ed565b3480156105c857600080fd5b50610333611518565b3480156105dd57600080fd5b506104276115a6565b3480156105f257600080fd5b506104ef611688565b34801561060757600080fd5b506104276004803603606081101561061e57600080fd5b506001600160a01b0381358116916020810135909116906040013561168e565b6104276004803603602081101561065457600080fd5b50356116a9565b6104276004803603606081101561067157600080fd5b810190602081018135600160201b81111561068b57600080fd5b82018360208201111561069d57600080fd5b803590602001918460018302840111600160201b831117156106be57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561071057600080fd5b82018360208201111561072257600080fd5b803590602001918460018302840111600160201b8311171561074357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561079557600080fd5b8201836020820111156107a757600080fd5b803590602001918460018302840111600160201b831117156107c857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506117be945050505050565b34801561081557600080fd5b506104ef6004803603602081101561082c57600080fd5b5035611a08565b34801561083f57600080fd5b506104276004803603602081101561085657600080fd5b810190602081018135600160201b81111561087057600080fd5b82018360208201111561088257600080fd5b803590602001918460018302840111600160201b831117156108a357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611a1e945050505050565b3480156108f057600080fd5b506104276004803603602081101561090757600080fd5b50351515611a8c565b34801561091c57600080fd5b506103d26004803603602081101561093357600080fd5b5035611b08565b34801561094657600080fd5b506104276004803603606081101561095d57600080fd5b810190602081018135600160201b81111561097757600080fd5b82018360208201111561098957600080fd5b803590602001918460018302840111600160201b831117156109aa57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156109fc57600080fd5b820183602082011115610a0e57600080fd5b803590602001918460018302840111600160201b83111715610a2f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610a8157600080fd5b820183602082011115610a9357600080fd5b803590602001918460018302840111600160201b83111715610ab457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611b30945050505050565b348015610b0157600080fd5b5061042760048036036020811015610b1857600080fd5b50351515611d28565b348015610b2d57600080fd5b50610333611d9d565b348015610b4257600080fd5b5061042760048036036020811015610b5957600080fd5b50351515611dfe565b348015610b6e57600080fd5b5061030a611e7c565b348015610b8357600080fd5b506104ef60048036036020811015610b9a57600080fd5b50356001600160a01b0316611e85565b348015610bb657600080fd5b50610427611eed565b348015610bcb57600080fd5b50610427611f5b565b348015610be057600080fd5b506104ef61205c565b348015610bf557600080fd5b50610427612062565b348015610c0a57600080fd5b506103d261211f565b348015610c1f57600080fd5b5061033361212e565b348015610c3457600080fd5b5061042760048036036040811015610c4b57600080fd5b506001600160a01b038135169060200135151561218f565b61042760048036036080811015610c7957600080fd5b81359190810190604081016020820135600160201b811115610c9a57600080fd5b820183602082011115610cac57600080fd5b803590602001918460018302840111600160201b83111715610ccd57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610d1f57600080fd5b820183602082011115610d3157600080fd5b803590602001918460018302840111600160201b83111715610d5257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610da457600080fd5b820183602082011115610db657600080fd5b803590602001918460018302840111600160201b83111715610dd757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612294945050505050565b348015610e2457600080fd5b5061042760048036036080811015610e3b57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610e7557600080fd5b820183602082011115610e8757600080fd5b803590602001918460018302840111600160201b83111715610ea857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506124f9945050505050565b348015610ef557600080fd5b5061030a612557565b348015610f0a57600080fd5b506104ef612565565b348015610f1f57600080fd5b5061033360048036036020811015610f3657600080fd5b503561256b565b348015610f4957600080fd5b5061030a600480360360a0811015610f6057600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610f8a57600080fd5b820183602082011115610f9c57600080fd5b803590602001918460018302840111600160201b83111715610fbd57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561100f57600080fd5b82018360208201111561102157600080fd5b803590602001918460018302840111600160201b8311171561104257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561109457600080fd5b8201836020820111156110a657600080fd5b803590602001918460018302840111600160201b831117156110c757600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561111957600080fd5b82018360208201111561112b57600080fd5b803590602001918460018302840111600160201b8311171561114c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506127ec945050505050565b34801561119957600080fd5b5061030a600480360360408110156111b057600080fd5b506001600160a01b038135811691602001351661298a565b3480156111d457600080fd5b50610427600480360360208110156111eb57600080fd5b50356001600160a01b03166129b8565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156112aa5780601f1061127f576101008083540402835291602001916112aa565b820191906000526020600020905b81548152906001019060200180831161128d57829003601f168201915b5050505050905090565b60006112bf82612a68565b6112fa5760405162461bcd60e51b815260040180806020018281038252602c815260200180613e2d602c913960400191505060405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061132182611b08565b9050806001600160a01b0316836001600160a01b031614156113745760405162461bcd60e51b8152600401808060200182810382526021815260200180613ed16021913960400191505060405180910390fd5b806001600160a01b0316611386612a75565b6001600160a01b031614806113a757506113a7816113a2612a75565b61298a565b6113e25760405162461bcd60e51b8152600401808060200182810382526038815260200180613d806038913960400191505060405180910390fd5b6113ec8383612a79565b505050565b6113f9612a75565b6001600160a01b031661140a61211f565b6001600160a01b031614611453576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b8051611466906013906020840190613bee565b5050565b600f5481565b600061147c6002612af4565b905090565b60105481565b611498611492612a75565b82612aff565b6114d35760405162461bcd60e51b8152600401808060200182810382526031815260200180613ef26031913960400191505060405180910390fd5b6113ec838383612ba3565b60125462010000900460ff1681565b6001600160a01b038216600090815260016020526040812061150f9083612cef565b90505b92915050565b6013805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561159e5780601f106115735761010080835404028352916020019161159e565b820191906000526020600020905b81548152906001019060200180831161158157829003601f168201915b505050505081565b6115ae612a75565b6001600160a01b03166115bf61211f565b6001600160a01b031614611608576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b478061165b576040805162461bcd60e51b815260206004820152600c60248201527f42616c616e636520697320300000000000000000000000000000000000000000604482015290519081900360640190fd5b604051339082156108fc029083906000818181858888f19350505050158015611466573d6000803e3d6000fd5b60115481565b6113ec838383604051806020016040528060008152506124f9565b6002600b541415611701576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b5560125462010000900460ff16611763576040805162461bcd60e51b815260206004820152601560248201527f47656e6572616c2073616c65206e6f74206f70656e0000000000000000000000604482015290519081900360640190fd5b80600e54023410156117ad576040805162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015290519081900360640190fd5b6117b681612cfb565b506001600b55565b6002600b541415611816576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b5560125460ff16611872576040805162461bcd60e51b815260206004820152601260248201527f57686974656c697374206e6f74206f70656e0000000000000000000000000000604482015290519081900360640190fd5b600e543410156118ba576040805162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015290519081900360640190fd5b6118e8338484846040518060400160405280600981526020016815da1a5d195b1a5cdd60ba1b8152506127ec565b611939576040805162461bcd60e51b815260206004820152601660248201527f4e6f7420617574686f726973656420746f206d696e7400000000000000000000604482015290519081900360640190fd5b604080516370a0823160e01b8152336004820152905130916370a08231916024808301926020929190829003018186803b15801561197657600080fd5b505afa15801561198a573d6000803e3d6000fd5b505050506040513d60208110156119a057600080fd5b5051156119f4576040805162461bcd60e51b815260206004820152601960248201527f57616c6c65742068617320616c7265616479206d696e74656400000000000000604482015290519081900360640190fd5b6119fe6002612cfb565b50506001600b5550565b600080611a16600284612e15565b509392505050565b611a26612a75565b6001600160a01b0316611a3761211f565b6001600160a01b031614611a80576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b611a8981612e33565b50565b611a94612a75565b6001600160a01b0316611aa561211f565b6001600160a01b031614611aee576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b601280549115156101000261ff0019909216919091179055565b600061151282604051806060016040528060298152602001613de26029913960029190612e46565b6002600b541415611b88576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b5560125460ff16611be4576040805162461bcd60e51b815260206004820152601260248201527f57686974656c697374206e6f74206f70656e0000000000000000000000000000604482015290519081900360640190fd5b611c12338484846040518060400160405280600981526020016815da1a5d195b1a5cdd60ba1b8152506127ec565b611c63576040805162461bcd60e51b815260206004820152601660248201527f4e6f7420617574686f726973656420746f206d696e7400000000000000000000604482015290519081900360640190fd5b604080516370a0823160e01b8152336004820152905130916370a08231916024808301926020929190829003018186803b158015611ca057600080fd5b505afa158015611cb4573d6000803e3d6000fd5b505050506040513d6020811015611cca57600080fd5b505115611d1e576040805162461bcd60e51b815260206004820152601960248201527f57616c6c65742068617320616c7265616479206d696e74656400000000000000604482015290519081900360640190fd5b6119fe6001612cfb565b611d30612a75565b6001600160a01b0316611d4161211f565b6001600160a01b031614611d8a576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b6012805460ff1916911515919091179055565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156112aa5780601f1061127f576101008083540402835291602001916112aa565b611e06612a75565b6001600160a01b0316611e1761211f565b6001600160a01b031614611e60576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b60128054911515620100000262ff000019909216919091179055565b60125460ff1681565b60006001600160a01b038216611ecc5760405162461bcd60e51b815260040180806020018281038252602a815260200180613db8602a913960400191505060405180910390fd5b6001600160a01b038216600090815260016020526040902061151290612e5d565b611ef5612a75565b6001600160a01b0316611f0661211f565b6001600160a01b031614611f4f576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b611f596000612e68565b565b60115415611fb0576040805162461bcd60e51b815260206004820152601a60248201527f5374617274696e6720696e64657820616c726561647920736574000000000000604482015290519081900360640190fd5b601054612004576040805162461bcd60e51b815260206004820152601c60248201527f5374617274696e6720696e64657820626c6f636b206e6f742073657400000000604482015290519081900360640190fd5b600f54601054408161201257fe5b0660115560105460ff90612027904390612ec7565b111561204257600f546000194301408161203d57fe5b066011555b601154611f5957601154612057906001612f24565b601155565b600e5481565b61206a612a75565b6001600160a01b031661207b61211f565b6001600160a01b0316146120c4576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b60115415612119576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b43601055565b600c546001600160a01b031690565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156112aa5780601f1061127f576101008083540402835291602001916112aa565b612197612a75565b6001600160a01b0316826001600160a01b031614156121fd576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806006600061220a612a75565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561224e612a75565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6002600b5414156122ec576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b55601254610100900460ff1661234d576040805162461bcd60e51b815260206004820152601660248201527f5075626c696320526166666c65206e6f74206f70656e00000000000000000000604482015290519081900360640190fd5b83600e5402341015612397576040805162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015290519081900360640190fd5b6123d9338484846040518060400160405280600d81526020017f5075626c69632d526166666c65000000000000000000000000000000000000008152506127ec565b61242a576040805162461bcd60e51b815260206004820152601660248201527f4e6f7420617574686f726973656420746f206d696e7400000000000000000000604482015290519081900360640190fd5b604080516370a0823160e01b8152336004820152905130916370a08231916024808301926020929190829003018186803b15801561246757600080fd5b505afa15801561247b573d6000803e3d6000fd5b505050506040513d602081101561249157600080fd5b5051156124e5576040805162461bcd60e51b815260206004820152601960248201527f57616c6c65742068617320616c7265616479206d696e74656400000000000000604482015290519081900360640190fd5b6124ee84612cfb565b50506001600b555050565b61250a612504612a75565b83612aff565b6125455760405162461bcd60e51b8152600401808060200182810382526031815260200180613ef26031913960400191505060405180910390fd5b61255184848484612f7e565b50505050565b601254610100900460ff1681565b600d5481565b606061257682612a68565b6125b15760405162461bcd60e51b815260040180806020018281038252602f815260200180613ea2602f913960400191505060405180910390fd5b60008281526009602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156126445780601f1061261957610100808354040283529160200191612644565b820191906000526020600020905b81548152906001019060200180831161262757829003601f168201915b505050505090506000612655611d9d565b905080516000141561266957509050611219565b81511561272a5780826040516020018083805190602001908083835b602083106126a45780518252601f199092019160209182019101612685565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106126ec5780518252601f1990920191602091820191016126cd565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050611219565b8061273485612fd0565b6040516020018083805190602001908083835b602083106127665780518252601f199092019160209182019101612747565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106127ae5780518252601f19909201916020918201910161278f565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6000856001600160a01b031661297661297084878760405160200180807f546f6b656e2d000000000000000000000000000000000000000000000000000081525060060184805190602001908083835b6020831061285b5780518252601f19909201916020918201910161283c565b51815160209384036101000a60001901801990921691161790527f2d4d696e742d2d00000000000000000000000000000000000000000000000000919093019081528551600790910192860191508083835b602083106128cc5780518252601f1990920191602091820191016128ad565b51815160209384036101000a6000190180199092169116179052612d2d60f01b919093019081528451600290910192850191508083835b602083106129225780518252601f199092019160209182019101612903565b6001836020036101000a03801982511681845116808217855250505050505090500180601760f91b8152506001019350505050604051602081830303815290604052805190602001206130c3565b87613114565b6001600160a01b0316149695505050505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6129c0612a75565b6001600160a01b03166129d161211f565b6001600160a01b031614612a1a576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b6001600160a01b038116612a5f5760405162461bcd60e51b8152600401808060200182810382526026815260200180613cc26026913960400191505060405180910390fd5b611a8981612e68565b6000611512600283613130565b3390565b6000818152600560205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612abb82611b08565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115128261313c565b6000612b0a82612a68565b612b455760405162461bcd60e51b815260040180806020018281038252602c815260200180613d54602c913960400191505060405180910390fd5b6000612b5083611b08565b9050806001600160a01b0316846001600160a01b03161480612b8b5750836001600160a01b0316612b80846112b4565b6001600160a01b0316145b80612b9b5750612b9b818561298a565b949350505050565b826001600160a01b0316612bb682611b08565b6001600160a01b031614612bfb5760405162461bcd60e51b8152600401808060200182810382526029815260200180613e796029913960400191505060405180910390fd5b6001600160a01b038216612c405760405162461bcd60e51b8152600401808060200182810382526024815260200180613ce86024913960400191505060405180910390fd5b612c4b8383836113ec565b612c56600082612a79565b6001600160a01b0383166000908152600160205260409020612c789082613147565b506001600160a01b0382166000908152600160205260409020612c9b9082613153565b50612ca86002828461315f565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061150f8383613175565b600081118015612d0d5750600d548111155b612d5e576040805162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e742074686174206d616e7920746f6b656e7300000000604482015290519081900360640190fd5b600f54612d7382612d6d611470565b90612f24565b1115612dc6576040805162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820746f6b656e7320617661696c61626c6500000000604482015290519081900360640190fd5b60005b81811015612df0576000612ddb611470565b9050612de73382613199565b50600101612dc9565b50601054158015612e095750600f54612e07611470565b145b15611a89574360105550565b6000808080612e2486866131b3565b909450925050505b9250929050565b805161146690600a906020840190613bee565b6000612e538484846131de565b90505b9392505050565b60006115128261328c565b600c80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082821115612f1e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561150f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b612f89848484612ba3565b612f9584848484613290565b6125515760405162461bcd60e51b8152600401808060200182810382526032815260200180613c906032913960400191505060405180910390fd5b606081612ff557506040805180820190915260018152600360fc1b6020820152611219565b8160005b811561300d57600101600a82049150612ff9565b60008167ffffffffffffffff8111801561302657600080fd5b506040519080825280601f01601f191660200182016040528015613051576020820181803683370190505b50859350905060001982015b83156130ba57600a840660300160f81b8282806001900393508151811061308057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8404935061305d565b50949350505050565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b60008060006131238585613422565b91509150611a168161348f565b600061150f8383613600565b600061151282612e5d565b600061150f838361360c565b600061150f83836136d4565b6000612e5384846001600160a01b03851661371e565b600082600001828154811061318657fe5b9060005260206000200154905092915050565b61146682826040518060200160405280600081525061373b565b600080806131c18585612cef565b600081815260029690960160205260409095205494959350505050565b60008281526002840160205260408120548015158061320257506132028585613600565b83906130ba5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613251578181015183820152602001613239565b50505050905090810190601f16801561327e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5490565b60006132a4846001600160a01b031661378d565b6132b057506001612b9b565b60006133e8630a85bd0160e11b6132c5612a75565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561332c578181015183820152602001613314565b50505050905090810190601f1680156133595780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001613c90603291396001600160a01b0388169190613793565b9050600081806020019051602081101561340157600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b6000808251604114156134595760208301516040840151606085015160001a61344d878285856137a2565b94509450505050612e2c565b8251604014156134835760208301516040840151613478868383613897565b935093505050612e2c565b50600090506002612e2c565b600081600481111561349d57fe5b14156134a857611a89565b60018160048111156134b657fe5b1415613509576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b600281600481111561351757fe5b141561356a576040805162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015290519081900360640190fd5b600381600481111561357857fe5b14156135b55760405162461bcd60e51b8152600401808060200182810382526022815260200180613d0c6022913960400191505060405180910390fd5b60048160048111156135c357fe5b1415611a895760405162461bcd60e51b8152600401808060200182810382526022815260200180613e0b6022913960400191505060405180910390fd5b600061150f83836138df565b600081815260018301602052604081205480156136ca578354600019808301910180821461368457600086600001828154811061364557fe5b906000526020600020015490508087600001848154811061366257fe5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061368f57fe5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611512565b6000915050611512565b60006136e083836138e7565b61371657508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611512565b506000611512565b60008281526002840160205260408120829055612e538484613153565b61374583836138ff565b6137526000848484613290565b6113ec5760405162461bcd60e51b8152600401808060200182810382526032815260200180613c906032913960400191505060405180910390fd5b3b151590565b6060612e538484600085613a2d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156137d9575060009050600361388e565b8460ff16601b141580156137f157508460ff16601c14155b15613802575060009050600461388e565b600060018787878760405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa15801561385e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166138875760006001925092505061388e565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016138d1878288856137a2565b935093505050935093915050565b600061150f83835b60009081526001919091016020526040902054151590565b6001600160a01b03821661395a576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61396381612a68565b156139b5576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6139c1600083836113ec565b6001600160a01b03821660009081526001602052604090206139e39082613153565b506139f06002828461315f565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015613a6e5760405162461bcd60e51b8152600401808060200182810382526026815260200180613d2e6026913960400191505060405180910390fd5b613a778561378d565b613ac8576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b60208310613b065780518252601f199092019160209182019101613ae7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613b68576040519150601f19603f3d011682016040523d82523d6000602084013e613b6d565b606091505b5091509150613b7d828286613b88565b979650505050505050565b60608315613b97575081612e56565b825115613ba75782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315613251578181015183820152602001613239565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613c245760008555613c6a565b82601f10613c3d57805160ff1916838001178555613c6a565b82800160010185558215613c6a579182015b82811115613c6a578251825591602001919060010190613c4f565b50613c76929150613c7a565b5090565b5b80821115613c765760008155600101613c7b56fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f206164647265737345434453413a20696e76616c6964207369676e6174757265202773272076616c7565416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e45434453413a20696e76616c6964207369676e6174757265202776272076616c75654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220051104b07cf7cccdf627eaa0dff1baa8223b15992ecb0e65d35ee252128b214164736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102d15760003560e01c806367e0bd25116101795780638da5cb5b116100d6578063bf23943b1161008a578063d0ba9e5411610064578063d0ba9e5414610f3d578063e985e9c51461118d578063f2fde38b146111c8576102d1565b8063bf23943b14610ee9578063c22328c614610efe578063c87b56dd14610f13576102d1565b8063a22cb465116100bb578063a22cb46514610c28578063b6e1b50f14610c63578063b88d4fde14610e18576102d1565b80638da5cb5b14610bfe57806395d89b4114610c13576102d1565b806370a082311161012d57806374df39c91161011257806374df39c914610bbf5780637b4fd96e14610bd45780637d17fcbe14610be9576102d1565b806370a0823114610b77578063715018a614610baa576102d1565b80636c0360eb1161015e5780636c0360eb14610b215780636d59fad614610b365780636fdca22714610b62576102d1565b806367e0bd251461093a5780636a78f22714610af5576102d1565b80632f745c59116102325780634d7b6358116101e657806355f804b3116101c057806355f804b3146108335780635c430931146108e45780636352211e14610910576102d1565b80634d7b63581461063e5780634ef7d5961461065b5780634f6ccce714610809576102d1565b80633ccfd60b116102175780633ccfd60b146105d157806341fb9679146105e657806342842e0e146105fb576102d1565b80632f745c591461058357806332f5cb05146105bc576102d1565b8063153f1a95116102895780631d6d9c8f1161026e5780631d6d9c8f1461051657806323b872dd1461052b5780632a39b67f1461056e576102d1565b8063153f1a95146104da57806318160ddd14610501576102d1565b8063081812fc116102ba578063081812fc146103a8578063095ea7b3146103ee5780631096952314610429576102d1565b806301ffc9a7146102d657806306fdde031461031e575b600080fd5b3480156102e257600080fd5b5061030a600480360360208110156102f957600080fd5b50356001600160e01b0319166111fb565b604080519115158252519081900360200190f35b34801561032a57600080fd5b5061033361121e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561036d578181015183820152602001610355565b50505050905090810190601f16801561039a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b457600080fd5b506103d2600480360360208110156103cb57600080fd5b50356112b4565b604080516001600160a01b039092168252519081900360200190f35b3480156103fa57600080fd5b506104276004803603604081101561041157600080fd5b506001600160a01b038135169060200135611316565b005b34801561043557600080fd5b506104276004803603602081101561044c57600080fd5b810190602081018135600160201b81111561046657600080fd5b82018360208201111561047857600080fd5b803590602001918460018302840111600160201b8311171561049957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506113f1945050505050565b3480156104e657600080fd5b506104ef61146a565b60408051918252519081900360200190f35b34801561050d57600080fd5b506104ef611470565b34801561052257600080fd5b506104ef611481565b34801561053757600080fd5b506104276004803603606081101561054e57600080fd5b506001600160a01b03813581169160208101359091169060400135611487565b34801561057a57600080fd5b5061030a6114de565b34801561058f57600080fd5b506104ef600480360360408110156105a657600080fd5b506001600160a01b0381351690602001356114ed565b3480156105c857600080fd5b50610333611518565b3480156105dd57600080fd5b506104276115a6565b3480156105f257600080fd5b506104ef611688565b34801561060757600080fd5b506104276004803603606081101561061e57600080fd5b506001600160a01b0381358116916020810135909116906040013561168e565b6104276004803603602081101561065457600080fd5b50356116a9565b6104276004803603606081101561067157600080fd5b810190602081018135600160201b81111561068b57600080fd5b82018360208201111561069d57600080fd5b803590602001918460018302840111600160201b831117156106be57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561071057600080fd5b82018360208201111561072257600080fd5b803590602001918460018302840111600160201b8311171561074357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561079557600080fd5b8201836020820111156107a757600080fd5b803590602001918460018302840111600160201b831117156107c857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506117be945050505050565b34801561081557600080fd5b506104ef6004803603602081101561082c57600080fd5b5035611a08565b34801561083f57600080fd5b506104276004803603602081101561085657600080fd5b810190602081018135600160201b81111561087057600080fd5b82018360208201111561088257600080fd5b803590602001918460018302840111600160201b831117156108a357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611a1e945050505050565b3480156108f057600080fd5b506104276004803603602081101561090757600080fd5b50351515611a8c565b34801561091c57600080fd5b506103d26004803603602081101561093357600080fd5b5035611b08565b34801561094657600080fd5b506104276004803603606081101561095d57600080fd5b810190602081018135600160201b81111561097757600080fd5b82018360208201111561098957600080fd5b803590602001918460018302840111600160201b831117156109aa57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156109fc57600080fd5b820183602082011115610a0e57600080fd5b803590602001918460018302840111600160201b83111715610a2f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610a8157600080fd5b820183602082011115610a9357600080fd5b803590602001918460018302840111600160201b83111715610ab457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611b30945050505050565b348015610b0157600080fd5b5061042760048036036020811015610b1857600080fd5b50351515611d28565b348015610b2d57600080fd5b50610333611d9d565b348015610b4257600080fd5b5061042760048036036020811015610b5957600080fd5b50351515611dfe565b348015610b6e57600080fd5b5061030a611e7c565b348015610b8357600080fd5b506104ef60048036036020811015610b9a57600080fd5b50356001600160a01b0316611e85565b348015610bb657600080fd5b50610427611eed565b348015610bcb57600080fd5b50610427611f5b565b348015610be057600080fd5b506104ef61205c565b348015610bf557600080fd5b50610427612062565b348015610c0a57600080fd5b506103d261211f565b348015610c1f57600080fd5b5061033361212e565b348015610c3457600080fd5b5061042760048036036040811015610c4b57600080fd5b506001600160a01b038135169060200135151561218f565b61042760048036036080811015610c7957600080fd5b81359190810190604081016020820135600160201b811115610c9a57600080fd5b820183602082011115610cac57600080fd5b803590602001918460018302840111600160201b83111715610ccd57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610d1f57600080fd5b820183602082011115610d3157600080fd5b803590602001918460018302840111600160201b83111715610d5257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610da457600080fd5b820183602082011115610db657600080fd5b803590602001918460018302840111600160201b83111715610dd757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612294945050505050565b348015610e2457600080fd5b5061042760048036036080811015610e3b57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610e7557600080fd5b820183602082011115610e8757600080fd5b803590602001918460018302840111600160201b83111715610ea857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506124f9945050505050565b348015610ef557600080fd5b5061030a612557565b348015610f0a57600080fd5b506104ef612565565b348015610f1f57600080fd5b5061033360048036036020811015610f3657600080fd5b503561256b565b348015610f4957600080fd5b5061030a600480360360a0811015610f6057600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610f8a57600080fd5b820183602082011115610f9c57600080fd5b803590602001918460018302840111600160201b83111715610fbd57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561100f57600080fd5b82018360208201111561102157600080fd5b803590602001918460018302840111600160201b8311171561104257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561109457600080fd5b8201836020820111156110a657600080fd5b803590602001918460018302840111600160201b831117156110c757600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561111957600080fd5b82018360208201111561112b57600080fd5b803590602001918460018302840111600160201b8311171561114c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506127ec945050505050565b34801561119957600080fd5b5061030a600480360360408110156111b057600080fd5b506001600160a01b038135811691602001351661298a565b3480156111d457600080fd5b50610427600480360360208110156111eb57600080fd5b50356001600160a01b03166129b8565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156112aa5780601f1061127f576101008083540402835291602001916112aa565b820191906000526020600020905b81548152906001019060200180831161128d57829003601f168201915b5050505050905090565b60006112bf82612a68565b6112fa5760405162461bcd60e51b815260040180806020018281038252602c815260200180613e2d602c913960400191505060405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061132182611b08565b9050806001600160a01b0316836001600160a01b031614156113745760405162461bcd60e51b8152600401808060200182810382526021815260200180613ed16021913960400191505060405180910390fd5b806001600160a01b0316611386612a75565b6001600160a01b031614806113a757506113a7816113a2612a75565b61298a565b6113e25760405162461bcd60e51b8152600401808060200182810382526038815260200180613d806038913960400191505060405180910390fd5b6113ec8383612a79565b505050565b6113f9612a75565b6001600160a01b031661140a61211f565b6001600160a01b031614611453576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b8051611466906013906020840190613bee565b5050565b600f5481565b600061147c6002612af4565b905090565b60105481565b611498611492612a75565b82612aff565b6114d35760405162461bcd60e51b8152600401808060200182810382526031815260200180613ef26031913960400191505060405180910390fd5b6113ec838383612ba3565b60125462010000900460ff1681565b6001600160a01b038216600090815260016020526040812061150f9083612cef565b90505b92915050565b6013805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561159e5780601f106115735761010080835404028352916020019161159e565b820191906000526020600020905b81548152906001019060200180831161158157829003601f168201915b505050505081565b6115ae612a75565b6001600160a01b03166115bf61211f565b6001600160a01b031614611608576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b478061165b576040805162461bcd60e51b815260206004820152600c60248201527f42616c616e636520697320300000000000000000000000000000000000000000604482015290519081900360640190fd5b604051339082156108fc029083906000818181858888f19350505050158015611466573d6000803e3d6000fd5b60115481565b6113ec838383604051806020016040528060008152506124f9565b6002600b541415611701576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b5560125462010000900460ff16611763576040805162461bcd60e51b815260206004820152601560248201527f47656e6572616c2073616c65206e6f74206f70656e0000000000000000000000604482015290519081900360640190fd5b80600e54023410156117ad576040805162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015290519081900360640190fd5b6117b681612cfb565b506001600b55565b6002600b541415611816576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b5560125460ff16611872576040805162461bcd60e51b815260206004820152601260248201527f57686974656c697374206e6f74206f70656e0000000000000000000000000000604482015290519081900360640190fd5b600e543410156118ba576040805162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015290519081900360640190fd5b6118e8338484846040518060400160405280600981526020016815da1a5d195b1a5cdd60ba1b8152506127ec565b611939576040805162461bcd60e51b815260206004820152601660248201527f4e6f7420617574686f726973656420746f206d696e7400000000000000000000604482015290519081900360640190fd5b604080516370a0823160e01b8152336004820152905130916370a08231916024808301926020929190829003018186803b15801561197657600080fd5b505afa15801561198a573d6000803e3d6000fd5b505050506040513d60208110156119a057600080fd5b5051156119f4576040805162461bcd60e51b815260206004820152601960248201527f57616c6c65742068617320616c7265616479206d696e74656400000000000000604482015290519081900360640190fd5b6119fe6002612cfb565b50506001600b5550565b600080611a16600284612e15565b509392505050565b611a26612a75565b6001600160a01b0316611a3761211f565b6001600160a01b031614611a80576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b611a8981612e33565b50565b611a94612a75565b6001600160a01b0316611aa561211f565b6001600160a01b031614611aee576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b601280549115156101000261ff0019909216919091179055565b600061151282604051806060016040528060298152602001613de26029913960029190612e46565b6002600b541415611b88576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b5560125460ff16611be4576040805162461bcd60e51b815260206004820152601260248201527f57686974656c697374206e6f74206f70656e0000000000000000000000000000604482015290519081900360640190fd5b611c12338484846040518060400160405280600981526020016815da1a5d195b1a5cdd60ba1b8152506127ec565b611c63576040805162461bcd60e51b815260206004820152601660248201527f4e6f7420617574686f726973656420746f206d696e7400000000000000000000604482015290519081900360640190fd5b604080516370a0823160e01b8152336004820152905130916370a08231916024808301926020929190829003018186803b158015611ca057600080fd5b505afa158015611cb4573d6000803e3d6000fd5b505050506040513d6020811015611cca57600080fd5b505115611d1e576040805162461bcd60e51b815260206004820152601960248201527f57616c6c65742068617320616c7265616479206d696e74656400000000000000604482015290519081900360640190fd5b6119fe6001612cfb565b611d30612a75565b6001600160a01b0316611d4161211f565b6001600160a01b031614611d8a576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b6012805460ff1916911515919091179055565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156112aa5780601f1061127f576101008083540402835291602001916112aa565b611e06612a75565b6001600160a01b0316611e1761211f565b6001600160a01b031614611e60576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b60128054911515620100000262ff000019909216919091179055565b60125460ff1681565b60006001600160a01b038216611ecc5760405162461bcd60e51b815260040180806020018281038252602a815260200180613db8602a913960400191505060405180910390fd5b6001600160a01b038216600090815260016020526040902061151290612e5d565b611ef5612a75565b6001600160a01b0316611f0661211f565b6001600160a01b031614611f4f576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b611f596000612e68565b565b60115415611fb0576040805162461bcd60e51b815260206004820152601a60248201527f5374617274696e6720696e64657820616c726561647920736574000000000000604482015290519081900360640190fd5b601054612004576040805162461bcd60e51b815260206004820152601c60248201527f5374617274696e6720696e64657820626c6f636b206e6f742073657400000000604482015290519081900360640190fd5b600f54601054408161201257fe5b0660115560105460ff90612027904390612ec7565b111561204257600f546000194301408161203d57fe5b066011555b601154611f5957601154612057906001612f24565b601155565b600e5481565b61206a612a75565b6001600160a01b031661207b61211f565b6001600160a01b0316146120c4576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b60115415612119576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b43601055565b600c546001600160a01b031690565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156112aa5780601f1061127f576101008083540402835291602001916112aa565b612197612a75565b6001600160a01b0316826001600160a01b031614156121fd576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806006600061220a612a75565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561224e612a75565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6002600b5414156122ec576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b55601254610100900460ff1661234d576040805162461bcd60e51b815260206004820152601660248201527f5075626c696320526166666c65206e6f74206f70656e00000000000000000000604482015290519081900360640190fd5b83600e5402341015612397576040805162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015290519081900360640190fd5b6123d9338484846040518060400160405280600d81526020017f5075626c69632d526166666c65000000000000000000000000000000000000008152506127ec565b61242a576040805162461bcd60e51b815260206004820152601660248201527f4e6f7420617574686f726973656420746f206d696e7400000000000000000000604482015290519081900360640190fd5b604080516370a0823160e01b8152336004820152905130916370a08231916024808301926020929190829003018186803b15801561246757600080fd5b505afa15801561247b573d6000803e3d6000fd5b505050506040513d602081101561249157600080fd5b5051156124e5576040805162461bcd60e51b815260206004820152601960248201527f57616c6c65742068617320616c7265616479206d696e74656400000000000000604482015290519081900360640190fd5b6124ee84612cfb565b50506001600b555050565b61250a612504612a75565b83612aff565b6125455760405162461bcd60e51b8152600401808060200182810382526031815260200180613ef26031913960400191505060405180910390fd5b61255184848484612f7e565b50505050565b601254610100900460ff1681565b600d5481565b606061257682612a68565b6125b15760405162461bcd60e51b815260040180806020018281038252602f815260200180613ea2602f913960400191505060405180910390fd5b60008281526009602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156126445780601f1061261957610100808354040283529160200191612644565b820191906000526020600020905b81548152906001019060200180831161262757829003601f168201915b505050505090506000612655611d9d565b905080516000141561266957509050611219565b81511561272a5780826040516020018083805190602001908083835b602083106126a45780518252601f199092019160209182019101612685565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106126ec5780518252601f1990920191602091820191016126cd565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050611219565b8061273485612fd0565b6040516020018083805190602001908083835b602083106127665780518252601f199092019160209182019101612747565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106127ae5780518252601f19909201916020918201910161278f565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6000856001600160a01b031661297661297084878760405160200180807f546f6b656e2d000000000000000000000000000000000000000000000000000081525060060184805190602001908083835b6020831061285b5780518252601f19909201916020918201910161283c565b51815160209384036101000a60001901801990921691161790527f2d4d696e742d2d00000000000000000000000000000000000000000000000000919093019081528551600790910192860191508083835b602083106128cc5780518252601f1990920191602091820191016128ad565b51815160209384036101000a6000190180199092169116179052612d2d60f01b919093019081528451600290910192850191508083835b602083106129225780518252601f199092019160209182019101612903565b6001836020036101000a03801982511681845116808217855250505050505090500180601760f91b8152506001019350505050604051602081830303815290604052805190602001206130c3565b87613114565b6001600160a01b0316149695505050505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6129c0612a75565b6001600160a01b03166129d161211f565b6001600160a01b031614612a1a576040805162461bcd60e51b81526020600482018190526024820152600080516020613e59833981519152604482015290519081900360640190fd5b6001600160a01b038116612a5f5760405162461bcd60e51b8152600401808060200182810382526026815260200180613cc26026913960400191505060405180910390fd5b611a8981612e68565b6000611512600283613130565b3390565b6000818152600560205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612abb82611b08565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115128261313c565b6000612b0a82612a68565b612b455760405162461bcd60e51b815260040180806020018281038252602c815260200180613d54602c913960400191505060405180910390fd5b6000612b5083611b08565b9050806001600160a01b0316846001600160a01b03161480612b8b5750836001600160a01b0316612b80846112b4565b6001600160a01b0316145b80612b9b5750612b9b818561298a565b949350505050565b826001600160a01b0316612bb682611b08565b6001600160a01b031614612bfb5760405162461bcd60e51b8152600401808060200182810382526029815260200180613e796029913960400191505060405180910390fd5b6001600160a01b038216612c405760405162461bcd60e51b8152600401808060200182810382526024815260200180613ce86024913960400191505060405180910390fd5b612c4b8383836113ec565b612c56600082612a79565b6001600160a01b0383166000908152600160205260409020612c789082613147565b506001600160a01b0382166000908152600160205260409020612c9b9082613153565b50612ca86002828461315f565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061150f8383613175565b600081118015612d0d5750600d548111155b612d5e576040805162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e742074686174206d616e7920746f6b656e7300000000604482015290519081900360640190fd5b600f54612d7382612d6d611470565b90612f24565b1115612dc6576040805162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820746f6b656e7320617661696c61626c6500000000604482015290519081900360640190fd5b60005b81811015612df0576000612ddb611470565b9050612de73382613199565b50600101612dc9565b50601054158015612e095750600f54612e07611470565b145b15611a89574360105550565b6000808080612e2486866131b3565b909450925050505b9250929050565b805161146690600a906020840190613bee565b6000612e538484846131de565b90505b9392505050565b60006115128261328c565b600c80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082821115612f1e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561150f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b612f89848484612ba3565b612f9584848484613290565b6125515760405162461bcd60e51b8152600401808060200182810382526032815260200180613c906032913960400191505060405180910390fd5b606081612ff557506040805180820190915260018152600360fc1b6020820152611219565b8160005b811561300d57600101600a82049150612ff9565b60008167ffffffffffffffff8111801561302657600080fd5b506040519080825280601f01601f191660200182016040528015613051576020820181803683370190505b50859350905060001982015b83156130ba57600a840660300160f81b8282806001900393508151811061308057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8404935061305d565b50949350505050565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b60008060006131238585613422565b91509150611a168161348f565b600061150f8383613600565b600061151282612e5d565b600061150f838361360c565b600061150f83836136d4565b6000612e5384846001600160a01b03851661371e565b600082600001828154811061318657fe5b9060005260206000200154905092915050565b61146682826040518060200160405280600081525061373b565b600080806131c18585612cef565b600081815260029690960160205260409095205494959350505050565b60008281526002840160205260408120548015158061320257506132028585613600565b83906130ba5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613251578181015183820152602001613239565b50505050905090810190601f16801561327e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5490565b60006132a4846001600160a01b031661378d565b6132b057506001612b9b565b60006133e8630a85bd0160e11b6132c5612a75565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561332c578181015183820152602001613314565b50505050905090810190601f1680156133595780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001613c90603291396001600160a01b0388169190613793565b9050600081806020019051602081101561340157600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b6000808251604114156134595760208301516040840151606085015160001a61344d878285856137a2565b94509450505050612e2c565b8251604014156134835760208301516040840151613478868383613897565b935093505050612e2c565b50600090506002612e2c565b600081600481111561349d57fe5b14156134a857611a89565b60018160048111156134b657fe5b1415613509576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b600281600481111561351757fe5b141561356a576040805162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015290519081900360640190fd5b600381600481111561357857fe5b14156135b55760405162461bcd60e51b8152600401808060200182810382526022815260200180613d0c6022913960400191505060405180910390fd5b60048160048111156135c357fe5b1415611a895760405162461bcd60e51b8152600401808060200182810382526022815260200180613e0b6022913960400191505060405180910390fd5b600061150f83836138df565b600081815260018301602052604081205480156136ca578354600019808301910180821461368457600086600001828154811061364557fe5b906000526020600020015490508087600001848154811061366257fe5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061368f57fe5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611512565b6000915050611512565b60006136e083836138e7565b61371657508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611512565b506000611512565b60008281526002840160205260408120829055612e538484613153565b61374583836138ff565b6137526000848484613290565b6113ec5760405162461bcd60e51b8152600401808060200182810382526032815260200180613c906032913960400191505060405180910390fd5b3b151590565b6060612e538484600085613a2d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156137d9575060009050600361388e565b8460ff16601b141580156137f157508460ff16601c14155b15613802575060009050600461388e565b600060018787878760405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa15801561385e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166138875760006001925092505061388e565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016138d1878288856137a2565b935093505050935093915050565b600061150f83835b60009081526001919091016020526040902054151590565b6001600160a01b03821661395a576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61396381612a68565b156139b5576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6139c1600083836113ec565b6001600160a01b03821660009081526001602052604090206139e39082613153565b506139f06002828461315f565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015613a6e5760405162461bcd60e51b8152600401808060200182810382526026815260200180613d2e6026913960400191505060405180910390fd5b613a778561378d565b613ac8576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b60208310613b065780518252601f199092019160209182019101613ae7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613b68576040519150601f19603f3d011682016040523d82523d6000602084013e613b6d565b606091505b5091509150613b7d828286613b88565b979650505050505050565b60608315613b97575081612e56565b825115613ba75782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315613251578181015183820152602001613239565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613c245760008555613c6a565b82601f10613c3d57805160ff1916838001178555613c6a565b82800160010185558215613c6a579182015b82811115613c6a578251825591602001919060010190613c4f565b50613c76929150613c7a565b5090565b5b80821115613c765760008155600101613c7b56fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f206164647265737345434453413a20696e76616c6964207369676e6174757265202773272076616c7565416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e45434453413a20696e76616c6964207369676e6174757265202776272076616c75654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220051104b07cf7cccdf627eaa0dff1baa8223b15992ecb0e65d35ee252128b214164736f6c63430007060033

Deployed Bytecode Sourcemap

29806:6716:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6849:141;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6849:141:0;-1:-1:-1;;;;;;6849:141:0;;:::i;:::-;;;;;;;;;;;;;;;;;;17191:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19680:206;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19680:206:0;;:::i;:::-;;;;-1:-1:-1;;;;;19680:206:0;;;;;;;;;;;;;;19264:362;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19264:362:0;;;;;;;;:::i;:::-;;35334:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35334:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35334:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35334:122:0;;-1:-1:-1;35334:122:0;;-1:-1:-1;;;;;35334:122:0:i;29998:38::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18796:196;;;;;;;;;;;;;:::i;30040:35::-;;;;;;;;;;;;;:::i;20489:284::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20489:284:0;;;;;;;;;;;;;;;;;:::i;30208:39::-;;;;;;;;;;;;;:::i;18579:153::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18579:153:0;;;;;;;;:::i;30253:34::-;;;;;;;;;;;;;:::i;36348:171::-;;;;;;;;;;;;;:::i;30079:29::-;;;;;;;;;;;;;:::i;20832:142::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20832:142:0;;;;;;;;;;;;;;;;;:::i;32634:245::-;;;;;;;;;;;;;;;;-1:-1:-1;32634:245:0;;:::i;31216:481::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31216:481:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31216:481:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31216:481:0;;;;;;;;-1:-1:-1;31216:481:0;;-1:-1:-1;;;;;31216:481:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31216:481:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31216:481:0;;;;;;;;-1:-1:-1;31216:481:0;;-1:-1:-1;;;;;31216:481:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31216:481:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31216:481:0;;-1:-1:-1;31216:481:0;;-1:-1:-1;;;;;31216:481:0:i;19057:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19057:157:0;;:::i;35595:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35595:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35595:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35595:116:0;;-1:-1:-1;35595:116:0;;-1:-1:-1;;;;;35595:116:0:i;35981:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35981:113:0;;;;:::i;16968:168::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16968:168:0;;:::i;30581:416::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30581:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30581:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30581:416:0;;;;;;;;-1:-1:-1;30581:416:0;;-1:-1:-1;;;;;30581:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30581:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30581:416:0;;;;;;;;-1:-1:-1;30581:416:0;;-1:-1:-1;;;;;30581:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30581:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30581:416:0;;-1:-1:-1;30581:416:0;;-1:-1:-1;;;;;30581:416:0:i;35791:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35791:106:0;;;;:::i;18419:88::-;;;;;;;;;;;;;:::i;36172:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36172:102:0;;;;:::i;30114:41::-;;;;;;;;;;;;;:::i;16712:206::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16712:206:0;-1:-1:-1;;;;;16712:206:0;;:::i;2257:85::-;;;;;;;;;;;;;:::i;34432:489::-;;;;;;;;;;;;;:::i;29947:47::-;;;;;;;;;;;;;:::i;35046:174::-;;;;;;;;;;;;;:::i;1666:78::-;;;;;;;;;;;;;:::i;17339:95::-;;;;;;;;;;;;;:::i;19946:274::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19946:274:0;;;;;;;;;;:::i;31970:536::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31970:536:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31970:536:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31970:536:0;;;;;;;;-1:-1:-1;31970:536:0;;-1:-1:-1;;;;;31970:536:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31970:536:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31970:536:0;;;;;;;;-1:-1:-1;31970:536:0;;-1:-1:-1;;;;;31970:536:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31970:536:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31970:536:0;;-1:-1:-1;31970:536:0;;-1:-1:-1;;;;;31970:536:0:i;21033:270::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21033:270:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;21033:270:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;21033:270:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21033:270:0;;-1:-1:-1;21033:270:0;;-1:-1:-1;;;;;21033:270:0:i;30159:45::-;;;;;;;;;;;;;:::i;29898:::-;;;;;;;;;;;;;:::i;17493:705::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17493:705:0;;:::i;34019:359::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34019:359:0;;;;;;;;;;;;;;;-1:-1:-1;;;34019:359:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34019:359:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34019:359:0;;;;;;;;-1:-1:-1;34019:359:0;;-1:-1:-1;;;;;34019:359:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34019:359:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34019:359:0;;;;;;;;-1:-1:-1;34019:359:0;;-1:-1:-1;;;;;34019:359:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34019:359:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34019:359:0;;;;;;;;-1:-1:-1;34019:359:0;;-1:-1:-1;;;;;34019:359:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34019:359:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34019:359:0;;-1:-1:-1;34019:359:0;;-1:-1:-1;;;;;34019:359:0:i;20279:155::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20279:155:0;;;;;;;;;;:::i;2482:177::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2482:177:0;-1:-1:-1;;;;;2482:177:0;;:::i;6849:141::-;-1:-1:-1;;;;;;6952:33:0;;6934:4;6952:33;;;;;;;;;;;;;6849:141;;;;:::o;17191:91::-;17272:5;17265:12;;;;;;;;-1:-1:-1;;17265:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17245:13;;17265:12;;17272:5;;17265:12;;17272:5;17265:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17191:91;:::o;19680:206::-;19756:7;19778:16;19786:7;19778;:16::i;:::-;19770:73;;;;-1:-1:-1;;;19770:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19857:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;19857:24:0;;19680:206::o;19264:362::-;19339:13;19355:23;19370:7;19355:14;:23::i;:::-;19339:39;;19397:5;-1:-1:-1;;;;;19391:11:0;:2;-1:-1:-1;;;;;19391:11:0;;;19383:57;;;;-1:-1:-1;;;19383:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19471:5;-1:-1:-1;;;;;19455:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;19455:21:0;;:69;;;;19480:44;19504:5;19511:12;:10;:12::i;:::-;19480:23;:44::i;:::-;19447:146;;;;-1:-1:-1;;;19447:146:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19600:21;19609:2;19613:7;19600:8;:21::i;:::-;19264:362;;;:::o;35334:122::-;1870:12;:10;:12::i;:::-;-1:-1:-1;;;;;1859:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:23:0;;1851:68;;;;;-1:-1:-1;;;1851:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1851:68:0;;;;;;;;;;;;;;;35417:34;;::::1;::::0;:15:::1;::::0;:34:::1;::::0;::::1;::::0;::::1;:::i;:::-;;35334:122:::0;:::o;29998:38::-;;;;:::o;18796:196::-;18857:7;18966:21;:12;:19;:21::i;:::-;18959:28;;18796:196;:::o;30040:35::-;;;;:::o;20489:284::-;20638:41;20657:12;:10;:12::i;:::-;20671:7;20638:18;:41::i;:::-;20630:103;;;;-1:-1:-1;;;20630:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20740:28;20750:4;20756:2;20760:7;20740:9;:28::i;30208:39::-;;;;;;;;;:::o;18579:153::-;-1:-1:-1;;;;;18697:20:0;;18676:7;18697:20;;;:13;:20;;;;;:30;;18721:5;18697:23;:30::i;:::-;18690:37;;18579:153;;;;;:::o;30253:34::-;;;;;;;;;;;;;;;-1:-1:-1;;30253:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36348:171::-;1870:12;:10;:12::i;:::-;-1:-1:-1;;;;;1859:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:23:0;;1851:68;;;;;-1:-1:-1;;;1851:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1851:68:0;;;;;;;;;;;;;;;36410:21:::1;36444:11:::0;36436:36:::1;;;::::0;;-1:-1:-1;;;36436:36:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;36477:37;::::0;36485:10:::1;::::0;36477:37;::::1;;;::::0;36506:7;;36477:37:::1;::::0;;;36506:7;36485:10;36477:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;30079:29:::0;;;;:::o;20832:142::-;20930:39;20947:4;20953:2;20957:7;20930:39;;;;;;;;;;;;:16;:39::i;32634:245::-;4440:1;4985:7;;:19;;4977:63;;;;;-1:-1:-1;;;4977:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4440:1;5106:7;:18;32722:19:::1;::::0;;;::::1;;;32714:53;;;::::0;;-1:-1:-1;;;32714:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32808:11;32794;;:25;32780:9;:40;;32772:67;;;::::0;;-1:-1:-1;;;32772:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32772:67:0;;;;;;;;;;;;;::::1;;32846:28;32862:11;32846:15;:28::i;:::-;-1:-1:-1::0;4399:1:0;5261:7;:22;32634:245::o;31216:481::-;4440:1;4985:7;;:19;;4977:63;;;;;-1:-1:-1;;;4977:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4440:1;5106:7;:18;31357:21:::1;::::0;::::1;;31349:52;;;::::0;;-1:-1:-1;;;31349:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31427:11;;31414:9;:24;;31406:51;;;::::0;;-1:-1:-1;;;31406:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31406:51:0;;;;;;;;;;;;;::::1;;31470:78;31495:10;31507;31519:3;31524:10;31470:78;;;;;;;;;;;;;-1:-1:-1::0;;;31470:78:0::1;;::::0;:24:::1;:78::i;:::-;31462:113;;;::::0;;-1:-1:-1;;;31462:113:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31588:44;::::0;;-1:-1:-1;;;31588:44:0;;31621:10:::1;31588:44;::::0;::::1;::::0;;;31604:4:::1;::::0;31588:32:::1;::::0;:44;;;;;::::1;::::0;;;;;;;;31604:4;31588:44;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;31588:44:0;:49;31580:87:::1;;;::::0;;-1:-1:-1;;;31580:87:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31674:18;31690:1;31674:15;:18::i;:::-;-1:-1:-1::0;;4399:1:0;5261:7;:22;-1:-1:-1;31216:481:0:o;19057:157::-;19132:7;;19168:22;:12;19184:5;19168:15;:22::i;:::-;-1:-1:-1;19146:44:0;19057:157;-1:-1:-1;;;19057:157:0:o;35595:116::-;1870:12;:10;:12::i;:::-;-1:-1:-1;;;;;1859:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:23:0;;1851:68;;;;;-1:-1:-1;;;1851:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1851:68:0;;;;;;;;;;;;;;;35674:32:::1;35686:19;35674:11;:32::i;:::-;35595:116:::0;:::o;35981:113::-;1870:12;:10;:12::i;:::-;-1:-1:-1;;;;;1859:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:23:0;;1851:68;;;;;-1:-1:-1;;;1851:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1851:68:0;;;;;;;;;;;;;;;36054:25:::1;:35:::0;;;::::1;;;;-1:-1:-1::0;;36054:35:0;;::::1;::::0;;;::::1;::::0;;35981:113::o;16968:168::-;17040:7;17061:70;17078:7;17061:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;30581:416::-;4440:1;4985:7;;:19;;4977:63;;;;;-1:-1:-1;;;4977:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4440:1;5106:7;:18;30713:21:::1;::::0;::::1;;30705:52;;;::::0;;-1:-1:-1;;;30705:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;30770:78;30795:10;30807;30819:3;30824:10;30770:78;;;;;;;;;;;;;-1:-1:-1::0;;;30770:78:0::1;;::::0;:24:::1;:78::i;:::-;30762:113;;;::::0;;-1:-1:-1;;;30762:113:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;30888:44;::::0;;-1:-1:-1;;;30888:44:0;;30921:10:::1;30888:44;::::0;::::1;::::0;;;30904:4:::1;::::0;30888:32:::1;::::0;:44;;;;;::::1;::::0;;;;;;;;30904:4;30888:44;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;30888:44:0;:49;30880:87:::1;;;::::0;;-1:-1:-1;;;30880:87:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;30974:18;30990:1;30974:15;:18::i;35791:106::-:0;1870:12;:10;:12::i;:::-;-1:-1:-1;;;;;1859:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:23:0;;1851:68;;;;;-1:-1:-1;;;1851:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1851:68:0;;;;;;;;;;;;;;;35861:21:::1;:31:::0;;-1:-1:-1;;35861:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35791:106::o;18419:88::-;18494:8;18487:15;;;;;;;;-1:-1:-1;;18487:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18467:13;;18487:15;;18494:8;;18487:15;;18494:8;18487:15;;;;;;;;;;;;;;;;;;;;;;;;36172:102;1870:12;:10;:12::i;:::-;-1:-1:-1;;;;;1859:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:23:0;;1851:68;;;;;-1:-1:-1;;;1851:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1851:68:0;;;;;;;;;;;;;;;36240:19:::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36240:29:0;;::::1;::::0;;;::::1;::::0;;36172:102::o;30114:41::-;;;;;;:::o;16712:206::-;16784:7;-1:-1:-1;;;;;16806:19:0;;16798:74;;;;-1:-1:-1;;;16798:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16884:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;2257:85::-;1870:12;:10;:12::i;:::-;-1:-1:-1;;;;;1859:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:23:0;;1851:68;;;;;-1:-1:-1;;;1851:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1851:68:0;;;;;;;;;;;;;;;2316:21:::1;2334:1;2316:9;:21::i;:::-;2257:85::o:0;34432:489::-;34487:14;;:19;34479:58;;;;;-1:-1:-1;;;34479:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34550:20;;34542:66;;;;;-1:-1:-1;;;34542:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34675:16;;34650:20;;34640:31;34675:16;34632:59;;;;;34615:14;:76;34719:20;;34743:3;;34702:38;;:12;;:16;:38::i;:::-;:44;34698:135;;;34811:16;;-1:-1:-1;;34792:12:0;:14;34782:25;34811:16;34774:53;;;;;34757:14;:70;34698:135;34843:14;;34839:78;;34890:14;;:21;;34909:1;34890:18;:21::i;:::-;34873:14;:38;34432:489::o;29947:47::-;;;;:::o;35046:174::-;1870:12;:10;:12::i;:::-;-1:-1:-1;;;;;1859:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:23:0;;1851:68;;;;;-1:-1:-1;;;1851:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1851:68:0;;;;;;;;;;;;;;;35120:14:::1;::::0;:19;35112:61:::1;;;::::0;;-1:-1:-1;;;35112:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;35203:12;35180:20;:35:::0;35046:174::o;1666:78::-;1733:6;;-1:-1:-1;;;;;1733:6:0;1666:78;:::o;17339:95::-;17422:7;17415:14;;;;;;;;-1:-1:-1;;17415:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17395:13;;17415:14;;17422:7;;17415:14;;17422:7;17415:14;;;;;;;;;;;;;;;;;;;;;;;;19946:274;20055:12;:10;:12::i;:::-;-1:-1:-1;;;;;20043:24:0;:8;-1:-1:-1;;;;;20043:24:0;;;20035:62;;;;;-1:-1:-1;;;20035:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20149:8;20104:18;:32;20123:12;:10;:12::i;:::-;-1:-1:-1;;;;;20104:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;20104:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;20104:53:0;;;;;;;;;;;20182:12;:10;:12::i;:::-;-1:-1:-1;;;;;20167:48:0;;20206:8;20167:48;;;;;;;;;;;;;;;;;;;;19946:274;;:::o;31970:536::-;4440:1;4985:7;;:19;;4977:63;;;;;-1:-1:-1;;;4977:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4440:1;5106:7;:18;32128:25:::1;::::0;::::1;::::0;::::1;;;32120:60;;;::::0;;-1:-1:-1;;;32120:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32221:11;32207;;:25;32193:9;:40;;32185:67;;;::::0;;-1:-1:-1;;;32185:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32185:67:0;;;;;;;;;;;;;::::1;;32265:82;32290:10;32302;32314:3;32319:10;32265:82;;;;;;;;;;;;;;;;::::0;:24:::1;:82::i;:::-;32257:117;;;::::0;;-1:-1:-1;;;32257:117:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32387:44;::::0;;-1:-1:-1;;;32387:44:0;;32420:10:::1;32387:44;::::0;::::1;::::0;;;32403:4:::1;::::0;32387:32:::1;::::0;:44;;;;;::::1;::::0;;;;;;;;32403:4;32387:44;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;32387:44:0;:49;32379:87:::1;;;::::0;;-1:-1:-1;;;32379:87:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32473:28;32489:11;32473:15;:28::i;:::-;-1:-1:-1::0;;4399:1:0;5261:7;:22;-1:-1:-1;;31970:536:0:o;21033:270::-;21159:41;21178:12;:10;:12::i;:::-;21192:7;21159:18;:41::i;:::-;21151:103;;;;-1:-1:-1;;;21151:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21259:39;21273:4;21279:2;21283:7;21292:5;21259:13;:39::i;:::-;21033:270;;;;:::o;30159:45::-;;;;;;;;;:::o;29898:::-;;;;:::o;17493:705::-;17566:13;17594:16;17602:7;17594;:16::i;:::-;17586:76;;;;-1:-1:-1;;;17586:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17669:23;17695:19;;;:10;:19;;;;;;;;17669:45;;;;;;;;;;;-1:-1:-1;;17669:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;17695:19;;17669:45;;;17695:19;17669:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17719:18;17740:9;:7;:9::i;:::-;17719:30;;17819:4;17813:18;17835:1;17813:23;17809:57;;;-1:-1:-1;17851:9:0;-1:-1:-1;17844:16:0;;17809:57;17958:23;;:27;17954:93;;18024:4;18030:9;18007:33;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18007:33:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18007:33:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18007:33:0;;;;;;;;;;;;;-1:-1:-1;;18007:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17993:48;;;;;;17954:93;18167:4;18173:18;:7;:16;:18::i;:::-;18150:42;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18150:42:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18150:42:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18150:42:0;;;;;;;;;;;;;-1:-1:-1;;18150:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18136:57;;;;17493:705;;;:::o;34019:359::-;34181:4;34366:7;-1:-1:-1;;;;;34201:172:0;:161;34215:134;34287:5;34312:3;34330:10;34254:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34254:93:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34254:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34254:93:0;;;;;;;;;;;;;-1:-1:-1;;34254:93:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34254:93:0;;;;;;;;;;;-1:-1:-1;;;34254:93:0;;;;;;;;;;;;;;;;;-1:-1:-1;34254:93:0;;;;;;;;;;;;;-1:-1:-1;;34254:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34254:93:0;;;;;;;;;;;;;;;;;;;;;;34244:104;;;;;;34215:28;:134::i;:::-;34351:10;34201:13;:161::i;:::-;-1:-1:-1;;;;;34201:172:0;;;34019:359;-1:-1:-1;;;;;;34019:359:0:o;20279:155::-;-1:-1:-1;;;;;20394:25:0;;;20376:4;20394:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20279:155::o;2482:177::-;1870:12;:10;:12::i;:::-;-1:-1:-1;;;;;1859:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:23:0;;1851:68;;;;;-1:-1:-1;;;1851:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1851:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;2565:22:0;::::1;2557:73;;;;-1:-1:-1::0;;;2557:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2635:19;2645:8;2635:9;:19::i;22671:118::-:0;22736:4;22754:30;:12;22776:7;22754:21;:30::i;600:89::-;674:10;600:89;:::o;28068:177::-;28137:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;28137:29:0;-1:-1:-1;;;;;28137:29:0;;;;;;;;:24;;28185:23;28137:24;28185:14;:23::i;:::-;-1:-1:-1;;;;;28176:46:0;;;;;;;;;;;28068:177;;:::o;75812:114::-;75881:7;75902:19;75910:3;75902:7;:19::i;22932:334::-;23025:4;23044:16;23052:7;23044;:16::i;:::-;23036:73;;;;-1:-1:-1;;;23036:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23114:13;23130:23;23145:7;23130:14;:23::i;:::-;23114:39;;23177:5;-1:-1:-1;;;;;23166:16:0;:7;-1:-1:-1;;;;;23166:16:0;;:51;;;;23210:7;-1:-1:-1;;;;;23186:31:0;:20;23198:7;23186:11;:20::i;:::-;-1:-1:-1;;;;;23186:31:0;;23166:51;:94;;;;23221:39;23245:5;23252:7;23221:23;:39::i;:::-;23158:103;22932:334;-1:-1:-1;;;;22932:334:0:o;25756:542::-;25875:4;-1:-1:-1;;;;;25848:31:0;:23;25863:7;25848:14;:23::i;:::-;-1:-1:-1;;;;;25848:31:0;;25840:85;;;;-1:-1:-1;;;25840:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25956:16:0;;25948:65;;;;-1:-1:-1;;;25948:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26020:39;26041:4;26047:2;26051:7;26020:20;:39::i;:::-;26112:29;26129:1;26133:7;26112:8;:29::i;:::-;-1:-1:-1;;;;;26148:19:0;;;;;;:13;:19;;;;;:35;;26175:7;26148:26;:35::i;:::-;-1:-1:-1;;;;;;26188:17:0;;;;;;:13;:17;;;;;:30;;26210:7;26188:21;:30::i;:::-;-1:-1:-1;26225:29:0;:12;26242:7;26251:2;26225:16;:29::i;:::-;;26285:7;26281:2;-1:-1:-1;;;;;26266:27:0;26275:4;-1:-1:-1;;;;;26266:27:0;;;;;;;;;;;25756:542;;;:::o;69754:128::-;69825:7;69854:22;69858:3;69870:5;69854:3;:22::i;33162:527::-;33244:1;33230:11;:15;33229:64;;;;;33266:26;;33251:11;:41;;33229:64;33221:105;;;;;-1:-1:-1;;;33221:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33373:16;;33339:30;33357:11;33339:13;:11;:13::i;:::-;:17;;:30::i;:::-;:50;;33331:91;;;;;-1:-1:-1;;;33331:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33434:9;33429:130;33449:11;33447:1;:13;33429:130;;;33476:20;33499:13;:11;:13::i;:::-;33476:36;;33518:35;33528:10;33540:12;33518:9;:35::i;:::-;-1:-1:-1;33462:3:0;;33429:130;;;-1:-1:-1;33569:20:0;;:25;:64;;;;;33616:16;;33599:13;:11;:13::i;:::-;:33;33569:64;33565:120;;;33667:12;33644:20;:35;33162:527;:::o;76244:221::-;76324:7;;;;76378:22;76382:3;76394:5;76378:3;:22::i;:::-;76347:53;;-1:-1:-1;76347:53:0;-1:-1:-1;;;76244:221:0;;;;;;:::o;26842:91::-;26909:19;;;;:8;;:19;;;;;:::i;77425:217::-;77545:7;77590:44;77595:3;77615;77621:12;77590:4;:44::i;:::-;77582:53;-1:-1:-1;77425:217:0;;;;;;:::o;69328:105::-;69388:7;69409:19;69417:3;69409:7;:19::i;2664:152::-;2733:6;;;-1:-1:-1;;;;;2744:17:0;;;-1:-1:-1;;2744:17:0;;;;;;;2771:40;;2733:6;;;2744:17;2733:6;;2771:40;;2714:16;;2771:40;2664:152;;:::o;39406:143::-;39464:7;39491:1;39486;:6;;39478:49;;;;;-1:-1:-1;;;39478:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39539:5:0;;;39406:143::o;38998:158::-;39056:7;39082:5;;;39100:6;;;;39092:46;;;;;-1:-1:-1;;;39092:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;22128:257;22236:28;22246:4;22252:2;22256:7;22236:9;:28::i;:::-;22277:48;22300:4;22306:2;22310:7;22319:5;22277:22;:48::i;:::-;22269:111;;;;-1:-1:-1;;;22269:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50391:614;50447:13;50650:10;50646:38;;-1:-1:-1;50668:10:0;;;;;;;;;;;;-1:-1:-1;;;50668:10:0;;;;;;50646:38;50703:5;50688:12;50732:54;50739:9;;50732:54;;50756:8;;50778:2;50770:10;;;;50732:54;;;50790:19;50822:6;50812:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50812:17:0;-1:-1:-1;50872:5:0;;-1:-1:-1;50790:39:0;-1:-1:-1;;;50850:10:0;;50882:93;50889:9;;50882:93;;50949:2;50942:4;:9;50937:2;:14;50924:29;;50906:6;50913:7;;;;;;;50906:15;;;;;;;;;;;:47;;;;;;;;;;-1:-1:-1;50967:2:0;50959:10;;;;50882:93;;;-1:-1:-1;50993:6:0;50391:614;-1:-1:-1;;;;50391:614:0:o;58169:248::-;58353:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58343:69;;;;;;58169:248::o;54773:210::-;54851:7;54866:17;54885:18;54907:27;54918:4;54924:9;54907:10;:27::i;:::-;54865:69;;;;54939:18;54951:5;54939:11;:18::i;75594:142::-;75678:4;75696:35;75706:3;75726;75696:9;:35::i;72937:100::-;72993:7;73014:18;:3;:16;:18::i;68915:128::-;68985:4;69003:35;69011:3;69031:5;69003:7;:35::i;68638:122::-;68705:4;68723:32;68728:3;68748:5;68723:4;:32::i;75052:189::-;75154:4;75172:64;75177:3;75197;-1:-1:-1;;;;;75211:23:0;;75172:4;:64::i;63313:111::-;63380:7;63401:3;:11;;63413:5;63401:18;;;;;;;;;;;;;;;;63394:25;;63313:111;;;;:::o;23576:101::-;23646:26;23656:2;23660:7;23646:26;;;;;;;;;;;;:9;:26::i;73369:163::-;73436:7;;;73473:19;:3;73486:5;73473:12;:19::i;:::-;73510:16;;;;:11;;;;;:16;;;;;;;;;73369:163;-1:-1:-1;;;;73369:163:0:o;74531:236::-;74638:7;74668:16;;;:11;;;:16;;;;;;74697:10;;;;:33;;;74711:19;74721:3;74726;74711:9;:19::i;:::-;74732:12;74689:56;;;;;-1:-1:-1;;;74689:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62892:100;62969:18;;62892:100::o;27465:502::-;27580:4;27598:15;:2;-1:-1:-1;;;;;27598:13:0;;:15::i;:::-;27593:45;;-1:-1:-1;27628:4:0;27621:11;;27593:45;27642:23;27668:201;-1:-1:-1;;;27763:12:0;:10;:12::i;:::-;27781:4;27791:7;27804:5;27684:130;;;;;;-1:-1:-1;;;;;27684:130:0;;;;;;-1:-1:-1;;;;;27684:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27668:201;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27668:15:0;;;:201;:15;:201::i;:::-;27642:227;;27874:13;27901:10;27890:32;;;;;;;;;;;;;;;-1:-1:-1;27890:32:0;-1:-1:-1;;;;;;27935:26:0;-1:-1:-1;;;27935:26:0;;-1:-1:-1;;;27465:502:0;;;;;;:::o;52957:1059::-;53038:7;53047:12;53248:9;:16;53268:2;53248:22;53244:768;;;53478:4;53463:20;;53457:27;53516:4;53501:20;;53495:27;53562:4;53547:20;;53541:27;53278:9;53533:36;53587:25;53598:4;53533:36;53457:27;53495;53587:10;:25::i;:::-;53580:32;;;;;;;;;53244:768;53628:9;:16;53648:2;53628:22;53624:388;;;53846:4;53831:20;;53825:27;53885:4;53870:20;;53864:27;53909:23;53920:4;53825:27;53864;53909:10;:23::i;:::-;53902:30;;;;;;;;53624:388;-1:-1:-1;53966:1:0;;-1:-1:-1;53970:35:0;53950:56;;51375:559;51447:20;51438:5;:29;;;;;;;;;51434:496;;;51475:7;;51434:496;51530:29;51521:5;:38;;;;;;;;;51517:413;;;51567:34;;;-1:-1:-1;;;51567:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;51517:413;51626:35;51617:5;:44;;;;;;;;;51613:317;;;51669:41;;;-1:-1:-1;;;51669:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;51613:317;51735:30;51726:5;:39;;;;;;;;;51722:208;;;51773:44;;-1:-1:-1;;;51773:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51722:208;51842:30;51833:5;:39;;;;;;;;;51829:101;;;51880:44;;-1:-1:-1;;;51880:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72737:117;72808:4;72826:23;:3;72845;72826:18;:23::i;61423:1201::-;61489:4;61616:19;;;:12;;;:19;;;;;;61646:15;;61642:978;;62040:18;;-1:-1:-1;;62000:14:0;;;;62040:22;62074:26;;;62070:336;;62109:17;62129:3;:11;;62141:9;62129:22;;;;;;;;;;;;;;;;62109:42;;62259:9;62230:3;:11;;62242:13;62230:26;;;;;;;;;;;;;;;;;;;:38;;;;62320:23;;;:12;;;:23;;;;;:36;;;62070:336;62469:17;;:3;;:17;;;;;;;;;;;;;;;;;;;;;;62546:3;:12;;:19;62559:5;62546:19;;;;;;;;;;;62539:26;;;62580:4;62573:11;;;;;;;61642:978;62609:5;62602:12;;;;;60929:339;60992:4;61008:21;61018:3;61023:5;61008:9;:21::i;:::-;61003:261;;-1:-1:-1;61037:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;61193:18;;61171:19;;;:12;;;:19;;;;;;:40;;;;61217:11;;61003:261;-1:-1:-1;61253:5:0;61246:12;;72213:159;72302:4;72313:16;;;:11;;;:16;;;;;:24;;;72349:18;72313:3;72325;72349:13;:18::i;23889:235::-;23979:18;23985:2;23989:7;23979:5;:18::i;:::-;24010:54;24041:1;24045:2;24049:7;24058:5;24010:22;:54::i;:::-;24002:117;;;;-1:-1:-1;;;24002:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43874:333;44158:20;44194:8;;;43874:333::o;46467:199::-;46583:12;46609:52;46631:6;46639:4;46645:1;46648:12;46609:21;:52::i;56074:1467::-;56178:7;;57052:66;57039:79;;57035:148;;;-1:-1:-1;57142:1:0;;-1:-1:-1;57146:30:0;57126:51;;57035:148;57191:1;:7;;57196:2;57191:7;;:18;;;;;57202:1;:7;;57207:2;57202:7;;57191:18;57187:87;;;-1:-1:-1;57233:1:0;;-1:-1:-1;57237:30:0;57217:51;;57187:87;57359:14;57376:24;57386:4;57392:1;57395;57398;57376:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57376:24:0;;-1:-1:-1;;57376:24:0;;;-1:-1:-1;;;;;;;57409:20:0;;57405:88;;57453:1;57457:29;57437:50;;;;;;;57405:88;57507:6;-1:-1:-1;57515:20:0;;-1:-1:-1;56074:1467:0;;;;;;;;:::o;55222:319::-;55315:7;;55397:66;55389:75;;55482:3;55478:12;;;55492:2;55474:21;55511:25;55522:4;55474:21;55531:1;55389:75;55511:10;:25::i;:::-;55504:32;;;;;;55222:319;;;;;;:::o;64734:131::-;64814:4;64832:28;64842:3;64854:5;62698:120;62771:4;62789:19;;;:12;;;;;:19;;;;;;:24;;;62698:120::o;24421:365::-;-1:-1:-1;;;;;24495:16:0;;24487:61;;;;;-1:-1:-1;;;24487:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24562:16;24570:7;24562;:16::i;:::-;24561:17;24553:58;;;;;-1:-1:-1;;;24553:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24618:45;24647:1;24651:2;24655:7;24618:20;:45::i;:::-;-1:-1:-1;;;;;24670:17:0;;;;;;:13;:17;;;;;:30;;24692:7;24670:21;:30::i;:::-;-1:-1:-1;24707:29:0;:12;24724:7;24733:2;24707:16;:29::i;:::-;-1:-1:-1;24748:33:0;;24773:7;;-1:-1:-1;;;;;24748:33:0;;;24765:1;;24748:33;;24765:1;;24748:33;24421:365;;:::o;47470:457::-;47613:12;47665:5;47640:21;:30;;47632:81;;;;-1:-1:-1;;;47632:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47726:18;47737:6;47726:10;:18::i;:::-;47718:60;;;;;-1:-1:-1;;;47718:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47786:12;47800:23;47827:6;-1:-1:-1;;;;;47827:11:0;47846:5;47853:4;47827:31;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47827:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47785:73;;;;47870:52;47888:7;47897:10;47909:12;47870:17;:52::i;:::-;47863:59;47470:457;-1:-1:-1;;;;;;;47470:457:0:o;49696:547::-;49825:12;49848:7;49844:395;;;-1:-1:-1;49870:10:0;49863:17;;49844:395;49960:17;;:21;49956:278;;50119:10;50113:17;50165:15;50152:10;50148:2;50144:19;50137:44;50082:106;50207:20;;-1:-1:-1;;;50207:20:0;;;;;;;;;;;;;;;;;50214:12;;50207:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

ipfs://051104b07cf7cccdf627eaa0dff1baa8223b15992ecb0e65d35ee252128b2141
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.