More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 88 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15682422 | 860 days ago | IN | 0 ETH | 0.00061921 | ||||
Safe Transfer Fr... | 15357600 | 910 days ago | IN | 0 ETH | 0.0003618 | ||||
Mint Sale NFT | 15357565 | 910 days ago | IN | 0.09 ETH | 0.00107079 | ||||
Set Approval For... | 15271400 | 923 days ago | IN | 0 ETH | 0.00061859 | ||||
Transfer From | 15186445 | 936 days ago | IN | 0 ETH | 0.00321207 | ||||
Mint Sale NFT | 15181859 | 937 days ago | IN | 0.09 ETH | 0.0032432 | ||||
Mint Reserved NF... | 15181787 | 937 days ago | IN | 0 ETH | 0.00376549 | ||||
Mint Reserved NF... | 15149187 | 942 days ago | IN | 0 ETH | 0.00199561 | ||||
Mint Sale NFT | 15136921 | 944 days ago | IN | 0.18 ETH | 0.00310855 | ||||
Mint Reserved NF... | 15136067 | 944 days ago | IN | 0 ETH | 0.00341126 | ||||
Set Approval For... | 15116725 | 947 days ago | IN | 0 ETH | 0.00292349 | ||||
Set Approval For... | 15116646 | 947 days ago | IN | 0 ETH | 0.00165221 | ||||
Transfer From | 15111155 | 948 days ago | IN | 0 ETH | 0.00119471 | ||||
Set Approval For... | 15111145 | 948 days ago | IN | 0 ETH | 0.00144711 | ||||
Mint Sale NFT | 15111136 | 948 days ago | IN | 0.09 ETH | 0.00517629 | ||||
Mint Sale NFT | 15109262 | 948 days ago | IN | 0.09 ETH | 0.00260141 | ||||
Mint Sale NFT | 15105021 | 949 days ago | IN | 0.09 ETH | 0.00106909 | ||||
Mint Reserved NF... | 15102754 | 949 days ago | IN | 0 ETH | 0.00257207 | ||||
Transfer From | 15091973 | 951 days ago | IN | 0 ETH | 0.00074193 | ||||
Mint Reserved NF... | 15091881 | 951 days ago | IN | 0 ETH | 0.00377209 | ||||
Mint Sale NFT | 15089239 | 951 days ago | IN | 0.09 ETH | 0.00302061 | ||||
Mint Sale NFT | 15083911 | 952 days ago | IN | 0.09 ETH | 0.00350969 | ||||
Mint Reserved NF... | 15082261 | 953 days ago | IN | 0 ETH | 0.00287472 | ||||
Mint Sale NFT | 15082172 | 953 days ago | IN | 0.09 ETH | 0.00120631 | ||||
Mint Sale NFT | 15077830 | 953 days ago | IN | 0.09 ETH | 0.00159527 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
TFA
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-29 */ pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } 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; } } 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); } 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; } 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); } 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); } 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); } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata { using Address for address; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count = 0; uint length = _owners.length; for( uint i = 0; i < length; ++i ){ if( owner == _owners[i] ){ ++count; } } delete length; return count; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721P.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } 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); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } 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); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } 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); } 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"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721P.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } 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" ); } 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); _owners.push(to); emit Transfer(address(0), to, tokenId); } function _burn(uint256 tokenId) internal virtual { address owner = ERC721P.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721P.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721P.ownerOf(tokenId), to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } abstract contract ERC721Enum is ERC721P, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) { require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ){ if( count == index ) return i; else ++count; } } require(false, "ERC721Enum: owner ioob"); } function tokensOfOwner(address owner) public view returns (uint256[] memory) { require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob"); uint256 tokenCount = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(owner, i); } return tokenIds; } function totalSupply() public view virtual override returns (uint256) { return _owners.length; } function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob"); return index; } } library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } } contract TFA is ERC721Enum, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public SALE_NFT = 4950; uint256 public RESERVED_NFT = 50; uint256 public MAX_MINT_PRESALE = 3; uint256 public MAX_MINT_SALE = 4950; uint256 public MAX_BY_MINT_IN_TRANSACTION_PRESALE = 3; uint256 public MAX_BY_MINT_IN_TRANSACTION_SALE = 4950; uint256 public PRESALE_PRICE = 0.09 ether; uint256 public SALE_PRICE = 0.09 ether; uint256 public SALE_MINTED; uint256 public RESERVED_MINTED; bool public presaleEnable = false; bool public saleEnable = false; string private baseURI; bytes32 public merkleRoot; struct User { uint256 presalemint; uint256 salemint; } mapping (address => User) public users; constructor() ERC721P("The First Arabs", "TFA") {} function _baseURI() internal view virtual returns (string memory) { return baseURI; } function mintReservedNFT(address _to, uint256 _count) external onlyOwner nonReentrant{ uint256 totalSupply = totalSupply(); require( RESERVED_MINTED + _count <= RESERVED_NFT, "Max limit" ); for (uint256 i = 0; i < _count; i++) { _safeMint(_to, totalSupply + i); RESERVED_MINTED++; } } function mintPreSaleNFT(uint256 _count, bytes32[] calldata merkleProof) external payable nonReentrant{ bytes32 node = keccak256(abi.encodePacked(msg.sender)); uint256 totalSupply = totalSupply(); require( presaleEnable, "Pre-sale is not enable" ); require( SALE_MINTED + _count <= SALE_NFT, "Exceeds max limit" ); require( MerkleProof.verify(merkleProof, merkleRoot, node), "MerkleDistributor: Invalid proof." ); require( users[msg.sender].presalemint + _count <= MAX_MINT_PRESALE, "Exceeds max mint limit per wallet" ); require( _count <= MAX_BY_MINT_IN_TRANSACTION_PRESALE, "Exceeds max mint limit per tnx" ); require( msg.value >= PRESALE_PRICE * _count, "Value below price" ); for (uint256 i = 0; i < _count; i++) { _safeMint(msg.sender, totalSupply + i); SALE_MINTED++; } users[msg.sender].presalemint = users[msg.sender].presalemint + _count; } function mintSaleNFT(uint256 _count) external payable nonReentrant{ uint256 totalSupply = totalSupply(); require( saleEnable, "Sale is not enable" ); require( SALE_MINTED + _count <= SALE_NFT, "Exceeds max limit" ); require( users[msg.sender].salemint + _count <= MAX_MINT_SALE, "Exceeds max mint limit per wallet" ); require( _count <= MAX_BY_MINT_IN_TRANSACTION_SALE, "Exceeds max mint limit per tnx" ); require( msg.value >= SALE_PRICE * _count, "Value below price" ); for (uint256 i = 0; i < _count; i++) { _safeMint(msg.sender, totalSupply + i); SALE_MINTED++; } users[msg.sender].salemint = users[msg.sender].salemint + _count; } function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ""; } function transferFrom(address _from, address _to, uint256 _tokenId) public override { ERC721P.transferFrom(_from, _to, _tokenId); } function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override { ERC721P.safeTransferFrom(_from, _to, _tokenId, _data); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function setBaseURI(string memory newBaseURI) external onlyOwner { baseURI = newBaseURI; } function updateSalePrice(uint256 newPrice) external onlyOwner { SALE_PRICE = newPrice; } function updatePreSalePrice(uint256 newPrice) external onlyOwner { PRESALE_PRICE = newPrice; } function setSaleStatus(bool status) external onlyOwner { require(saleEnable != status); saleEnable = status; } function setPreSaleStatus(bool status) external onlyOwner { require(presaleEnable != status); presaleEnable = status; } function updateSaleMintLimit(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_MINT_SALE = newLimit; } function updatePreSaleMintLimit(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_MINT_PRESALE = newLimit; } function updateSaleSupply(uint256 newSupply) external onlyOwner { require(newSupply >= SALE_MINTED, "Incorrect value"); SALE_NFT = newSupply; } function updateReservedSupply(uint256 newSupply) external onlyOwner { require(newSupply >= RESERVED_MINTED, "Incorrect value"); RESERVED_NFT = newSupply; } function updateMintLimitPerTransectionPreSale(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_BY_MINT_IN_TRANSACTION_PRESALE = newLimit; } function updateMintLimitPerTransectionSale(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_BY_MINT_IN_TRANSACTION_SALE = newLimit; } function updateMerkleRoot(bytes32 newRoot) external onlyOwner { merkleRoot = newRoot; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintReservedNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","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":"presaleEnable","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":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","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":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateReservedSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"presalemint","type":"uint256"},{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526113566007819055603260085560036009819055600a829055600b55600c5567013fbe85edc90000600d819055600e556011805461ffff191690553480156200004c57600080fd5b50604080518082018252600f81526e54686520466972737420417261627360881b60208083019182528351808501909452600384526254464160e81b9084015281519192916200009f9160009162000133565b508051620000b590600190602084019062000133565b505050620000d2620000cc620000dd60201b60201c565b620000e1565b600160065562000216565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014190620001d9565b90600052602060002090601f016020900481019282620001655760008555620001b0565b82601f106200018057805160ff1916838001178555620001b0565b82800160010185558215620001b0579182015b82811115620001b057825182559160200191906001019062000193565b50620001be929150620001c2565b5090565b5b80821115620001be5760008155600101620001c3565b600181811c90821680620001ee57607f821691505b602082108114156200021057634e487b7160e01b600052602260045260246000fd5b50919050565b612b8280620002266000396000f3fe6080604052600436106102c95760003560e01c80637ec0912e11610175578063aa9dc50c116100dc578063d897833e11610095578063f2fde38b1161006f578063f2fde38b1461087a578063f43973351461089a578063f921d83f146108ba578063fe4ca847146108d057600080fd5b8063d897833e146107f1578063e985e9c514610811578063f176baaa1461085a57600080fd5b8063aa9dc50c1461074f578063ae5cc1721461076f578063b88d4fde14610785578063c87b56dd146107a5578063ccfb63a4146107c5578063d4bba0e9146107db57600080fd5b8063945242c61161012e578063945242c61461069557806395d89b41146106a8578063995b8ef6146106bd578063a22cb465146106d3578063a87430ba146106f3578063a95268621461073c57600080fd5b80637ec0912e146105da5780637ec18cf6146105fa5780637f205a74146106145780638462151c1461062a5780638da5cb5b14610657578063941e79fc1461067557600080fd5b806342842e0e116102345780636352211e116101ed578063711cc2ae116101c7578063711cc2ae14610579578063715018a61461058f57806375b61afe146105a45780637e95eac4146105c457600080fd5b80636352211e1461051957806365fccb521461053957806370a082311461055957600080fd5b806342842e0e146104635780634783f0ef146104835780634f6ccce7146104a357806355f804b3146104c35780635e326b92146104e357806362dc6e211461050357600080fd5b806323b872dd1161028657806323b872dd146103b85780632eb4a7ab146103d85780632f745c59146103ee578063305004d91461040e5780633ccfd60b1461042e5780633e2e2a801461044357600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d5780630990e5341461037f57806318160ddd146103a3575b600080fd5b3480156102da57600080fd5b506102ee6102e936600461263c565b6108ef565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061031861091a565b6040516102fa919061282a565b34801561033157600080fd5b50610345610340366004612623565b6109ac565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d6103783660046125de565b610a39565b005b34801561038b57600080fd5b50610395600f5481565b6040519081526020016102fa565b3480156103af57600080fd5b50600254610395565b3480156103c457600080fd5b5061037d6103d33660046124fc565b610b4f565b3480156103e457600080fd5b5061039560135481565b3480156103fa57600080fd5b506103956104093660046125de565b610b5a565b34801561041a57600080fd5b5061037d610429366004612623565b610c09565b34801561043a57600080fd5b5061037d610c5a565b34801561044f57600080fd5b5061037d61045e366004612623565b610cb7565b34801561046f57600080fd5b5061037d61047e3660046124fc565b610d08565b34801561048f57600080fd5b5061037d61049e366004612623565b610d23565b3480156104af57600080fd5b506103956104be366004612623565b610d52565b3480156104cf57600080fd5b5061037d6104de366004612676565b610daf565b3480156104ef57600080fd5b5061037d6104fe366004612608565b610dec565b34801561050f57600080fd5b50610395600d5481565b34801561052557600080fd5b50610345610534366004612623565b610e3f565b34801561054557600080fd5b5061037d610554366004612623565b610ecb565b34801561056557600080fd5b506103956105743660046124ae565b610efa565b34801561058557600080fd5b50610395600c5481565b34801561059b57600080fd5b5061037d610fcc565b3480156105b057600080fd5b5061037d6105bf3660046125de565b611002565b3480156105d057600080fd5b5061039560095481565b3480156105e657600080fd5b5061037d6105f5366004612623565b6110fd565b34801561060657600080fd5b506011546102ee9060ff1681565b34801561062057600080fd5b50610395600e5481565b34801561063657600080fd5b5061064a6106453660046124ae565b61112c565b6040516102fa91906127e6565b34801561066357600080fd5b506005546001600160a01b0316610345565b34801561068157600080fd5b5061037d610690366004612623565b6111f6565b61037d6106a33660046126bf565b611247565b3480156106b457600080fd5b50610318611543565b3480156106c957600080fd5b5061039560075481565b3480156106df57600080fd5b5061037d6106ee3660046125b4565b611552565b3480156106ff57600080fd5b5061072761070e3660046124ae565b6014602052600090815260409020805460019091015482565b604080519283526020830191909152016102fa565b61037d61074a366004612623565b611617565b34801561075b57600080fd5b5061037d61076a366004612623565b61184d565b34801561077b57600080fd5b50610395600a5481565b34801561079157600080fd5b5061037d6107a0366004612538565b61189e565b3480156107b157600080fd5b506103186107c0366004612623565b6118b0565b3480156107d157600080fd5b50610395600b5481565b3480156107e757600080fd5b5061039560085481565b3480156107fd57600080fd5b5061037d61080c366004612608565b61196d565b34801561081d57600080fd5b506102ee61082c3660046124c9565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561086657600080fd5b5061037d610875366004612623565b6119cd565b34801561088657600080fd5b5061037d6108953660046124ae565b611a1e565b3480156108a657600080fd5b5061037d6108b5366004612623565b611ab9565b3480156108c657600080fd5b5061039560105481565b3480156108dc57600080fd5b506011546102ee90610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610914575061091482611b0a565b92915050565b60606000805461092990612a74565b80601f016020809104026020016040519081016040528092919081815260200182805461095590612a74565b80156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b5050505050905090565b60006109b782611b5a565b610a1d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610a4482610e3f565b9050806001600160a01b0316836001600160a01b03161415610ab25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a14565b336001600160a01b0382161480610ace5750610ace813361082c565b610b405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a14565b610b4a8383611ba4565b505050565b610b4a838383611c12565b6000610b6583610efa565b8210610b835760405162461bcd60e51b8152600401610a14906128ed565b6000805b600254811015610bf05760028181548110610ba457610ba4612b0a565b6000918252602090912001546001600160a01b0386811691161415610be05783821415610bd45791506109149050565b610bdd82612aaf565b91505b610be981612aaf565b9050610b87565b5060405162461bcd60e51b8152600401610a14906128ed565b6005546001600160a01b03163314610c335760405162461bcd60e51b8152600401610a14906128b8565b806007541015610c555760405162461bcd60e51b8152600401610a149061288f565b600b55565b6005546001600160a01b03163314610c845760405162461bcd60e51b8152600401610a14906128b8565b6040514790339082156108fc029083906000818181858888f19350505050158015610cb3573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610ce15760405162461bcd60e51b8152600401610a14906128b8565b806007541015610d035760405162461bcd60e51b8152600401610a149061288f565b600c55565b610b4a8383836040518060200160405280600081525061189e565b6005546001600160a01b03163314610d4d5760405162461bcd60e51b8152600401610a14906128b8565b601355565b6000610d5d60025490565b8210610dab5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610a14565b5090565b6005546001600160a01b03163314610dd95760405162461bcd60e51b8152600401610a14906128b8565b8051610cb390601290602084019061237c565b6005546001600160a01b03163314610e165760405162461bcd60e51b8152600401610a14906128b8565b60115460ff1615158115151415610e2c57600080fd5b6011805460ff1916911515919091179055565b60008060028381548110610e5557610e55612b0a565b6000918252602090912001546001600160a01b03169050806109145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a14565b6005546001600160a01b03163314610ef55760405162461bcd60e51b8152600401610a14906128b8565b600d55565b60006001600160a01b038216610f655760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a14565b600254600090815b81811015610fc35760028181548110610f8857610f88612b0a565b6000918252602090912001546001600160a01b0386811691161415610fb357610fb083612aaf565b92505b610fbc81612aaf565b9050610f6d565b50909392505050565b6005546001600160a01b03163314610ff65760405162461bcd60e51b8152600401610a14906128b8565b6110006000611c43565b565b6005546001600160a01b0316331461102c5760405162461bcd60e51b8152600401610a14906128b8565b6002600654141561104f5760405162461bcd60e51b8152600401610a14906129af565b6002600655600061105f60025490565b90506008548260105461107291906129e6565b11156110ac5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610a14565b60005b828110156110f2576110ca846110c583856129e6565b611c95565b601080549060006110da83612aaf565b919050555080806110ea90612aaf565b9150506110af565b505060016006555050565b6005546001600160a01b031633146111275760405162461bcd60e51b8152600401610a14906128b8565b600e55565b606061113782610efa565b6000106111565760405162461bcd60e51b8152600401610a14906128ed565b600061116183610efa565b905060008167ffffffffffffffff81111561117e5761117e612b20565b6040519080825280602002602001820160405280156111a7578160200160208202803683370190505b50905060005b828110156111ee576111bf8582610b5a565b8282815181106111d1576111d1612b0a565b6020908102919091010152806111e681612aaf565b9150506111ad565b509392505050565b6005546001600160a01b031633146112205760405162461bcd60e51b8152600401610a14906128b8565b8060075410156112425760405162461bcd60e51b8152600401610a149061288f565b600955565b6002600654141561126a5760405162461bcd60e51b8152600401610a14906129af565b60026006556040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905060006112b360025490565b60115490915060ff166113015760405162461bcd60e51b81526020600482015260166024820152755072652d73616c65206973206e6f7420656e61626c6560501b6044820152606401610a14565b60075485600f5461131291906129e6565b11156113545760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81b585e081b1a5b5a5d607a1b6044820152606401610a14565b611395848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150859050611caf565b6113eb5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b6064820152608401610a14565b600954336000908152601460205260409020546114099087906129e6565b11156114275760405162461bcd60e51b8152600401610a149061296e565b600b548511156114795760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e74206c696d69742070657220746e7800006044820152606401610a14565b84600d546114879190612a12565b3410156114ca5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610a14565b60005b8581101561150b576114e3336110c583856129e6565b600f80549060006114f383612aaf565b9190505550808061150390612aaf565b9150506114cd565b50336000908152601460205260409020546115279086906129e6565b3360009081526014602052604090205550506001600655505050565b60606001805461092990612a74565b6001600160a01b0382163314156115ab5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a14565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600654141561163a5760405162461bcd60e51b8152600401610a14906129af565b6002600655600061164a60025490565b601154909150610100900460ff166116995760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f7420656e61626c6560701b6044820152606401610a14565b60075482600f546116aa91906129e6565b11156116ec5760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81b585e081b1a5b5a5d607a1b6044820152606401610a14565b600a543360009081526014602052604090206001015461170d9084906129e6565b111561172b5760405162461bcd60e51b8152600401610a149061296e565b600c5482111561177d5760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e74206c696d69742070657220746e7800006044820152606401610a14565b81600e5461178b9190612a12565b3410156117ce5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610a14565b60005b8281101561180f576117e7336110c583856129e6565b600f80549060006117f783612aaf565b9190505550808061180790612aaf565b9150506117d1565b503360009081526014602052604090206001015461182e9083906129e6565b3360009081526014602052604090206001908101919091556006555050565b6005546001600160a01b031633146118775760405162461bcd60e51b8152600401610a14906128b8565b6010548110156118995760405162461bcd60e51b8152600401610a149061288f565b600855565b6118aa84848484611d5e565b50505050565b60606118bb82611b5a565b6119115760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610a14565b600061191b611d90565b9050600081511161193b5760405180602001604052806000815250611966565b8061194584611d9f565b60405160200161195692919061276a565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146119975760405162461bcd60e51b8152600401610a14906128b8565b60115460ff61010090910416151581151514156119b357600080fd5b601180549115156101000261ff0019909216919091179055565b6005546001600160a01b031633146119f75760405162461bcd60e51b8152600401610a14906128b8565b806007541015611a195760405162461bcd60e51b8152600401610a149061288f565b600a55565b6005546001600160a01b03163314611a485760405162461bcd60e51b8152600401610a14906128b8565b6001600160a01b038116611aad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a14565b611ab681611c43565b50565b6005546001600160a01b03163314611ae35760405162461bcd60e51b8152600401610a14906128b8565b600f54811015611b055760405162461bcd60e51b8152600401610a149061288f565b600755565b60006001600160e01b031982166380ac58cd60e01b1480611b3b57506001600160e01b03198216635b5e139f60e01b145b8061091457506301ffc9a760e01b6001600160e01b0319831614610914565b60025460009082108015610914575060006001600160a01b031660028381548110611b8757611b87612b0a565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bd982610e3f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611c1c3382611ea5565b611c385760405162461bcd60e51b8152600401610a149061291d565b610b4a838383611f8b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cb38282604051806020016040528060008152506120e1565b600081815b8551811015611d53576000868281518110611cd157611cd1612b0a565b60200260200101519050808311611d13576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611d40565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611d4b81612aaf565b915050611cb4565b509092149392505050565b611d683383611ea5565b611d845760405162461bcd60e51b8152600401610a149061291d565b6118aa84848484612114565b60606012805461092990612a74565b606081611dc35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ded5780611dd781612aaf565b9150611de69050600a836129fe565b9150611dc7565b60008167ffffffffffffffff811115611e0857611e08612b20565b6040519080825280601f01601f191660200182016040528015611e32576020820181803683370190505b5090505b8415611e9d57611e47600183612a31565b9150611e54600a86612aca565b611e5f9060306129e6565b60f81b818381518110611e7457611e74612b0a565b60200101906001600160f81b031916908160001a905350611e96600a866129fe565b9450611e36565b949350505050565b6000611eb082611b5a565b611f115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a14565b6000611f1c83610e3f565b9050806001600160a01b0316846001600160a01b03161480611f575750836001600160a01b0316611f4c846109ac565b6001600160a01b0316145b80611e9d57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff16611e9d565b826001600160a01b0316611f9e82610e3f565b6001600160a01b0316146120065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a14565b6001600160a01b0382166120685760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a14565b612073600082611ba4565b816002828154811061208757612087612b0a565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6120eb8383612147565b6120f8600084848461226f565b610b4a5760405162461bcd60e51b8152600401610a149061283d565b61211f848484611f8b565b61212b8484848461226f565b6118aa5760405162461bcd60e51b8152600401610a149061283d565b6001600160a01b03821661219d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a14565b6121a681611b5a565b156121f35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a14565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561237157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122b39033908990889088906004016127a9565b602060405180830381600087803b1580156122cd57600080fd5b505af19250505080156122fd575060408051601f3d908101601f191682019092526122fa91810190612659565b60015b612357573d80801561232b576040519150601f19603f3d011682016040523d82523d6000602084013e612330565b606091505b50805161234f5760405162461bcd60e51b8152600401610a149061283d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e9d565b506001949350505050565b82805461238890612a74565b90600052602060002090601f0160209004810192826123aa57600085556123f0565b82601f106123c357805160ff19168380011785556123f0565b828001600101855582156123f0579182015b828111156123f05782518255916020019190600101906123d5565b50610dab9291505b80821115610dab57600081556001016123f8565b600067ffffffffffffffff8084111561242757612427612b20565b604051601f8501601f19908116603f0116810190828211818310171561244f5761244f612b20565b8160405280935085815286868601111561246857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461249957600080fd5b919050565b8035801515811461249957600080fd5b6000602082840312156124c057600080fd5b61196682612482565b600080604083850312156124dc57600080fd5b6124e583612482565b91506124f360208401612482565b90509250929050565b60008060006060848603121561251157600080fd5b61251a84612482565b925061252860208501612482565b9150604084013590509250925092565b6000806000806080858703121561254e57600080fd5b61255785612482565b935061256560208601612482565b925060408501359150606085013567ffffffffffffffff81111561258857600080fd5b8501601f8101871361259957600080fd5b6125a88782356020840161240c565b91505092959194509250565b600080604083850312156125c757600080fd5b6125d083612482565b91506124f36020840161249e565b600080604083850312156125f157600080fd5b6125fa83612482565b946020939093013593505050565b60006020828403121561261a57600080fd5b6119668261249e565b60006020828403121561263557600080fd5b5035919050565b60006020828403121561264e57600080fd5b813561196681612b36565b60006020828403121561266b57600080fd5b815161196681612b36565b60006020828403121561268857600080fd5b813567ffffffffffffffff81111561269f57600080fd5b8201601f810184136126b057600080fd5b611e9d8482356020840161240c565b6000806000604084860312156126d457600080fd5b83359250602084013567ffffffffffffffff808211156126f357600080fd5b818601915086601f83011261270757600080fd5b81358181111561271657600080fd5b8760208260051b850101111561272b57600080fd5b6020830194508093505050509250925092565b60008151808452612756816020860160208601612a48565b601f01601f19169290920160200192915050565b6000835161277c818460208801612a48565b835190830190612790818360208801612a48565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127dc9083018461273e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561281e57835183529284019291840191600101612802565b50909695505050505050565b602081526000611966602083018461273e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156129f9576129f9612ade565b500190565b600082612a0d57612a0d612af4565b500490565b6000816000190483118215151615612a2c57612a2c612ade565b500290565b600082821015612a4357612a43612ade565b500390565b60005b83811015612a63578181015183820152602001612a4b565b838111156118aa5750506000910152565b600181811c90821680612a8857607f821691505b60208210811415612aa957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ac357612ac3612ade565b5060010190565b600082612ad957612ad9612af4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ab657600080fdfea2646970667358221220c1575af1cb88c9d7c4e146034ae3c460eea3354b8b9c4449828c531ca7f0f86d64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102c95760003560e01c80637ec0912e11610175578063aa9dc50c116100dc578063d897833e11610095578063f2fde38b1161006f578063f2fde38b1461087a578063f43973351461089a578063f921d83f146108ba578063fe4ca847146108d057600080fd5b8063d897833e146107f1578063e985e9c514610811578063f176baaa1461085a57600080fd5b8063aa9dc50c1461074f578063ae5cc1721461076f578063b88d4fde14610785578063c87b56dd146107a5578063ccfb63a4146107c5578063d4bba0e9146107db57600080fd5b8063945242c61161012e578063945242c61461069557806395d89b41146106a8578063995b8ef6146106bd578063a22cb465146106d3578063a87430ba146106f3578063a95268621461073c57600080fd5b80637ec0912e146105da5780637ec18cf6146105fa5780637f205a74146106145780638462151c1461062a5780638da5cb5b14610657578063941e79fc1461067557600080fd5b806342842e0e116102345780636352211e116101ed578063711cc2ae116101c7578063711cc2ae14610579578063715018a61461058f57806375b61afe146105a45780637e95eac4146105c457600080fd5b80636352211e1461051957806365fccb521461053957806370a082311461055957600080fd5b806342842e0e146104635780634783f0ef146104835780634f6ccce7146104a357806355f804b3146104c35780635e326b92146104e357806362dc6e211461050357600080fd5b806323b872dd1161028657806323b872dd146103b85780632eb4a7ab146103d85780632f745c59146103ee578063305004d91461040e5780633ccfd60b1461042e5780633e2e2a801461044357600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d5780630990e5341461037f57806318160ddd146103a3575b600080fd5b3480156102da57600080fd5b506102ee6102e936600461263c565b6108ef565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061031861091a565b6040516102fa919061282a565b34801561033157600080fd5b50610345610340366004612623565b6109ac565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d6103783660046125de565b610a39565b005b34801561038b57600080fd5b50610395600f5481565b6040519081526020016102fa565b3480156103af57600080fd5b50600254610395565b3480156103c457600080fd5b5061037d6103d33660046124fc565b610b4f565b3480156103e457600080fd5b5061039560135481565b3480156103fa57600080fd5b506103956104093660046125de565b610b5a565b34801561041a57600080fd5b5061037d610429366004612623565b610c09565b34801561043a57600080fd5b5061037d610c5a565b34801561044f57600080fd5b5061037d61045e366004612623565b610cb7565b34801561046f57600080fd5b5061037d61047e3660046124fc565b610d08565b34801561048f57600080fd5b5061037d61049e366004612623565b610d23565b3480156104af57600080fd5b506103956104be366004612623565b610d52565b3480156104cf57600080fd5b5061037d6104de366004612676565b610daf565b3480156104ef57600080fd5b5061037d6104fe366004612608565b610dec565b34801561050f57600080fd5b50610395600d5481565b34801561052557600080fd5b50610345610534366004612623565b610e3f565b34801561054557600080fd5b5061037d610554366004612623565b610ecb565b34801561056557600080fd5b506103956105743660046124ae565b610efa565b34801561058557600080fd5b50610395600c5481565b34801561059b57600080fd5b5061037d610fcc565b3480156105b057600080fd5b5061037d6105bf3660046125de565b611002565b3480156105d057600080fd5b5061039560095481565b3480156105e657600080fd5b5061037d6105f5366004612623565b6110fd565b34801561060657600080fd5b506011546102ee9060ff1681565b34801561062057600080fd5b50610395600e5481565b34801561063657600080fd5b5061064a6106453660046124ae565b61112c565b6040516102fa91906127e6565b34801561066357600080fd5b506005546001600160a01b0316610345565b34801561068157600080fd5b5061037d610690366004612623565b6111f6565b61037d6106a33660046126bf565b611247565b3480156106b457600080fd5b50610318611543565b3480156106c957600080fd5b5061039560075481565b3480156106df57600080fd5b5061037d6106ee3660046125b4565b611552565b3480156106ff57600080fd5b5061072761070e3660046124ae565b6014602052600090815260409020805460019091015482565b604080519283526020830191909152016102fa565b61037d61074a366004612623565b611617565b34801561075b57600080fd5b5061037d61076a366004612623565b61184d565b34801561077b57600080fd5b50610395600a5481565b34801561079157600080fd5b5061037d6107a0366004612538565b61189e565b3480156107b157600080fd5b506103186107c0366004612623565b6118b0565b3480156107d157600080fd5b50610395600b5481565b3480156107e757600080fd5b5061039560085481565b3480156107fd57600080fd5b5061037d61080c366004612608565b61196d565b34801561081d57600080fd5b506102ee61082c3660046124c9565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561086657600080fd5b5061037d610875366004612623565b6119cd565b34801561088657600080fd5b5061037d6108953660046124ae565b611a1e565b3480156108a657600080fd5b5061037d6108b5366004612623565b611ab9565b3480156108c657600080fd5b5061039560105481565b3480156108dc57600080fd5b506011546102ee90610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610914575061091482611b0a565b92915050565b60606000805461092990612a74565b80601f016020809104026020016040519081016040528092919081815260200182805461095590612a74565b80156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b5050505050905090565b60006109b782611b5a565b610a1d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610a4482610e3f565b9050806001600160a01b0316836001600160a01b03161415610ab25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a14565b336001600160a01b0382161480610ace5750610ace813361082c565b610b405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a14565b610b4a8383611ba4565b505050565b610b4a838383611c12565b6000610b6583610efa565b8210610b835760405162461bcd60e51b8152600401610a14906128ed565b6000805b600254811015610bf05760028181548110610ba457610ba4612b0a565b6000918252602090912001546001600160a01b0386811691161415610be05783821415610bd45791506109149050565b610bdd82612aaf565b91505b610be981612aaf565b9050610b87565b5060405162461bcd60e51b8152600401610a14906128ed565b6005546001600160a01b03163314610c335760405162461bcd60e51b8152600401610a14906128b8565b806007541015610c555760405162461bcd60e51b8152600401610a149061288f565b600b55565b6005546001600160a01b03163314610c845760405162461bcd60e51b8152600401610a14906128b8565b6040514790339082156108fc029083906000818181858888f19350505050158015610cb3573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610ce15760405162461bcd60e51b8152600401610a14906128b8565b806007541015610d035760405162461bcd60e51b8152600401610a149061288f565b600c55565b610b4a8383836040518060200160405280600081525061189e565b6005546001600160a01b03163314610d4d5760405162461bcd60e51b8152600401610a14906128b8565b601355565b6000610d5d60025490565b8210610dab5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610a14565b5090565b6005546001600160a01b03163314610dd95760405162461bcd60e51b8152600401610a14906128b8565b8051610cb390601290602084019061237c565b6005546001600160a01b03163314610e165760405162461bcd60e51b8152600401610a14906128b8565b60115460ff1615158115151415610e2c57600080fd5b6011805460ff1916911515919091179055565b60008060028381548110610e5557610e55612b0a565b6000918252602090912001546001600160a01b03169050806109145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a14565b6005546001600160a01b03163314610ef55760405162461bcd60e51b8152600401610a14906128b8565b600d55565b60006001600160a01b038216610f655760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a14565b600254600090815b81811015610fc35760028181548110610f8857610f88612b0a565b6000918252602090912001546001600160a01b0386811691161415610fb357610fb083612aaf565b92505b610fbc81612aaf565b9050610f6d565b50909392505050565b6005546001600160a01b03163314610ff65760405162461bcd60e51b8152600401610a14906128b8565b6110006000611c43565b565b6005546001600160a01b0316331461102c5760405162461bcd60e51b8152600401610a14906128b8565b6002600654141561104f5760405162461bcd60e51b8152600401610a14906129af565b6002600655600061105f60025490565b90506008548260105461107291906129e6565b11156110ac5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610a14565b60005b828110156110f2576110ca846110c583856129e6565b611c95565b601080549060006110da83612aaf565b919050555080806110ea90612aaf565b9150506110af565b505060016006555050565b6005546001600160a01b031633146111275760405162461bcd60e51b8152600401610a14906128b8565b600e55565b606061113782610efa565b6000106111565760405162461bcd60e51b8152600401610a14906128ed565b600061116183610efa565b905060008167ffffffffffffffff81111561117e5761117e612b20565b6040519080825280602002602001820160405280156111a7578160200160208202803683370190505b50905060005b828110156111ee576111bf8582610b5a565b8282815181106111d1576111d1612b0a565b6020908102919091010152806111e681612aaf565b9150506111ad565b509392505050565b6005546001600160a01b031633146112205760405162461bcd60e51b8152600401610a14906128b8565b8060075410156112425760405162461bcd60e51b8152600401610a149061288f565b600955565b6002600654141561126a5760405162461bcd60e51b8152600401610a14906129af565b60026006556040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905060006112b360025490565b60115490915060ff166113015760405162461bcd60e51b81526020600482015260166024820152755072652d73616c65206973206e6f7420656e61626c6560501b6044820152606401610a14565b60075485600f5461131291906129e6565b11156113545760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81b585e081b1a5b5a5d607a1b6044820152606401610a14565b611395848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150859050611caf565b6113eb5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b6064820152608401610a14565b600954336000908152601460205260409020546114099087906129e6565b11156114275760405162461bcd60e51b8152600401610a149061296e565b600b548511156114795760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e74206c696d69742070657220746e7800006044820152606401610a14565b84600d546114879190612a12565b3410156114ca5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610a14565b60005b8581101561150b576114e3336110c583856129e6565b600f80549060006114f383612aaf565b9190505550808061150390612aaf565b9150506114cd565b50336000908152601460205260409020546115279086906129e6565b3360009081526014602052604090205550506001600655505050565b60606001805461092990612a74565b6001600160a01b0382163314156115ab5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a14565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600654141561163a5760405162461bcd60e51b8152600401610a14906129af565b6002600655600061164a60025490565b601154909150610100900460ff166116995760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f7420656e61626c6560701b6044820152606401610a14565b60075482600f546116aa91906129e6565b11156116ec5760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81b585e081b1a5b5a5d607a1b6044820152606401610a14565b600a543360009081526014602052604090206001015461170d9084906129e6565b111561172b5760405162461bcd60e51b8152600401610a149061296e565b600c5482111561177d5760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e74206c696d69742070657220746e7800006044820152606401610a14565b81600e5461178b9190612a12565b3410156117ce5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610a14565b60005b8281101561180f576117e7336110c583856129e6565b600f80549060006117f783612aaf565b9190505550808061180790612aaf565b9150506117d1565b503360009081526014602052604090206001015461182e9083906129e6565b3360009081526014602052604090206001908101919091556006555050565b6005546001600160a01b031633146118775760405162461bcd60e51b8152600401610a14906128b8565b6010548110156118995760405162461bcd60e51b8152600401610a149061288f565b600855565b6118aa84848484611d5e565b50505050565b60606118bb82611b5a565b6119115760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610a14565b600061191b611d90565b9050600081511161193b5760405180602001604052806000815250611966565b8061194584611d9f565b60405160200161195692919061276a565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146119975760405162461bcd60e51b8152600401610a14906128b8565b60115460ff61010090910416151581151514156119b357600080fd5b601180549115156101000261ff0019909216919091179055565b6005546001600160a01b031633146119f75760405162461bcd60e51b8152600401610a14906128b8565b806007541015611a195760405162461bcd60e51b8152600401610a149061288f565b600a55565b6005546001600160a01b03163314611a485760405162461bcd60e51b8152600401610a14906128b8565b6001600160a01b038116611aad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a14565b611ab681611c43565b50565b6005546001600160a01b03163314611ae35760405162461bcd60e51b8152600401610a14906128b8565b600f54811015611b055760405162461bcd60e51b8152600401610a149061288f565b600755565b60006001600160e01b031982166380ac58cd60e01b1480611b3b57506001600160e01b03198216635b5e139f60e01b145b8061091457506301ffc9a760e01b6001600160e01b0319831614610914565b60025460009082108015610914575060006001600160a01b031660028381548110611b8757611b87612b0a565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bd982610e3f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611c1c3382611ea5565b611c385760405162461bcd60e51b8152600401610a149061291d565b610b4a838383611f8b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cb38282604051806020016040528060008152506120e1565b600081815b8551811015611d53576000868281518110611cd157611cd1612b0a565b60200260200101519050808311611d13576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611d40565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611d4b81612aaf565b915050611cb4565b509092149392505050565b611d683383611ea5565b611d845760405162461bcd60e51b8152600401610a149061291d565b6118aa84848484612114565b60606012805461092990612a74565b606081611dc35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ded5780611dd781612aaf565b9150611de69050600a836129fe565b9150611dc7565b60008167ffffffffffffffff811115611e0857611e08612b20565b6040519080825280601f01601f191660200182016040528015611e32576020820181803683370190505b5090505b8415611e9d57611e47600183612a31565b9150611e54600a86612aca565b611e5f9060306129e6565b60f81b818381518110611e7457611e74612b0a565b60200101906001600160f81b031916908160001a905350611e96600a866129fe565b9450611e36565b949350505050565b6000611eb082611b5a565b611f115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a14565b6000611f1c83610e3f565b9050806001600160a01b0316846001600160a01b03161480611f575750836001600160a01b0316611f4c846109ac565b6001600160a01b0316145b80611e9d57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff16611e9d565b826001600160a01b0316611f9e82610e3f565b6001600160a01b0316146120065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a14565b6001600160a01b0382166120685760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a14565b612073600082611ba4565b816002828154811061208757612087612b0a565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6120eb8383612147565b6120f8600084848461226f565b610b4a5760405162461bcd60e51b8152600401610a149061283d565b61211f848484611f8b565b61212b8484848461226f565b6118aa5760405162461bcd60e51b8152600401610a149061283d565b6001600160a01b03821661219d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a14565b6121a681611b5a565b156121f35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a14565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561237157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122b39033908990889088906004016127a9565b602060405180830381600087803b1580156122cd57600080fd5b505af19250505080156122fd575060408051601f3d908101601f191682019092526122fa91810190612659565b60015b612357573d80801561232b576040519150601f19603f3d011682016040523d82523d6000602084013e612330565b606091505b50805161234f5760405162461bcd60e51b8152600401610a149061283d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e9d565b506001949350505050565b82805461238890612a74565b90600052602060002090601f0160209004810192826123aa57600085556123f0565b82601f106123c357805160ff19168380011785556123f0565b828001600101855582156123f0579182015b828111156123f05782518255916020019190600101906123d5565b50610dab9291505b80821115610dab57600081556001016123f8565b600067ffffffffffffffff8084111561242757612427612b20565b604051601f8501601f19908116603f0116810190828211818310171561244f5761244f612b20565b8160405280935085815286868601111561246857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461249957600080fd5b919050565b8035801515811461249957600080fd5b6000602082840312156124c057600080fd5b61196682612482565b600080604083850312156124dc57600080fd5b6124e583612482565b91506124f360208401612482565b90509250929050565b60008060006060848603121561251157600080fd5b61251a84612482565b925061252860208501612482565b9150604084013590509250925092565b6000806000806080858703121561254e57600080fd5b61255785612482565b935061256560208601612482565b925060408501359150606085013567ffffffffffffffff81111561258857600080fd5b8501601f8101871361259957600080fd5b6125a88782356020840161240c565b91505092959194509250565b600080604083850312156125c757600080fd5b6125d083612482565b91506124f36020840161249e565b600080604083850312156125f157600080fd5b6125fa83612482565b946020939093013593505050565b60006020828403121561261a57600080fd5b6119668261249e565b60006020828403121561263557600080fd5b5035919050565b60006020828403121561264e57600080fd5b813561196681612b36565b60006020828403121561266b57600080fd5b815161196681612b36565b60006020828403121561268857600080fd5b813567ffffffffffffffff81111561269f57600080fd5b8201601f810184136126b057600080fd5b611e9d8482356020840161240c565b6000806000604084860312156126d457600080fd5b83359250602084013567ffffffffffffffff808211156126f357600080fd5b818601915086601f83011261270757600080fd5b81358181111561271657600080fd5b8760208260051b850101111561272b57600080fd5b6020830194508093505050509250925092565b60008151808452612756816020860160208601612a48565b601f01601f19169290920160200192915050565b6000835161277c818460208801612a48565b835190830190612790818360208801612a48565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127dc9083018461273e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561281e57835183529284019291840191600101612802565b50909695505050505050565b602081526000611966602083018461273e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156129f9576129f9612ade565b500190565b600082612a0d57612a0d612af4565b500490565b6000816000190483118215151615612a2c57612a2c612ade565b500290565b600082821015612a4357612a43612ade565b500390565b60005b83811015612a63578181015183820152602001612a4b565b838111156118aa5750506000910152565b600181811c90821680612a8857607f821691505b60208210811415612aa957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ac357612ac3612ade565b5060010190565b600082612ad957612ad9612af4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ab657600080fdfea2646970667358221220c1575af1cb88c9d7c4e146034ae3c460eea3354b8b9c4449828c531ca7f0f86d64736f6c63430008070033
Deployed Bytecode Sourcemap
30986:5740:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28308:225;;;;;;;;;;-1:-1:-1;28308:225:0;;;;;:::i;:::-;;:::i;:::-;;;8066:14:1;;8059:22;8041:41;;8029:2;8014:18;28308:225:0;;;;;;;;22427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23061:221::-;;;;;;;;;;-1:-1:-1;23061:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6727:32:1;;;6709:51;;6697:2;6682:18;23061:221:0;6563:203:1;22643:412:0;;;;;;;;;;-1:-1:-1;22643:412:0;;;;;:::i;:::-;;:::i;:::-;;31442:26;;;;;;;;;;;;;;;;;;;8239:25:1;;;8227:2;8212:18;31442:26:0;8093:177:1;29469:110:0;;;;;;;;;;-1:-1:-1;29557:7:0;:14;29469:110;;34420:145;;;;;;;;;;-1:-1:-1;34420:145:0;;;;;:::i;:::-;;:::i;31615:25::-;;;;;;;;;;;;;;;;28539:500;;;;;;;;;;-1:-1:-1;28539:500:0;;;;;:::i;:::-;;:::i;36216:203::-;;;;;;;;;;-1:-1:-1;36216:203:0;;;;;:::i;:::-;;:::i;34759:145::-;;;;;;;;;;;;;:::i;36425:197::-;;;;;;;;;;-1:-1:-1;36425:197:0;;;;;:::i;:::-;;:::i;24104:185::-;;;;;;;;;;-1:-1:-1;24104:185:0;;;;;:::i;:::-;;:::i;36628:95::-;;;;;;;;;;-1:-1:-1;36628:95:0;;;;;:::i;:::-;;:::i;29585:194::-;;;;;;;;;;-1:-1:-1;29585:194:0;;;;;:::i;:::-;;:::i;34910:104::-;;;;;;;;;;-1:-1:-1;34910:104:0;;;;;:::i;:::-;;:::i;35375:137::-;;;;;;;;;;-1:-1:-1;35375:137:0;;;;;:::i;:::-;;:::i;31352:41::-;;;;;;;;;;;;;;;;22182:239;;;;;;;;;;-1:-1:-1;22182:239:0;;;;;:::i;:::-;;:::i;35128:108::-;;;;;;;;;;-1:-1:-1;35128:108:0;;;;;:::i;:::-;;:::i;21754:422::-;;;;;;;;;;-1:-1:-1;21754:422:0;;;;;:::i;:::-;;:::i;31292:53::-;;;;;;;;;;;;;;;;1363:94;;;;;;;;;;;;;:::i;31929:369::-;;;;;;;;;;-1:-1:-1;31929:369:0;;;;;:::i;:::-;;:::i;31154:35::-;;;;;;;;;;;;;;;;35020:102;;;;;;;;;;-1:-1:-1;35020:102:0;;;;;:::i;:::-;;:::i;31512:33::-;;;;;;;;;;-1:-1:-1;31512:33:0;;;;;;;;31397:38;;;;;;;;;;;;;;;;29045:418;;;;;;;;;;-1:-1:-1;29045:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;712:87::-;;;;;;;;;;-1:-1:-1;785:6:0;;-1:-1:-1;;;;;785:6:0;712:87;;35689:171;;;;;;;;;;-1:-1:-1;35689:171:0;;;;;:::i;:::-;;:::i;32304:986::-;;;;;;:::i;:::-;;:::i;22533:104::-;;;;;;;;;;;;;:::i;31081:30::-;;;;;;;;;;;;;;;;23288:295;;;;;;;;;;-1:-1:-1;23288:295:0;;;;;:::i;:::-;;:::i;31718:38::-;;;;;;;;;;-1:-1:-1;31718:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;19520:25:1;;;19576:2;19561:18;;19554:34;;;;19493:18;31718:38:0;19346:248:1;33296:753:0;;;;;;:::i;:::-;;:::i;36035:175::-;;;;;;;;;;-1:-1:-1;36035:175:0;;;;;:::i;:::-;;:::i;31193:35::-;;;;;;;;;;;;;;;;34573:180;;;;;;;;;;-1:-1:-1;34573:180:0;;;;;:::i;:::-;;:::i;34058:353::-;;;;;;;;;;-1:-1:-1;34058:353:0;;;;;:::i;:::-;;:::i;31235:53::-;;;;;;;;;;;;;;;;31115:32;;;;;;;;;;;;;;;;35242:127;;;;;;;;;;-1:-1:-1;35242:127:0;;;;;:::i;:::-;;:::i;23589:164::-;;;;;;;;;;-1:-1:-1;23589:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23710:25:0;;;23686:4;23710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23589:164;35518:165;;;;;;;;;;-1:-1:-1;35518:165:0;;;;;:::i;:::-;;:::i;1612:192::-;;;;;;;;;;-1:-1:-1;1612:192:0;;;;;:::i;:::-;;:::i;35866:163::-;;;;;;;;;;-1:-1:-1;35866:163:0;;;;;:::i;:::-;;:::i;31472:30::-;;;;;;;;;;;;;;;;31549;;;;;;;;;;-1:-1:-1;31549:30:0;;;;;;;;;;;28308:225;28411:4;-1:-1:-1;;;;;;28435:50:0;;-1:-1:-1;;;28435:50:0;;:90;;;28489:36;28513:11;28489:23;:36::i;:::-;28428:97;28308:225;-1:-1:-1;;28308:225:0:o;22427:100::-;22481:13;22514:5;22507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22427:100;:::o;23061:221::-;23137:7;23165:16;23173:7;23165;:16::i;:::-;23157:73;;;;-1:-1:-1;;;23157:73:0;;15207:2:1;23157:73:0;;;15189:21:1;15246:2;15226:18;;;15219:30;15285:34;15265:18;;;15258:62;-1:-1:-1;;;15336:18:1;;;15329:42;15388:19;;23157:73:0;;;;;;;;;-1:-1:-1;23250:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23250:24:0;;23061:221::o;22643:412::-;22724:13;22740:24;22756:7;22740:15;:24::i;:::-;22724:40;;22789:5;-1:-1:-1;;;;;22783:11:0;:2;-1:-1:-1;;;;;22783:11:0;;;22775:57;;;;-1:-1:-1;;;22775:57:0;;17784:2:1;22775:57:0;;;17766:21:1;17823:2;17803:18;;;17796:30;17862:34;17842:18;;;17835:62;-1:-1:-1;;;17913:18:1;;;17906:31;17954:19;;22775:57:0;17582:397:1;22775:57:0;175:10;-1:-1:-1;;;;;22867:21:0;;;;:62;;-1:-1:-1;22892:37:0;22909:5;175:10;23589:164;:::i;22892:37::-;22845:168;;;;-1:-1:-1;;;22845:168:0;;12895:2:1;22845:168:0;;;12877:21:1;12934:2;12914:18;;;12907:30;12973:34;12953:18;;;12946:62;13044:26;13024:18;;;13017:54;13088:19;;22845:168:0;12693:420:1;22845:168:0;23026:21;23035:2;23039:7;23026:8;:21::i;:::-;22713:342;22643:412;;:::o;34420:145::-;34515:42;34536:5;34543:3;34548:8;34515:20;:42::i;28539:500::-;28628:15;28672:24;28690:5;28672:17;:24::i;:::-;28664:5;:32;28656:67;;;;-1:-1:-1;;;28656:67:0;;;;;;;:::i;:::-;28734:10;28760:6;28755:226;28772:7;:14;28768:18;;28755:226;;;28821:7;28829:1;28821:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28812:19:0;;;28821:10;;28812:19;28808:162;;;28865:5;28856;:14;28852:102;;;28901:1;-1:-1:-1;28894:8:0;;-1:-1:-1;28894:8:0;28852:102;28947:7;;;:::i;:::-;;;28852:102;28788:3;;;:::i;:::-;;;28755:226;;;-1:-1:-1;28991:40:0;;-1:-1:-1;;;28991:40:0;;;;;;;:::i;36216:203::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36327:8:::1;36315;;:20;;36307:48;;;;-1:-1:-1::0;;;36307:48:0::1;;;;;;;:::i;:::-;36366:34;:45:::0;36216:203::o;34759:145::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;34859:37:::1;::::0;34827:21:::1;::::0;34867:10:::1;::::0;34859:37;::::1;;;::::0;34827:21;;34809:15:::1;34859:37:::0;34809:15;34859:37;34827:21;34867:10;34859:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34798:106;34759:145::o:0;36425:197::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36533:8:::1;36521;;:20;;36513:48;;;;-1:-1:-1::0;;;36513:48:0::1;;;;;;;:::i;:::-;36572:31;:42:::0;36425:197::o;24104:185::-;24242:39;24259:4;24265:2;24269:7;24242:39;;;;;;;;;;;;:16;:39::i;36628:95::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36698:10:::1;:20:::0;36628:95::o;29585:194::-;29660:7;29696:24;29557:7;:14;;29469:110;29696:24;29688:5;:32;29680:68;;;;-1:-1:-1;;;29680:68:0;;17432:2:1;29680:68:0;;;17414:21:1;17471:2;17451:18;;;17444:30;17510:25;17490:18;;;17483:53;17553:18;;29680:68:0;17230:347:1;29680:68:0;-1:-1:-1;29766:5:0;29585:194::o;34910:104::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;34986:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;35375:137::-:0;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35448:13:::1;::::0;::::1;;:23;;::::0;::::1;;;;35440:32;;;::::0;::::1;;35482:13;:22:::0;;-1:-1:-1;;35482:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35375:137::o;22182:239::-;22254:7;22274:13;22290:7;22298;22290:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;22290:16:0;;-1:-1:-1;22325:19:0;22317:73;;;;-1:-1:-1;;;22317:73:0;;14090:2:1;22317:73:0;;;14072:21:1;14129:2;14109:18;;;14102:30;14168:34;14148:18;;;14141:62;-1:-1:-1;;;14219:18:1;;;14212:39;14268:19;;22317:73:0;13888:405:1;35128:108:0;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35204:13:::1;:24:::0;35128:108::o;21754:422::-;21826:7;-1:-1:-1;;;;;21854:19:0;;21846:74;;;;-1:-1:-1;;;21846:74:0;;13679:2:1;21846:74:0;;;13661:21:1;13718:2;13698:18;;;13691:30;13757:34;13737:18;;;13730:62;-1:-1:-1;;;13808:18:1;;;13801:40;13858:19;;21846:74:0;13477:406:1;21846:74:0;21970:7;:14;21931:10;;;21995:127;22016:6;22012:1;:10;21995:127;;;22057:7;22065:1;22057:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;22048:19:0;;;22057:10;;22048:19;22044:67;;;22088:7;;;:::i;:::-;;;22044:67;22024:3;;;:::i;:::-;;;21995:127;;;-1:-1:-1;22163:5:0;;21754:422;-1:-1:-1;;;21754:422:0:o;1363:94::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;1428:21:::1;1446:1;1428:9;:21::i;:::-;1363:94::o:0;31929:369::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;4823:1:::1;5419:7;;:19;;5411:63;;;;-1:-1:-1::0;;;5411:63:0::1;;;;;;;:::i;:::-;4823:1;5552:7;:18:::0;32022:19:::2;32044:13;29557:7:::0;:14;;29469:110;32044:13:::2;32022:35;;32118:12;;32108:6;32090:15;;:24;;;;:::i;:::-;:40;;32068:100;;;::::0;-1:-1:-1;;;32068:100:0;;11045:2:1;32068:100:0::2;::::0;::::2;11027:21:1::0;11084:1;11064:18;;;11057:29;-1:-1:-1;;;11102:18:1;;;11095:39;11151:18;;32068:100:0::2;10843:332:1::0;32068:100:0::2;32178:9;32173:118;32197:6;32193:1;:10;32173:118;;;32225:31;32235:3:::0;32240:15:::2;32254:1:::0;32240:11;:15:::2;:::i;:::-;32225:9;:31::i;:::-;32262:15;:17:::0;;;:15:::2;:17;::::0;::::2;:::i;:::-;;;;;;32205:3;;;;;:::i;:::-;;;;32173:118;;;-1:-1:-1::0;;4779:1:0::1;5731:7;:22:::0;-1:-1:-1;;31929:369:0:o;35020:102::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35093:10:::1;:21:::0;35020:102::o;29045:418::-;29104:16;29145:24;29163:5;29145:17;:24::i;:::-;29141:1;:28;29133:63;;;;-1:-1:-1;;;29133:63:0;;;;;;;:::i;:::-;29207:18;29228:16;29238:5;29228:9;:16::i;:::-;29207:37;;29255:25;29297:10;29283:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29283:25:0;;29255:53;;29324:9;29319:111;29343:10;29339:1;:14;29319:111;;;29389:29;29409:5;29416:1;29389:19;:29::i;:::-;29375:8;29384:1;29375:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;29355:3;;;;:::i;:::-;;;;29319:111;;;-1:-1:-1;29447:8:0;29045:418;-1:-1:-1;;;29045:418:0:o;35689:171::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35786:8:::1;35774;;:20;;35766:48;;;;-1:-1:-1::0;;;35766:48:0::1;;;;;;;:::i;:::-;35825:16;:27:::0;35689:171::o;32304:986::-;4823:1;5419:7;;:19;;5411:63;;;;-1:-1:-1;;;5411:63:0;;;;;;;:::i;:::-;4823:1;5552:7;:18;32435:28:::1;::::0;-1:-1:-1;;32452:10:0::1;5584:2:1::0;5580:15;5576:53;32435:28:0::1;::::0;::::1;5564:66:1::0;32410:12:0::1;::::0;5646::1;;32435:28:0::1;;;;;;;;;;;;32425:39;;;;;;32410:54;;32469:19;32491:13;29557:7:::0;:14;;29469:110;32491:13:::1;32522;::::0;32469:35;;-1:-1:-1;32522:13:0::1;;32509:62;;;::::0;-1:-1:-1;;;32509:62:0;;12142:2:1;32509:62:0::1;::::0;::::1;12124:21:1::0;12181:2;12161:18;;;12154:30;-1:-1:-1;;;12200:18:1;;;12193:52;12262:18;;32509:62:0::1;11940:346:1::0;32509:62:0::1;32619:8;;32609:6;32595:11;;:20;;;;:::i;:::-;:32;;32582:76;;;::::0;-1:-1:-1;;;32582:76:0;;14500:2:1;32582:76:0::1;::::0;::::1;14482:21:1::0;14539:2;14519:18;;;14512:30;-1:-1:-1;;;14558:18:1;;;14551:47;14615:18;;32582:76:0::1;14298:341:1::0;32582:76:0::1;32676:49;32695:11;;32676:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;32708:10:0::1;::::0;;-1:-1:-1;32720:4:0;;-1:-1:-1;32676:18:0::1;:49::i;:::-;32663:109;;;::::0;-1:-1:-1;;;32663:109:0;;12493:2:1;32663:109:0::1;::::0;::::1;12475:21:1::0;12532:2;12512:18;;;12505:30;12571:34;12551:18;;;12544:62;-1:-1:-1;;;12622:18:1;;;12615:31;12663:19;;32663:109:0::1;12291:397:1::0;32663:109:0::1;32832:16;::::0;32796:10:::1;32790:17;::::0;;;:5:::1;:17;::::0;;;;:29;:38:::1;::::0;32822:6;;32790:38:::1;:::i;:::-;:58;;32777:117;;;;-1:-1:-1::0;;;32777:117:0::1;;;;;;;:::i;:::-;32922:34;;32912:6;:44;;32899:100;;;::::0;-1:-1:-1;;;32899:100:0;;13320:2:1;32899:100:0::1;::::0;::::1;13302:21:1::0;13359:2;13339:18;;;13332:30;13398:32;13378:18;;;13371:60;13448:18;;32899:100:0::1;13118:354:1::0;32899:100:0::1;33046:6;33030:13;;:22;;;;:::i;:::-;33017:9;:35;;33004:78;;;::::0;-1:-1:-1;;;33004:78:0;;16735:2:1;33004:78:0::1;::::0;::::1;16717:21:1::0;16774:2;16754:18;;;16747:30;-1:-1:-1;;;16793:18:1;;;16786:47;16850:18;;33004:78:0::1;16533:341:1::0;33004:78:0::1;33092:9;33087:121;33111:6;33107:1;:10;33087:121;;;33139:38;33149:10;33161:15;33175:1:::0;33161:11;:15:::1;:::i;33139:38::-;33183:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;33119:3;;;;;:::i;:::-;;;;33087:121;;;-1:-1:-1::0;33250:10:0::1;33244:17;::::0;;;:5:::1;:17;::::0;;;;:29;:38:::1;::::0;33276:6;;33244:38:::1;:::i;:::-;33218:10;33212:17;::::0;;;:5:::1;:17;::::0;;;;:70;-1:-1:-1;;4779:1:0;5731:7;:22;-1:-1:-1;;;32304:986:0:o;22533:104::-;22589:13;22622:7;22615:14;;;;;:::i;23288:295::-;-1:-1:-1;;;;;23391:24:0;;175:10;23391:24;;23383:62;;;;-1:-1:-1;;;23383:62:0;;10691:2:1;23383:62:0;;;10673:21:1;10730:2;10710:18;;;10703:30;10769:27;10749:18;;;10742:55;10814:18;;23383:62:0;10489:349:1;23383:62:0;175:10;23458:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23458:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23458:53:0;;;;;;;;;;23527:48;;8041:41:1;;;23458:42:0;;175:10;23527:48;;8014:18:1;23527:48:0;;;;;;;23288:295;;:::o;33296:753::-;4823:1;5419:7;;:19;;5411:63;;;;-1:-1:-1;;;5411:63:0;;;;;;;:::i;:::-;4823:1;5552:7;:18;33367:19:::1;33389:13;29557:7:::0;:14;;29469:110;33389:13:::1;33420:10;::::0;33367:35;;-1:-1:-1;33420:10:0::1;::::0;::::1;;;33407:55;;;::::0;-1:-1:-1;;;33407:55:0;;11382:2:1;33407:55:0::1;::::0;::::1;11364:21:1::0;11421:2;11401:18;;;11394:30;-1:-1:-1;;;11440:18:1;;;11433:48;11498:18;;33407:55:0::1;11180:342:1::0;33407:55:0::1;33510:8;;33500:6;33486:11;;:20;;;;:::i;:::-;:32;;33473:76;;;::::0;-1:-1:-1;;;33473:76:0;;14500:2:1;33473:76:0::1;::::0;::::1;14482:21:1::0;14539:2;14519:18;;;14512:30;-1:-1:-1;;;14558:18:1;;;14551:47;14615:18;;33473:76:0::1;14298:341:1::0;33473:76:0::1;33606:13;::::0;33573:10:::1;33567:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:35:::1;::::0;33596:6;;33567:35:::1;:::i;:::-;:52;;33554:111;;;;-1:-1:-1::0;;;33554:111:0::1;;;;;;;:::i;:::-;33693:31;;33683:6;:41;;33670:97;;;::::0;-1:-1:-1;;;33670:97:0;;13320:2:1;33670:97:0::1;::::0;::::1;13302:21:1::0;13359:2;13339:18;;;13332:30;13398:32;13378:18;;;13371:60;13448:18;;33670:97:0::1;13118:354:1::0;33670:97:0::1;33811:6;33798:10;;:19;;;;:::i;:::-;33785:9;:32;;33772:75;;;::::0;-1:-1:-1;;;33772:75:0;;16735:2:1;33772:75:0::1;::::0;::::1;16717:21:1::0;16774:2;16754:18;;;16747:30;-1:-1:-1;;;16793:18:1;;;16786:47;16850:18;;33772:75:0::1;16533:341:1::0;33772:75:0::1;33857:9;33852:121;33876:6;33872:1;:10;33852:121;;;33904:38;33914:10;33926:15;33940:1:::0;33926:11;:15:::1;:::i;33904:38::-;33948:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;33884:3;;;;;:::i;:::-;;;;33852:121;;;-1:-1:-1::0;34012:10:0::1;34006:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:35:::1;::::0;34035:6;;34006:35:::1;:::i;:::-;33983:10;33977:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;::::0;;::::1;:64:::0;;;;5731:7;:22;-1:-1:-1;;33296:753:0:o;36035:175::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36132:15:::1;;36119:9;:28;;36111:56;;;;-1:-1:-1::0;;;36111:56:0::1;;;;;;;:::i;:::-;36178:12;:24:::0;36035:175::o;34573:180::-;34692:53;34717:5;34724:3;34729:8;34739:5;34692:24;:53::i;:::-;34573:180;;;;:::o;34058:353::-;34134:13;34168:17;34176:8;34168:7;:17::i;:::-;34160:63;;;;-1:-1:-1;;;34160:63:0;;8701:2:1;34160:63:0;;;8683:21:1;8740:2;8720:18;;;8713:30;8779:34;8759:18;;;8752:62;-1:-1:-1;;;8830:18:1;;;8823:31;8871:19;;34160:63:0;8499:397:1;34160:63:0;34234:28;34265:10;:8;:10::i;:::-;34234:41;;34324:1;34299:14;34293:28;:32;:110;;;;;;;;;;;;;;;;;34352:14;34368:19;:8;:17;:19::i;:::-;34335:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34293:110;34286:117;34058:353;-1:-1:-1;;;34058:353:0:o;35242:127::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35316:10:::1;::::0;::::1;;::::0;;::::1;;:20;;::::0;::::1;;;;35308:29;;;::::0;::::1;;35342:10;:19:::0;;;::::1;;;;-1:-1:-1::0;;35342:19:0;;::::1;::::0;;;::::1;::::0;;35242:127::o;35518:165::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35612:8:::1;35600;;:20;;35592:48;;;;-1:-1:-1::0;;;35592:48:0::1;;;;;;;:::i;:::-;35651:13;:24:::0;35518:165::o;1612:192::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1701:22:0;::::1;1693:73;;;::::0;-1:-1:-1;;;1693:73:0;;9522:2:1;1693:73:0::1;::::0;::::1;9504:21:1::0;9561:2;9541:18;;;9534:30;9600:34;9580:18;;;9573:62;-1:-1:-1;;;9651:18:1;;;9644:36;9697:19;;1693:73:0::1;9320:402:1::0;1693:73:0::1;1777:19;1787:8;1777:9;:19::i;:::-;1612:192:::0;:::o;35866:163::-;785:6;;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35959:11:::1;;35946:9;:24;;35938:52;;;;-1:-1:-1::0;;;35938:52:0::1;;;;;;;:::i;:::-;36001:8;:20:::0;35866:163::o;21455:293::-;21557:4;-1:-1:-1;;;;;;21590:40:0;;-1:-1:-1;;;21590:40:0;;:101;;-1:-1:-1;;;;;;;21643:48:0;;-1:-1:-1;;;21643:48:0;21590:101;:150;;;-1:-1:-1;;;;;;;;;;20943:40:0;;;21704:36;20834:157;24950:155;25049:7;:14;25015:4;;25039:24;;:58;;;;;25095:1;-1:-1:-1;;;;;25067:30:0;:7;25075;25067:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;25067:16:0;:30;;25032:65;24950:155;-1:-1:-1;;24950:155:0:o;27123:175::-;27198:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;27198:29:0;-1:-1:-1;;;;;27198:29:0;;;;;;;;:24;;27252;27198;27252:15;:24::i;:::-;-1:-1:-1;;;;;27243:47:0;;;;;;;;;;;27123:175;;:::o;23759:339::-;23954:41;175:10;23987:7;23954:18;:41::i;:::-;23946:103;;;;-1:-1:-1;;;23946:103:0;;;;;;;:::i;:::-;24062:28;24072:4;24078:2;24082:7;24062:9;:28::i;1812:173::-;1887:6;;;-1:-1:-1;;;;;1904:17:0;;;-1:-1:-1;;;;;;1904:17:0;;;;;;;1937:40;;1887:6;;;1904:17;1887:6;;1937:40;;1868:16;;1937:40;1857:128;1812:173;:::o;25466:110::-;25542:26;25552:2;25556:7;25542:26;;;;;;;;;;;;:9;:26::i;30147:832::-;30272:4;30312;30272;30329:525;30353:5;:12;30349:1;:16;30329:525;;;30387:20;30410:5;30416:1;30410:8;;;;;;;;:::i;:::-;;;;;;;30387:31;;30455:12;30439;:28;30435:408;;30592:44;;;;;;5826:19:1;;;5861:12;;;5854:28;;;5898:12;;30592:44:0;;;;;;;;;;;;30582:55;;;;;;30567:70;;30435:408;;;30782:44;;;;;;5826:19:1;;;5861:12;;;5854:28;;;5898:12;;30782:44:0;;;;;;;;;;;;30772:55;;;;;;30757:70;;30435:408;-1:-1:-1;30367:3:0;;;;:::i;:::-;;;;30329:525;;;-1:-1:-1;30951:20:0;;;;30147:832;-1:-1:-1;;;30147:832:0:o;24295:328::-;24470:41;175:10;24503:7;24470:18;:41::i;:::-;24462:103;;;;-1:-1:-1;;;24462:103:0;;;;;;;:::i;:::-;24576:39;24590:4;24596:2;24600:7;24609:5;24576:13;:39::i;31824:99::-;31875:13;31908:7;31901:14;;;;;:::i;2180:723::-;2236:13;2457:10;2453:53;;-1:-1:-1;;2484:10:0;;;;;;;;;;;;-1:-1:-1;;;2484:10:0;;;;;2180:723::o;2453:53::-;2531:5;2516:12;2572:78;2579:9;;2572:78;;2605:8;;;;:::i;:::-;;-1:-1:-1;2628:10:0;;-1:-1:-1;2636:2:0;2628:10;;:::i;:::-;;;2572:78;;;2660:19;2692:6;2682:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2682:17:0;;2660:39;;2710:154;2717:10;;2710:154;;2744:11;2754:1;2744:11;;:::i;:::-;;-1:-1:-1;2813:10:0;2821:2;2813:5;:10;:::i;:::-;2800:24;;:2;:24;:::i;:::-;2787:39;;2770:6;2777;2770:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2770:56:0;;;;;;;;-1:-1:-1;2841:11:0;2850:2;2841:11;;:::i;:::-;;;2710:154;;;2888:6;2180:723;-1:-1:-1;;;;2180:723:0:o;25111:349::-;25204:4;25229:16;25237:7;25229;:16::i;:::-;25221:73;;;;-1:-1:-1;;;25221:73:0;;11729:2:1;25221:73:0;;;11711:21:1;11768:2;11748:18;;;11741:30;11807:34;11787:18;;;11780:62;-1:-1:-1;;;11858:18:1;;;11851:42;11910:19;;25221:73:0;11527:408:1;25221:73:0;25305:13;25321:24;25337:7;25321:15;:24::i;:::-;25305:40;;25375:5;-1:-1:-1;;;;;25364:16:0;:7;-1:-1:-1;;;;;25364:16:0;;:51;;;;25408:7;-1:-1:-1;;;;;25384:31:0;:20;25396:7;25384:11;:20::i;:::-;-1:-1:-1;;;;;25384:31:0;;25364:51;:87;;;-1:-1:-1;;;;;;23710:25:0;;;23686:4;23710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;25419:32;23589:164;26600:517;26760:4;-1:-1:-1;;;;;26732:32:0;:24;26748:7;26732:15;:24::i;:::-;-1:-1:-1;;;;;26732:32:0;;26724:86;;;;-1:-1:-1;;;26724:86:0;;16325:2:1;26724:86:0;;;16307:21:1;16364:2;16344:18;;;16337:30;16403:34;16383:18;;;16376:62;-1:-1:-1;;;16454:18:1;;;16447:39;16503:19;;26724:86:0;16123:405:1;26724:86:0;-1:-1:-1;;;;;26829:16:0;;26821:65;;;;-1:-1:-1;;;26821:65:0;;10286:2:1;26821:65:0;;;10268:21:1;10325:2;10305:18;;;10298:30;10364:34;10344:18;;;10337:62;-1:-1:-1;;;10415:18:1;;;10408:34;10459:19;;26821:65:0;10084:400:1;26821:65:0;27003:29;27020:1;27024:7;27003:8;:29::i;:::-;27062:2;27043:7;27051;27043:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;27043:21:0;-1:-1:-1;;;;;27043:21:0;;;;;;27082:27;;27101:7;;27082:27;;;;;;;;;;27043:16;27082:27;26600:517;;;:::o;25582:321::-;25712:18;25718:2;25722:7;25712:5;:18::i;:::-;25763:54;25794:1;25798:2;25802:7;25811:5;25763:22;:54::i;:::-;25741:154;;;;-1:-1:-1;;;25741:154:0;;;;;;;:::i;24629:315::-;24786:28;24796:4;24802:2;24806:7;24786:9;:28::i;:::-;24833:48;24856:4;24862:2;24866:7;24875:5;24833:22;:48::i;:::-;24825:111;;;;-1:-1:-1;;;24825:111:0;;;;;;;:::i;25909:346::-;-1:-1:-1;;;;;25989:16:0;;25981:61;;;;-1:-1:-1;;;25981:61:0;;14846:2:1;25981:61:0;;;14828:21:1;;;14865:18;;;14858:30;14924:34;14904:18;;;14897:62;14976:18;;25981:61:0;14644:356:1;25981:61:0;26062:16;26070:7;26062;:16::i;:::-;26061:17;26053:58;;;;-1:-1:-1;;;26053:58:0;;9929:2:1;26053:58:0;;;9911:21:1;9968:2;9948:18;;;9941:30;10007;9987:18;;;9980:58;10055:18;;26053:58:0;9727:352:1;26053:58:0;26180:7;:16;;;;;;;-1:-1:-1;26180:16:0;;;;;;;-1:-1:-1;;;;;;26180:16:0;-1:-1:-1;;;;;26180:16:0;;;;;;;;26214:33;;26239:7;;-1:-1:-1;26214:33:0;;-1:-1:-1;;26214:33:0;25909:346;;:::o;27304:799::-;27459:4;-1:-1:-1;;;;;27480:13:0;;13719:20;13767:8;27476:620;;27516:72;;-1:-1:-1;;;27516:72:0;;-1:-1:-1;;;;;27516:36:0;;;;;:72;;175:10;;27567:4;;27573:7;;27582:5;;27516:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27516:72:0;;;;;;;;-1:-1:-1;;27516:72:0;;;;;;;;;;;;:::i;:::-;;;27512:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27758:13:0;;27754:272;;27801:60;;-1:-1:-1;;;27801:60:0;;;;;;;:::i;27754:272::-;27976:6;27970:13;27961:6;27957:2;27953:15;27946:38;27512:529;-1:-1:-1;;;;;;27639:51:0;-1:-1:-1;;;27639:51:0;;-1:-1:-1;27632:58:0;;27476:620;-1:-1:-1;28080:4:0;27304:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;-1:-1:-1;3307:23:1;;3156:180;-1:-1:-1;3156:180:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:450::-;3914:6;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4023:9;4010:23;4056:18;4048:6;4045:30;4042:50;;;4088:1;4085;4078:12;4042:50;4111:22;;4164:4;4156:13;;4152:27;-1:-1:-1;4142:55:1;;4193:1;4190;4183:12;4142:55;4216:73;4281:7;4276:2;4263:16;4258:2;4254;4250:11;4216:73;:::i;4485:683::-;4580:6;4588;4596;4649:2;4637:9;4628:7;4624:23;4620:32;4617:52;;;4665:1;4662;4655:12;4617:52;4701:9;4688:23;4678:33;;4762:2;4751:9;4747:18;4734:32;4785:18;4826:2;4818:6;4815:14;4812:34;;;4842:1;4839;4832:12;4812:34;4880:6;4869:9;4865:22;4855:32;;4925:7;4918:4;4914:2;4910:13;4906:27;4896:55;;4947:1;4944;4937:12;4896:55;4987:2;4974:16;5013:2;5005:6;5002:14;4999:34;;;5029:1;5026;5019:12;4999:34;5082:7;5077:2;5067:6;5064:1;5060:14;5056:2;5052:23;5048:32;5045:45;5042:65;;;5103:1;5100;5093:12;5042:65;5134:2;5130;5126:11;5116:21;;5156:6;5146:16;;;;;4485:683;;;;;:::o;5173:257::-;5214:3;5252:5;5246:12;5279:6;5274:3;5267:19;5295:63;5351:6;5344:4;5339:3;5335:14;5328:4;5321:5;5317:16;5295:63;:::i;:::-;5412:2;5391:15;-1:-1:-1;;5387:29:1;5378:39;;;;5419:4;5374:50;;5173:257;-1:-1:-1;;5173:257:1:o;5921:637::-;6201:3;6239:6;6233:13;6255:53;6301:6;6296:3;6289:4;6281:6;6277:17;6255:53;:::i;:::-;6371:13;;6330:16;;;;6393:57;6371:13;6330:16;6427:4;6415:17;;6393:57;:::i;:::-;-1:-1:-1;;;6472:20:1;;6501:22;;;6550:1;6539:13;;5921:637;-1:-1:-1;;;;5921:637:1:o;6771:488::-;-1:-1:-1;;;;;7040:15:1;;;7022:34;;7092:15;;7087:2;7072:18;;7065:43;7139:2;7124:18;;7117:34;;;7187:3;7182:2;7167:18;;7160:31;;;6965:4;;7208:45;;7233:19;;7225:6;7208:45;:::i;:::-;7200:53;6771:488;-1:-1:-1;;;;;;6771:488:1:o;7264:632::-;7435:2;7487:21;;;7557:13;;7460:18;;;7579:22;;;7406:4;;7435:2;7658:15;;;;7632:2;7617:18;;;7406:4;7701:169;7715:6;7712:1;7709:13;7701:169;;;7776:13;;7764:26;;7845:15;;;;7810:12;;;;7737:1;7730:9;7701:169;;;-1:-1:-1;7887:3:1;;7264:632;-1:-1:-1;;;;;;7264:632:1:o;8275:219::-;8424:2;8413:9;8406:21;8387:4;8444:44;8484:2;8473:9;8469:18;8461:6;8444:44;:::i;8901:414::-;9103:2;9085:21;;;9142:2;9122:18;;;9115:30;9181:34;9176:2;9161:18;;9154:62;-1:-1:-1;;;9247:2:1;9232:18;;9225:48;9305:3;9290:19;;8901:414::o;15418:339::-;15620:2;15602:21;;;15659:2;15639:18;;;15632:30;-1:-1:-1;;;15693:2:1;15678:18;;15671:45;15748:2;15733:18;;15418:339::o;15762:356::-;15964:2;15946:21;;;15983:18;;;15976:30;16042:34;16037:2;16022:18;;16015:62;16109:2;16094:18;;15762:356::o;16879:346::-;17081:2;17063:21;;;17120:2;17100:18;;;17093:30;-1:-1:-1;;;17154:2:1;17139:18;;17132:52;17216:2;17201:18;;16879:346::o;17984:413::-;18186:2;18168:21;;;18225:2;18205:18;;;18198:30;18264:34;18259:2;18244:18;;18237:62;-1:-1:-1;;;18330:2:1;18315:18;;18308:47;18387:3;18372:19;;17984:413::o;18402:397::-;18604:2;18586:21;;;18643:2;18623:18;;;18616:30;18682:34;18677:2;18662:18;;18655:62;-1:-1:-1;;;18748:2:1;18733:18;;18726:31;18789:3;18774:19;;18402:397::o;18804:355::-;19006:2;18988:21;;;19045:2;19025:18;;;19018:30;19084:33;19079:2;19064:18;;19057:61;19150:2;19135:18;;18804:355::o;19599:128::-;19639:3;19670:1;19666:6;19663:1;19660:13;19657:39;;;19676:18;;:::i;:::-;-1:-1:-1;19712:9:1;;19599:128::o;19732:120::-;19772:1;19798;19788:35;;19803:18;;:::i;:::-;-1:-1:-1;19837:9:1;;19732:120::o;19857:168::-;19897:7;19963:1;19959;19955:6;19951:14;19948:1;19945:21;19940:1;19933:9;19926:17;19922:45;19919:71;;;19970:18;;:::i;:::-;-1:-1:-1;20010:9:1;;19857:168::o;20030:125::-;20070:4;20098:1;20095;20092:8;20089:34;;;20103:18;;:::i;:::-;-1:-1:-1;20140:9:1;;20030:125::o;20160:258::-;20232:1;20242:113;20256:6;20253:1;20250:13;20242:113;;;20332:11;;;20326:18;20313:11;;;20306:39;20278:2;20271:10;20242:113;;;20373:6;20370:1;20367:13;20364:48;;;-1:-1:-1;;20408:1:1;20390:16;;20383:27;20160:258::o;20423:380::-;20502:1;20498:12;;;;20545;;;20566:61;;20620:4;20612:6;20608:17;20598:27;;20566:61;20673:2;20665:6;20662:14;20642:18;20639:38;20636:161;;;20719:10;20714:3;20710:20;20707:1;20700:31;20754:4;20751:1;20744:15;20782:4;20779:1;20772:15;20636:161;;20423:380;;;:::o;20808:135::-;20847:3;-1:-1:-1;;20868:17:1;;20865:43;;;20888:18;;:::i;:::-;-1:-1:-1;20935:1:1;20924:13;;20808:135::o;20948:112::-;20980:1;21006;20996:35;;21011:18;;:::i;:::-;-1:-1:-1;21045:9:1;;20948:112::o;21065:127::-;21126:10;21121:3;21117:20;21114:1;21107:31;21157:4;21154:1;21147:15;21181:4;21178:1;21171:15;21197:127;21258:10;21253:3;21249:20;21246:1;21239:31;21289:4;21286:1;21279:15;21313:4;21310:1;21303:15;21329:127;21390:10;21385:3;21381:20;21378:1;21371:31;21421:4;21418:1;21411:15;21445:4;21442:1;21435:15;21461:127;21522:10;21517:3;21513:20;21510:1;21503:31;21553:4;21550:1;21543:15;21577:4;21574:1;21567:15;21593:131;-1:-1:-1;;;;;;21667:32:1;;21657:43;;21647:71;;21714:1;21711;21704:12
Swarm Source
ipfs://c1575af1cb88c9d7c4e146034ae3c460eea3354b8b9c4449828c531ca7f0f86d
Loading...
Loading
Loading...
Loading
OVERVIEW
Official partners of The UN Refugee Agency (UNHCR). Unique Arab characters exploring the Arabverse and supporting underprivileged communities around the world.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,626.81 | 5.76 | $15,130.45 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.