Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CryptoNijigenGirlsUpgradeable
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; contract CryptoNijigenGirlsUpgradeable is Initializable, ERC721Upgradeable, OwnableUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; uint256[] private _tokenIds; uint256 _baseMintPrice; uint256 _maxTokenId; string private _uri; // Optional mapping for token price mapping(uint256 => uint256) private _tokenPrice; function initialize() initializer public { __ERC721_init("Crypto Nijigen Girls", "CNG"); __Ownable_init(); setURI("https://ipfs.io/ipns/k51qzi5uqu5dgqtirtxnm0vy6zvtu3enn4vmisee4dd67g0ue9plk8mhm2mwq3/CNG"); _baseMintPrice = 0.05 ether; } event NftBought(address _seller, address _buyer, uint256 _price, uint256 _tokenId); event NftBatchBought(address _seller, address _buyer, uint256 _price, uint256[] _tokenIds); event PaymentReleased(address to, uint256 amount); function tokenURI(uint256 tokenId) public view override(ERC721Upgradeable) returns (string memory) { return string(abi.encodePacked(_uri,tokenId.toString(),".json")) ; } function sellMaxTokenId() public view virtual returns (uint256) { return _maxTokenId; } function totalSupply() public view virtual returns (uint256) { return _tokenIds.length; } function setURI(string memory newuri) public virtual onlyOwner{ _uri = newuri; } function uri(uint256 id) public view virtual returns (string memory) { return string(abi.encodePacked(_uri,id.toString(),".json")) ; } function safeMintCNG(uint256 _tokenId) external payable{ uint256 price = _tokenPrice[_tokenId]; require(price > 0, 'CNGE002'); require(msg.value == price, 'CNGE002'); _safeMint(msg.sender,_tokenId); _tokenIds.push(_tokenId); emit NftBought(address(0), msg.sender, msg.value, _tokenId); } function safeBatchMintCNG(uint256[] memory ids) external payable{ uint256 sumPrice = 0; for(uint256 i = 0 ; i<ids.length ; i++){ uint256 price = _tokenPrice[ids[i]]; require(price > 0, 'CNGE002'); sumPrice = sumPrice + price; } require(msg.value == sumPrice, 'CNGE002'); for(uint256 j = 0 ; j<ids.length ; j++){ _safeMint(msg.sender,ids[j]); _tokenIds.push(ids[j]); } emit NftBatchBought(address(0), msg.sender, msg.value, ids); } function sellCNG(uint256 _tokenId, uint256 _price) external { require(msg.sender == ownerOf(_tokenId), 'CNGE001'); require(_price > _baseMintPrice, 'CNGE002'); _tokenPrice[_tokenId] = _price; } function banCNG(uint256 _tokenId) external { require(msg.sender == ownerOf(_tokenId), 'CNGE001'); _tokenPrice[_tokenId] = 0; } function buyCNG(uint256 _tokenId) external payable { uint256 price = _tokenPrice[_tokenId]; require(price > 0, 'CNGE002'); require(msg.value == price, 'CNGE002'); address seller = ownerOf(_tokenId); _transfer(seller, msg.sender, _tokenId); _tokenPrice[_tokenId] = 0; // not for sale anymore payable(seller).transfer(msg.value); // send the ETH to the seller emit NftBought(seller, msg.sender, msg.value, _tokenId); } function release(address payable account) public virtual onlyOwner{ uint256 payment = address(this).balance; require(payment != 0, "CNGE005"); AddressUpgradeable.sendValue(account, payment); emit PaymentReleased(account, payment); } function setTokenPrice(uint256[] memory ids, uint256[] memory price) public virtual onlyOwner{ require(ids[0] > _maxTokenId, "CNGE007"); require(ids.length == price.length, "CNGE006"); uint256 id = 0; for(uint256 i=0;i<ids.length;i++){ _tokenPrice[ids[i]] = price[i]; if(ids[i] > id){ id = ids[i]; } } _maxTokenId = id; } function setTokenPriceBySection(uint256 minId, uint256 maxId, uint256 price) public virtual onlyOwner{ require(minId > _maxTokenId, "CNGE007"); for(uint256 i=minId;i<=maxId;i++){ _tokenPrice[i] = price; } _maxTokenId = maxId; } function tokenIds() public view virtual returns (uint256[] memory){ return _tokenIds; } function ownerTokenIds(address account) public view virtual returns (string memory){ require(msg.sender == account, 'CNGE001'); string memory senderTokenIds = ""; for(uint256 i=0;i < _tokenIds.length;i++){ address ownerAddress = ownerOf(_tokenIds[i]); if(ownerAddress == account){ senderTokenIds = string(abi.encodePacked(senderTokenIds,_tokenIds[i].toString(),"/")) ; } } return senderTokenIds; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} uint256[44] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _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); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 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); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_seller","type":"address"},{"indexed":false,"internalType":"address","name":"_buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"NftBatchBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_seller","type":"address"},{"indexed":false,"internalType":"address","name":"_buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"NftBought","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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"banCNG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"buyCNG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"ownerTokenIds","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"safeBatchMintCNG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"safeMintCNG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"sellCNG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellMaxTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"price","type":"uint256[]"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minId","type":"uint256"},{"internalType":"uint256","name":"maxId","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setTokenPriceBySection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","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":[],"name":"tokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50614e70806100206000396000f3fe6080604052600436106101d85760003560e01c80636352211e116101025780638da5cb5b11610095578063b88d4fde11610064578063b88d4fde14610669578063c87b56dd14610692578063e985e9c5146106cf578063f2fde38b1461070c576101d8565b80638da5cb5b146105c157806395d89b41146105ec578063a22cb46514610617578063b8411c0f14610640576101d8565b80638129fc1c116100d15780638129fc1c146105285780638aa902131461053f5780638bb8fa921461057c5780638d15dcae146105a5576101d8565b80636352211e1461046c57806370a08231146104a9578063714cff56146104e6578063715018a614610511576101d8565b806318160ddd1161017a5780633520aceb116101495780633520aceb146103e057806342842e0e146103fc5780634664b30114610425578063499e698214610450576101d8565b806318160ddd1461033a578063191655871461036557806323b872dd1461038e5780632d6e8569146103b7576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab5780630e89341c146102d457806314af3d7b14610311576101d8565b806301ffc9a7146101dd57806302fe53051461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613726565b610735565b6040516102119190613f94565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190613778565b610817565b005b34801561024f57600080fd5b506102586108ad565b6040516102659190613faf565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906137b9565b61093f565b6040516102a29190613e51565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd919061363d565b6109c4565b005b3480156102e057600080fd5b506102fb60048036038101906102f691906137b9565b610adc565b6040516103089190613faf565b60405180910390f35b34801561031d57600080fd5b506103386004803603810190610333919061381e565b610b10565b005b34801561034657600080fd5b5061034f610c15565b60405161035c91906142b1565b60405180910390f35b34801561037157600080fd5b5061038c600480360381019061038791906134d2565b610c22565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613537565b610d2e565b005b3480156103c357600080fd5b506103de60048036038101906103d991906136ba565b610d8e565b005b6103fa60048036038101906103f59190613679565b611024565b005b34801561040857600080fd5b50610423600480360381019061041e9190613537565b611246565b005b34801561043157600080fd5b5061043a611266565b60405161044791906142b1565b60405180910390f35b61046a600480360381019061046591906137b9565b611270565b005b34801561047857600080fd5b50610493600480360381019061048e91906137b9565b6113c7565b6040516104a09190613e51565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906134a9565b611479565b6040516104dd91906142b1565b60405180910390f35b3480156104f257600080fd5b506104fb611531565b6040516105089190613f72565b60405180910390f35b34801561051d57600080fd5b50610526611589565b005b34801561053457600080fd5b5061053d611611565b005b34801561054b57600080fd5b50610566600480360381019061056191906134a9565b611795565b6040516105739190613faf565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906137b9565b61193d565b005b6105bf60048036038101906105ba91906137b9565b6119cf565b005b3480156105cd57600080fd5b506105d6611ae1565b6040516105e39190613e51565b60405180910390f35b3480156105f857600080fd5b50610601611b0b565b60405161060e9190613faf565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613601565b611b9d565b005b34801561064c57600080fd5b50610667600480360381019061066291906137e2565b611d1e565b005b34801561067557600080fd5b50610690600480360381019061068b9190613586565b611df4565b005b34801561069e57600080fd5b506106b960048036038101906106b491906137b9565b611e56565b6040516106c69190613faf565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f191906134fb565b611e8a565b6040516107039190613f94565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e91906134a9565b611f1e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610810575061080f82612016565b5b9050919050565b61081f612080565b73ffffffffffffffffffffffffffffffffffffffff1661083d611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a906141b1565b60405180910390fd5b8060cc90805190602001906108a9929190613222565b5050565b6060606580546108bc906145d4565b80601f01602080910402602001604051908101604052809291908181526020018280546108e8906145d4565b80156109355780601f1061090a57610100808354040283529160200191610935565b820191906000526020600020905b81548152906001019060200180831161091857829003601f168201915b5050505050905090565b600061094a82612088565b610989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098090614191565b60405180910390fd5b6069600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cf826113c7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3790614231565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5f612080565b73ffffffffffffffffffffffffffffffffffffffff161480610a8e5750610a8d81610a88612080565b611e8a565b5b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac4906140f1565b60405180910390fd5b610ad783836120f4565b505050565b606060cc610ae9836121ad565b604051602001610afa929190613e0d565b6040516020818303038152906040529050919050565b610b18612080565b73ffffffffffffffffffffffffffffffffffffffff16610b36611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b83906141b1565b60405180910390fd5b60cb548311610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790614251565b60405180910390fd5b60008390505b828111610c08578160cd6000838152602001908152602001600020819055508080610c0090614637565b915050610bd6565b508160cb81905550505050565b600060c980549050905090565b610c2a612080565b73ffffffffffffffffffffffffffffffffffffffff16610c48611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c95906141b1565b60405180910390fd5b60004790506000811415610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90614031565b60405180910390fd5b610cf1828261235a565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610d22929190613e6c565b60405180910390a15050565b610d3f610d39612080565b8261244e565b610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590614291565b60405180910390fd5b610d8983838361252c565b505050565b610d96612080565b73ffffffffffffffffffffffffffffffffffffffff16610db4611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e01906141b1565b60405180910390fd5b60cb5482600081518110610e47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015111610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614251565b60405180910390fd5b8051825114610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906141d1565b60405180910390fd5b6000805b835181101561101757828181518110610f19577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160cd6000868481518110610f5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000208190555081848281518110610fb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151111561100457838181518110610ff9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015191505b808061100f90614637565b915050610ed7565b508060cb81905550505050565b6000805b82518110156110ee57600060cd6000858481518110611070577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020549050600081116110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390614271565b60405180910390fd5b80836110d8919061441b565b92505080806110e690614637565b915050611028565b50803414611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890614271565b60405180910390fd5b60005b8251811015611203576111873384838151811061117a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612788565b60c98382815181106111c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151908060018154018082558091505060019003906000526020600020016000909190919091505580806111fb90614637565b915050611134565b507fe1a7b1f6e4c90036ea3fa3a584f6175b3d532e304045c046363162859b18dc38600033348560405161123a9493929190613e95565b60405180910390a15050565b61126183838360405180602001604052806000815250611df4565b505050565b600060cb54905090565b600060cd6000838152602001908152602001600020549050600081116112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290614271565b60405180910390fd5b80341461130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490614271565b60405180910390fd5b6000611318836113c7565b905061132581338561252c565b600060cd6000858152602001908152602001600020819055508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611384573d6000803e3d6000fd5b507fdad7f0c8e6c45c6d423b15094a00fe8d5ccf890d0708f2be02d4f43663b27375813334866040516113ba9493929190613f2d565b60405180910390a1505050565b6000806067600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146790614131565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190614111565b60405180910390fd5b606860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060c980548060200260200160405190810160405280929190818152602001828054801561157f57602002820191906000526020600020905b81548152602001906001019080831161156b575b5050505050905090565b611591612080565b73ffffffffffffffffffffffffffffffffffffffff166115af611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc906141b1565b60405180910390fd5b61160f60006127a6565b565b600060019054906101000a900460ff1680611637575060008054906101000a900460ff16155b611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90614151565b60405180910390fd5b60008060019054906101000a900460ff1615905080156116c6576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61173a6040518060400160405280601481526020017f43727970746f204e696a6967656e204769726c730000000000000000000000008152506040518060400160405280600381526020017f434e47000000000000000000000000000000000000000000000000000000000081525061286c565b611742612961565b611763604051806080016040528060578152602001614de460579139610817565b66b1a2bc2ec5000060ca8190555080156117925760008060016101000a81548160ff0219169083151502179055505b50565b60608173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90614211565b60405180910390fd5b600060405180602001604052806000815250905060005b60c98054905081101561193357600061187860c98381548110611868577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001546113c7565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561191f57826118fc60c984815481106118ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001546121ad565b60405160200161190d929190613dde565b60405160208183030381529060405292505b50808061192b90614637565b91505061181c565b5080915050919050565b611946816113c7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90614211565b60405180910390fd5b600060cd60008381526020019081526020016000208190555050565b600060cd600083815260200190815260200160002054905060008111611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2190614271565b60405180910390fd5b803414611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6390614271565b60405180910390fd5b611a763383612788565b60c98290806001815401808255809150506001900390600052602060002001600090919091909150557fdad7f0c8e6c45c6d423b15094a00fe8d5ccf890d0708f2be02d4f43663b273756000333485604051611ad59493929190613f2d565b60405180910390a15050565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060668054611b1a906145d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611b46906145d4565b8015611b935780601f10611b6857610100808354040283529160200191611b93565b820191906000526020600020905b815481529060010190602001808311611b7657829003601f168201915b5050505050905090565b611ba5612080565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90614071565b60405180910390fd5b80606a6000611c20612080565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ccd612080565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d129190613f94565b60405180910390a35050565b611d27826113c7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90614211565b60405180910390fd5b60ca548111611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90614271565b60405180910390fd5b8060cd6000848152602001908152602001600020819055505050565b611e05611dff612080565b8361244e565b611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90614291565b60405180910390fd5b611e5084848484612a4a565b50505050565b606060cc611e63836121ad565b604051602001611e74929190613e0d565b6040516020818303038152906040529050919050565b6000606a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f26612080565b73ffffffffffffffffffffffffffffffffffffffff16611f44611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f91906141b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190613ff1565b60405180910390fd5b612013816127a6565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166067600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816069600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612167836113c7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060008214156121f5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612355565b600082905060005b6000821461222757808061221090614637565b915050600a826122209190614471565b91506121fd565b60008167ffffffffffffffff811115612269577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561229b5781602001600182028036833780820191505090505b5090505b6000851461234e576001826122b491906144a2565b9150600a856122c39190614680565b60306122cf919061441b565b60f81b81838151811061230b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123479190614471565b945061229f565b8093505050505b919050565b8047101561239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906140b1565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516123c390613e3c565b60006040518083038185875af1925050503d8060008114612400576040519150601f19603f3d011682016040523d82523d6000602084013e612405565b606091505b5050905080612449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244090614091565b60405180910390fd5b505050565b600061245982612088565b612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f906140d1565b60405180910390fd5b60006124a3836113c7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061251257508373ffffffffffffffffffffffffffffffffffffffff166124fa8461093f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061252357506125228185611e8a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661254c826113c7565b73ffffffffffffffffffffffffffffffffffffffff16146125a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612599906141f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260990614051565b60405180910390fd5b61261d838383612aa6565b6126286000826120f4565b6001606860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267891906144a2565b925050819055506001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126cf919061441b565b92505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6127a2828260405180602001604052806000815250612aab565b5050565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff1680612892575060008054906101000a900460ff16155b6128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612921576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612929612b06565b612931612bdf565b61293b8383612cb8565b801561295c5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680612987575060008054906101000a900460ff16155b6129c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bd90614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612a16576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612a1e612b06565b612a26612dc1565b8015612a475760008060016101000a81548160ff0219169083151502179055505b50565b612a5584848461252c565b612a6184848484612eaa565b612aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9790613fd1565b60405180910390fd5b50505050565b505050565b612ab58383613041565b612ac26000848484612eaa565b612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af890613fd1565b60405180910390fd5b505050565b600060019054906101000a900460ff1680612b2c575060008054906101000a900460ff16155b612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612bbb576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015612bdc5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680612c05575060008054906101000a900460ff16155b612c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3b90614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612c94576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015612cb55760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680612cde575060008054906101000a900460ff16155b612d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1490614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612d6d576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8260659080519060200190612d83929190613222565b508160669080519060200190612d9a929190613222565b508015612dbc5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680612de7575060008054906101000a900460ff16155b612e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1d90614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612e76576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612e86612e81612080565b6127a6565b8015612ea75760008060016101000a81548160ff0219169083151502179055505b50565b6000612ecb8473ffffffffffffffffffffffffffffffffffffffff1661320f565b15613034578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ef4612080565b8786866040518563ffffffff1660e01b8152600401612f169493929190613ee1565b602060405180830381600087803b158015612f3057600080fd5b505af1925050508015612f6157506040513d601f19601f82011682018060405250810190612f5e919061374f565b60015b612fe4573d8060008114612f91576040519150601f19603f3d011682016040523d82523d6000602084013e612f96565b606091505b50600081511415612fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd390613fd1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613039565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a890614171565b60405180910390fd5b6130ba81612088565b156130fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f190614011565b60405180910390fd5b61310660008383612aa6565b6001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613156919061441b565b92505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461322e906145d4565b90600052602060002090601f0160209004810192826132505760008555613297565b82601f1061326957805160ff1916838001178555613297565b82800160010185558215613297579182015b8281111561329657825182559160200191906001019061327b565b5b5090506132a491906132a8565b5090565b5b808211156132c15760008160009055506001016132a9565b5090565b60006132d86132d3846142f1565b6142cc565b905080838252602082019050828560208602820111156132f757600080fd5b60005b85811015613327578161330d8882613494565b8452602084019350602083019250506001810190506132fa565b5050509392505050565b600061334461333f8461431d565b6142cc565b90508281526020810184848401111561335c57600080fd5b613367848285614592565b509392505050565b600061338261337d8461434e565b6142cc565b90508281526020810184848401111561339a57600080fd5b6133a5848285614592565b509392505050565b6000813590506133bc81614d70565b92915050565b6000813590506133d181614d87565b92915050565b600082601f8301126133e857600080fd5b81356133f88482602086016132c5565b91505092915050565b60008135905061341081614d9e565b92915050565b60008135905061342581614db5565b92915050565b60008151905061343a81614db5565b92915050565b600082601f83011261345157600080fd5b8135613461848260208601613331565b91505092915050565b600082601f83011261347b57600080fd5b813561348b84826020860161336f565b91505092915050565b6000813590506134a381614dcc565b92915050565b6000602082840312156134bb57600080fd5b60006134c9848285016133ad565b91505092915050565b6000602082840312156134e457600080fd5b60006134f2848285016133c2565b91505092915050565b6000806040838503121561350e57600080fd5b600061351c858286016133ad565b925050602061352d858286016133ad565b9150509250929050565b60008060006060848603121561354c57600080fd5b600061355a868287016133ad565b935050602061356b868287016133ad565b925050604061357c86828701613494565b9150509250925092565b6000806000806080858703121561359c57600080fd5b60006135aa878288016133ad565b94505060206135bb878288016133ad565b93505060406135cc87828801613494565b925050606085013567ffffffffffffffff8111156135e957600080fd5b6135f587828801613440565b91505092959194509250565b6000806040838503121561361457600080fd5b6000613622858286016133ad565b925050602061363385828601613401565b9150509250929050565b6000806040838503121561365057600080fd5b600061365e858286016133ad565b925050602061366f85828601613494565b9150509250929050565b60006020828403121561368b57600080fd5b600082013567ffffffffffffffff8111156136a557600080fd5b6136b1848285016133d7565b91505092915050565b600080604083850312156136cd57600080fd5b600083013567ffffffffffffffff8111156136e757600080fd5b6136f3858286016133d7565b925050602083013567ffffffffffffffff81111561371057600080fd5b61371c858286016133d7565b9150509250929050565b60006020828403121561373857600080fd5b600061374684828501613416565b91505092915050565b60006020828403121561376157600080fd5b600061376f8482850161342b565b91505092915050565b60006020828403121561378a57600080fd5b600082013567ffffffffffffffff8111156137a457600080fd5b6137b08482850161346a565b91505092915050565b6000602082840312156137cb57600080fd5b60006137d984828501613494565b91505092915050565b600080604083850312156137f557600080fd5b600061380385828601613494565b925050602061381485828601613494565b9150509250929050565b60008060006060848603121561383357600080fd5b600061384186828701613494565b935050602061385286828701613494565b925050604061386386828701613494565b9150509250925092565b60006138798383613dc0565b60208301905092915050565b61388e8161455c565b82525050565b61389d816144d6565b82525050565b60006138ae826143a4565b6138b881856143d2565b93506138c38361437f565b8060005b838110156138f45781516138db888261386d565b97506138e6836143c5565b9250506001810190506138c7565b5085935050505092915050565b61390a816144fa565b82525050565b600061391b826143af565b61392581856143e3565b93506139358185602086016145a1565b61393e8161476d565b840191505092915050565b6000613954826143ba565b61395e81856143ff565b935061396e8185602086016145a1565b6139778161476d565b840191505092915050565b600061398d826143ba565b6139978185614410565b93506139a78185602086016145a1565b80840191505092915050565b600081546139c0816145d4565b6139ca8186614410565b945060018216600081146139e557600181146139f657613a29565b60ff19831686528186019350613a29565b6139ff8561438f565b60005b83811015613a2157815481890152600182019150602081019050613a02565b838801955050505b50505092915050565b6000613a3f6032836143ff565b9150613a4a8261477e565b604082019050919050565b6000613a626026836143ff565b9150613a6d826147cd565b604082019050919050565b6000613a85601c836143ff565b9150613a908261481c565b602082019050919050565b6000613aa86007836143ff565b9150613ab382614845565b602082019050919050565b6000613acb6024836143ff565b9150613ad68261486e565b604082019050919050565b6000613aee6019836143ff565b9150613af9826148bd565b602082019050919050565b6000613b11603a836143ff565b9150613b1c826148e6565b604082019050919050565b6000613b34601d836143ff565b9150613b3f82614935565b602082019050919050565b6000613b57602c836143ff565b9150613b628261495e565b604082019050919050565b6000613b7a6038836143ff565b9150613b85826149ad565b604082019050919050565b6000613b9d602a836143ff565b9150613ba8826149fc565b604082019050919050565b6000613bc06029836143ff565b9150613bcb82614a4b565b604082019050919050565b6000613be3602e836143ff565b9150613bee82614a9a565b604082019050919050565b6000613c066020836143ff565b9150613c1182614ae9565b602082019050919050565b6000613c29602c836143ff565b9150613c3482614b12565b604082019050919050565b6000613c4c600583614410565b9150613c5782614b61565b600582019050919050565b6000613c6f6020836143ff565b9150613c7a82614b8a565b602082019050919050565b6000613c926007836143ff565b9150613c9d82614bb3565b602082019050919050565b6000613cb56029836143ff565b9150613cc082614bdc565b604082019050919050565b6000613cd86007836143ff565b9150613ce382614c2b565b602082019050919050565b6000613cfb6021836143ff565b9150613d0682614c54565b604082019050919050565b6000613d1e6007836143ff565b9150613d2982614ca3565b602082019050919050565b6000613d416000836143f4565b9150613d4c82614ccc565b600082019050919050565b6000613d646007836143ff565b9150613d6f82614ccf565b602082019050919050565b6000613d876031836143ff565b9150613d9282614cf8565b604082019050919050565b6000613daa600183614410565b9150613db582614d47565b600182019050919050565b613dc981614552565b82525050565b613dd881614552565b82525050565b6000613dea8285613982565b9150613df68284613982565b9150613e0182613d9d565b91508190509392505050565b6000613e1982856139b3565b9150613e258284613982565b9150613e3082613c3f565b91508190509392505050565b6000613e4782613d34565b9150819050919050565b6000602082019050613e666000830184613894565b92915050565b6000604082019050613e816000830185613885565b613e8e6020830184613dcf565b9392505050565b6000608082019050613eaa6000830187613894565b613eb76020830186613894565b613ec46040830185613dcf565b8181036060830152613ed681846138a3565b905095945050505050565b6000608082019050613ef66000830187613894565b613f036020830186613894565b613f106040830185613dcf565b8181036060830152613f228184613910565b905095945050505050565b6000608082019050613f426000830187613894565b613f4f6020830186613894565b613f5c6040830185613dcf565b613f696060830184613dcf565b95945050505050565b60006020820190508181036000830152613f8c81846138a3565b905092915050565b6000602082019050613fa96000830184613901565b92915050565b60006020820190508181036000830152613fc98184613949565b905092915050565b60006020820190508181036000830152613fea81613a32565b9050919050565b6000602082019050818103600083015261400a81613a55565b9050919050565b6000602082019050818103600083015261402a81613a78565b9050919050565b6000602082019050818103600083015261404a81613a9b565b9050919050565b6000602082019050818103600083015261406a81613abe565b9050919050565b6000602082019050818103600083015261408a81613ae1565b9050919050565b600060208201905081810360008301526140aa81613b04565b9050919050565b600060208201905081810360008301526140ca81613b27565b9050919050565b600060208201905081810360008301526140ea81613b4a565b9050919050565b6000602082019050818103600083015261410a81613b6d565b9050919050565b6000602082019050818103600083015261412a81613b90565b9050919050565b6000602082019050818103600083015261414a81613bb3565b9050919050565b6000602082019050818103600083015261416a81613bd6565b9050919050565b6000602082019050818103600083015261418a81613bf9565b9050919050565b600060208201905081810360008301526141aa81613c1c565b9050919050565b600060208201905081810360008301526141ca81613c62565b9050919050565b600060208201905081810360008301526141ea81613c85565b9050919050565b6000602082019050818103600083015261420a81613ca8565b9050919050565b6000602082019050818103600083015261422a81613ccb565b9050919050565b6000602082019050818103600083015261424a81613cee565b9050919050565b6000602082019050818103600083015261426a81613d11565b9050919050565b6000602082019050818103600083015261428a81613d57565b9050919050565b600060208201905081810360008301526142aa81613d7a565b9050919050565b60006020820190506142c66000830184613dcf565b92915050565b60006142d66142e7565b90506142e28282614606565b919050565b6000604051905090565b600067ffffffffffffffff82111561430c5761430b61473e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143385761433761473e565b5b6143418261476d565b9050602081019050919050565b600067ffffffffffffffff8211156143695761436861473e565b5b6143728261476d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061442682614552565b915061443183614552565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614466576144656146b1565b5b828201905092915050565b600061447c82614552565b915061448783614552565b925082614497576144966146e0565b5b828204905092915050565b60006144ad82614552565b91506144b883614552565b9250828210156144cb576144ca6146b1565b5b828203905092915050565b60006144e182614532565b9050919050565b60006144f382614532565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006145678261456e565b9050919050565b600061457982614580565b9050919050565b600061458b82614532565b9050919050565b82818337600083830152505050565b60005b838110156145bf5780820151818401526020810190506145a4565b838111156145ce576000848401525b50505050565b600060028204905060018216806145ec57607f821691505b60208210811415614600576145ff61470f565b5b50919050565b61460f8261476d565b810181811067ffffffffffffffff8211171561462e5761462d61473e565b5b80604052505050565b600061464282614552565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614675576146746146b1565b5b600182019050919050565b600061468b82614552565b915061469683614552565b9250826146a6576146a56146e0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f434e474530303500000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f434e474530303600000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f434e474530303100000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f434e474530303700000000000000000000000000000000000000000000000000600082015250565b50565b7f434e474530303200000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b614d79816144d6565b8114614d8457600080fd5b50565b614d90816144e8565b8114614d9b57600080fd5b50565b614da7816144fa565b8114614db257600080fd5b50565b614dbe81614506565b8114614dc957600080fd5b50565b614dd581614552565b8114614de057600080fd5b5056fe68747470733a2f2f697066732e696f2f69706e732f6b3531717a69357571753564677174697274786e6d307679367a76747533656e6e34766d6973656534646436376730756539706c6b386d686d326d7771332f434e47a26469706673582212201da48f875f7fbf3c12b90f15c7c1fce82d8c241a01fcd5eda3d3e1f2bca17dc164736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80636352211e116101025780638da5cb5b11610095578063b88d4fde11610064578063b88d4fde14610669578063c87b56dd14610692578063e985e9c5146106cf578063f2fde38b1461070c576101d8565b80638da5cb5b146105c157806395d89b41146105ec578063a22cb46514610617578063b8411c0f14610640576101d8565b80638129fc1c116100d15780638129fc1c146105285780638aa902131461053f5780638bb8fa921461057c5780638d15dcae146105a5576101d8565b80636352211e1461046c57806370a08231146104a9578063714cff56146104e6578063715018a614610511576101d8565b806318160ddd1161017a5780633520aceb116101495780633520aceb146103e057806342842e0e146103fc5780634664b30114610425578063499e698214610450576101d8565b806318160ddd1461033a578063191655871461036557806323b872dd1461038e5780632d6e8569146103b7576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab5780630e89341c146102d457806314af3d7b14610311576101d8565b806301ffc9a7146101dd57806302fe53051461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613726565b610735565b6040516102119190613f94565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190613778565b610817565b005b34801561024f57600080fd5b506102586108ad565b6040516102659190613faf565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906137b9565b61093f565b6040516102a29190613e51565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd919061363d565b6109c4565b005b3480156102e057600080fd5b506102fb60048036038101906102f691906137b9565b610adc565b6040516103089190613faf565b60405180910390f35b34801561031d57600080fd5b506103386004803603810190610333919061381e565b610b10565b005b34801561034657600080fd5b5061034f610c15565b60405161035c91906142b1565b60405180910390f35b34801561037157600080fd5b5061038c600480360381019061038791906134d2565b610c22565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613537565b610d2e565b005b3480156103c357600080fd5b506103de60048036038101906103d991906136ba565b610d8e565b005b6103fa60048036038101906103f59190613679565b611024565b005b34801561040857600080fd5b50610423600480360381019061041e9190613537565b611246565b005b34801561043157600080fd5b5061043a611266565b60405161044791906142b1565b60405180910390f35b61046a600480360381019061046591906137b9565b611270565b005b34801561047857600080fd5b50610493600480360381019061048e91906137b9565b6113c7565b6040516104a09190613e51565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906134a9565b611479565b6040516104dd91906142b1565b60405180910390f35b3480156104f257600080fd5b506104fb611531565b6040516105089190613f72565b60405180910390f35b34801561051d57600080fd5b50610526611589565b005b34801561053457600080fd5b5061053d611611565b005b34801561054b57600080fd5b50610566600480360381019061056191906134a9565b611795565b6040516105739190613faf565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906137b9565b61193d565b005b6105bf60048036038101906105ba91906137b9565b6119cf565b005b3480156105cd57600080fd5b506105d6611ae1565b6040516105e39190613e51565b60405180910390f35b3480156105f857600080fd5b50610601611b0b565b60405161060e9190613faf565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613601565b611b9d565b005b34801561064c57600080fd5b50610667600480360381019061066291906137e2565b611d1e565b005b34801561067557600080fd5b50610690600480360381019061068b9190613586565b611df4565b005b34801561069e57600080fd5b506106b960048036038101906106b491906137b9565b611e56565b6040516106c69190613faf565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f191906134fb565b611e8a565b6040516107039190613f94565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e91906134a9565b611f1e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610810575061080f82612016565b5b9050919050565b61081f612080565b73ffffffffffffffffffffffffffffffffffffffff1661083d611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a906141b1565b60405180910390fd5b8060cc90805190602001906108a9929190613222565b5050565b6060606580546108bc906145d4565b80601f01602080910402602001604051908101604052809291908181526020018280546108e8906145d4565b80156109355780601f1061090a57610100808354040283529160200191610935565b820191906000526020600020905b81548152906001019060200180831161091857829003601f168201915b5050505050905090565b600061094a82612088565b610989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098090614191565b60405180910390fd5b6069600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cf826113c7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3790614231565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5f612080565b73ffffffffffffffffffffffffffffffffffffffff161480610a8e5750610a8d81610a88612080565b611e8a565b5b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac4906140f1565b60405180910390fd5b610ad783836120f4565b505050565b606060cc610ae9836121ad565b604051602001610afa929190613e0d565b6040516020818303038152906040529050919050565b610b18612080565b73ffffffffffffffffffffffffffffffffffffffff16610b36611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b83906141b1565b60405180910390fd5b60cb548311610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790614251565b60405180910390fd5b60008390505b828111610c08578160cd6000838152602001908152602001600020819055508080610c0090614637565b915050610bd6565b508160cb81905550505050565b600060c980549050905090565b610c2a612080565b73ffffffffffffffffffffffffffffffffffffffff16610c48611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c95906141b1565b60405180910390fd5b60004790506000811415610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90614031565b60405180910390fd5b610cf1828261235a565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610d22929190613e6c565b60405180910390a15050565b610d3f610d39612080565b8261244e565b610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590614291565b60405180910390fd5b610d8983838361252c565b505050565b610d96612080565b73ffffffffffffffffffffffffffffffffffffffff16610db4611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e01906141b1565b60405180910390fd5b60cb5482600081518110610e47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015111610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614251565b60405180910390fd5b8051825114610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906141d1565b60405180910390fd5b6000805b835181101561101757828181518110610f19577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160cd6000868481518110610f5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000208190555081848281518110610fb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151111561100457838181518110610ff9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015191505b808061100f90614637565b915050610ed7565b508060cb81905550505050565b6000805b82518110156110ee57600060cd6000858481518110611070577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020549050600081116110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390614271565b60405180910390fd5b80836110d8919061441b565b92505080806110e690614637565b915050611028565b50803414611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890614271565b60405180910390fd5b60005b8251811015611203576111873384838151811061117a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612788565b60c98382815181106111c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151908060018154018082558091505060019003906000526020600020016000909190919091505580806111fb90614637565b915050611134565b507fe1a7b1f6e4c90036ea3fa3a584f6175b3d532e304045c046363162859b18dc38600033348560405161123a9493929190613e95565b60405180910390a15050565b61126183838360405180602001604052806000815250611df4565b505050565b600060cb54905090565b600060cd6000838152602001908152602001600020549050600081116112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290614271565b60405180910390fd5b80341461130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490614271565b60405180910390fd5b6000611318836113c7565b905061132581338561252c565b600060cd6000858152602001908152602001600020819055508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611384573d6000803e3d6000fd5b507fdad7f0c8e6c45c6d423b15094a00fe8d5ccf890d0708f2be02d4f43663b27375813334866040516113ba9493929190613f2d565b60405180910390a1505050565b6000806067600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146790614131565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190614111565b60405180910390fd5b606860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060c980548060200260200160405190810160405280929190818152602001828054801561157f57602002820191906000526020600020905b81548152602001906001019080831161156b575b5050505050905090565b611591612080565b73ffffffffffffffffffffffffffffffffffffffff166115af611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc906141b1565b60405180910390fd5b61160f60006127a6565b565b600060019054906101000a900460ff1680611637575060008054906101000a900460ff16155b611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90614151565b60405180910390fd5b60008060019054906101000a900460ff1615905080156116c6576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61173a6040518060400160405280601481526020017f43727970746f204e696a6967656e204769726c730000000000000000000000008152506040518060400160405280600381526020017f434e47000000000000000000000000000000000000000000000000000000000081525061286c565b611742612961565b611763604051806080016040528060578152602001614de460579139610817565b66b1a2bc2ec5000060ca8190555080156117925760008060016101000a81548160ff0219169083151502179055505b50565b60608173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90614211565b60405180910390fd5b600060405180602001604052806000815250905060005b60c98054905081101561193357600061187860c98381548110611868577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001546113c7565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561191f57826118fc60c984815481106118ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001546121ad565b60405160200161190d929190613dde565b60405160208183030381529060405292505b50808061192b90614637565b91505061181c565b5080915050919050565b611946816113c7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90614211565b60405180910390fd5b600060cd60008381526020019081526020016000208190555050565b600060cd600083815260200190815260200160002054905060008111611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2190614271565b60405180910390fd5b803414611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6390614271565b60405180910390fd5b611a763383612788565b60c98290806001815401808255809150506001900390600052602060002001600090919091909150557fdad7f0c8e6c45c6d423b15094a00fe8d5ccf890d0708f2be02d4f43663b273756000333485604051611ad59493929190613f2d565b60405180910390a15050565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060668054611b1a906145d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611b46906145d4565b8015611b935780601f10611b6857610100808354040283529160200191611b93565b820191906000526020600020905b815481529060010190602001808311611b7657829003601f168201915b5050505050905090565b611ba5612080565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90614071565b60405180910390fd5b80606a6000611c20612080565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ccd612080565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d129190613f94565b60405180910390a35050565b611d27826113c7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90614211565b60405180910390fd5b60ca548111611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90614271565b60405180910390fd5b8060cd6000848152602001908152602001600020819055505050565b611e05611dff612080565b8361244e565b611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90614291565b60405180910390fd5b611e5084848484612a4a565b50505050565b606060cc611e63836121ad565b604051602001611e74929190613e0d565b6040516020818303038152906040529050919050565b6000606a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f26612080565b73ffffffffffffffffffffffffffffffffffffffff16611f44611ae1565b73ffffffffffffffffffffffffffffffffffffffff1614611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f91906141b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190613ff1565b60405180910390fd5b612013816127a6565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166067600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816069600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612167836113c7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060008214156121f5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612355565b600082905060005b6000821461222757808061221090614637565b915050600a826122209190614471565b91506121fd565b60008167ffffffffffffffff811115612269577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561229b5781602001600182028036833780820191505090505b5090505b6000851461234e576001826122b491906144a2565b9150600a856122c39190614680565b60306122cf919061441b565b60f81b81838151811061230b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123479190614471565b945061229f565b8093505050505b919050565b8047101561239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906140b1565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516123c390613e3c565b60006040518083038185875af1925050503d8060008114612400576040519150601f19603f3d011682016040523d82523d6000602084013e612405565b606091505b5050905080612449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244090614091565b60405180910390fd5b505050565b600061245982612088565b612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f906140d1565b60405180910390fd5b60006124a3836113c7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061251257508373ffffffffffffffffffffffffffffffffffffffff166124fa8461093f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061252357506125228185611e8a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661254c826113c7565b73ffffffffffffffffffffffffffffffffffffffff16146125a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612599906141f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260990614051565b60405180910390fd5b61261d838383612aa6565b6126286000826120f4565b6001606860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267891906144a2565b925050819055506001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126cf919061441b565b92505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6127a2828260405180602001604052806000815250612aab565b5050565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff1680612892575060008054906101000a900460ff16155b6128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612921576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612929612b06565b612931612bdf565b61293b8383612cb8565b801561295c5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680612987575060008054906101000a900460ff16155b6129c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bd90614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612a16576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612a1e612b06565b612a26612dc1565b8015612a475760008060016101000a81548160ff0219169083151502179055505b50565b612a5584848461252c565b612a6184848484612eaa565b612aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9790613fd1565b60405180910390fd5b50505050565b505050565b612ab58383613041565b612ac26000848484612eaa565b612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af890613fd1565b60405180910390fd5b505050565b600060019054906101000a900460ff1680612b2c575060008054906101000a900460ff16155b612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612bbb576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015612bdc5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680612c05575060008054906101000a900460ff16155b612c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3b90614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612c94576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015612cb55760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680612cde575060008054906101000a900460ff16155b612d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1490614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612d6d576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8260659080519060200190612d83929190613222565b508160669080519060200190612d9a929190613222565b508015612dbc5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680612de7575060008054906101000a900460ff16155b612e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1d90614151565b60405180910390fd5b60008060019054906101000a900460ff161590508015612e76576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612e86612e81612080565b6127a6565b8015612ea75760008060016101000a81548160ff0219169083151502179055505b50565b6000612ecb8473ffffffffffffffffffffffffffffffffffffffff1661320f565b15613034578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ef4612080565b8786866040518563ffffffff1660e01b8152600401612f169493929190613ee1565b602060405180830381600087803b158015612f3057600080fd5b505af1925050508015612f6157506040513d601f19601f82011682018060405250810190612f5e919061374f565b60015b612fe4573d8060008114612f91576040519150601f19603f3d011682016040523d82523d6000602084013e612f96565b606091505b50600081511415612fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd390613fd1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613039565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a890614171565b60405180910390fd5b6130ba81612088565b156130fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f190614011565b60405180910390fd5b61310660008383612aa6565b6001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613156919061441b565b92505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461322e906145d4565b90600052602060002090601f0160209004810192826132505760008555613297565b82601f1061326957805160ff1916838001178555613297565b82800160010185558215613297579182015b8281111561329657825182559160200191906001019061327b565b5b5090506132a491906132a8565b5090565b5b808211156132c15760008160009055506001016132a9565b5090565b60006132d86132d3846142f1565b6142cc565b905080838252602082019050828560208602820111156132f757600080fd5b60005b85811015613327578161330d8882613494565b8452602084019350602083019250506001810190506132fa565b5050509392505050565b600061334461333f8461431d565b6142cc565b90508281526020810184848401111561335c57600080fd5b613367848285614592565b509392505050565b600061338261337d8461434e565b6142cc565b90508281526020810184848401111561339a57600080fd5b6133a5848285614592565b509392505050565b6000813590506133bc81614d70565b92915050565b6000813590506133d181614d87565b92915050565b600082601f8301126133e857600080fd5b81356133f88482602086016132c5565b91505092915050565b60008135905061341081614d9e565b92915050565b60008135905061342581614db5565b92915050565b60008151905061343a81614db5565b92915050565b600082601f83011261345157600080fd5b8135613461848260208601613331565b91505092915050565b600082601f83011261347b57600080fd5b813561348b84826020860161336f565b91505092915050565b6000813590506134a381614dcc565b92915050565b6000602082840312156134bb57600080fd5b60006134c9848285016133ad565b91505092915050565b6000602082840312156134e457600080fd5b60006134f2848285016133c2565b91505092915050565b6000806040838503121561350e57600080fd5b600061351c858286016133ad565b925050602061352d858286016133ad565b9150509250929050565b60008060006060848603121561354c57600080fd5b600061355a868287016133ad565b935050602061356b868287016133ad565b925050604061357c86828701613494565b9150509250925092565b6000806000806080858703121561359c57600080fd5b60006135aa878288016133ad565b94505060206135bb878288016133ad565b93505060406135cc87828801613494565b925050606085013567ffffffffffffffff8111156135e957600080fd5b6135f587828801613440565b91505092959194509250565b6000806040838503121561361457600080fd5b6000613622858286016133ad565b925050602061363385828601613401565b9150509250929050565b6000806040838503121561365057600080fd5b600061365e858286016133ad565b925050602061366f85828601613494565b9150509250929050565b60006020828403121561368b57600080fd5b600082013567ffffffffffffffff8111156136a557600080fd5b6136b1848285016133d7565b91505092915050565b600080604083850312156136cd57600080fd5b600083013567ffffffffffffffff8111156136e757600080fd5b6136f3858286016133d7565b925050602083013567ffffffffffffffff81111561371057600080fd5b61371c858286016133d7565b9150509250929050565b60006020828403121561373857600080fd5b600061374684828501613416565b91505092915050565b60006020828403121561376157600080fd5b600061376f8482850161342b565b91505092915050565b60006020828403121561378a57600080fd5b600082013567ffffffffffffffff8111156137a457600080fd5b6137b08482850161346a565b91505092915050565b6000602082840312156137cb57600080fd5b60006137d984828501613494565b91505092915050565b600080604083850312156137f557600080fd5b600061380385828601613494565b925050602061381485828601613494565b9150509250929050565b60008060006060848603121561383357600080fd5b600061384186828701613494565b935050602061385286828701613494565b925050604061386386828701613494565b9150509250925092565b60006138798383613dc0565b60208301905092915050565b61388e8161455c565b82525050565b61389d816144d6565b82525050565b60006138ae826143a4565b6138b881856143d2565b93506138c38361437f565b8060005b838110156138f45781516138db888261386d565b97506138e6836143c5565b9250506001810190506138c7565b5085935050505092915050565b61390a816144fa565b82525050565b600061391b826143af565b61392581856143e3565b93506139358185602086016145a1565b61393e8161476d565b840191505092915050565b6000613954826143ba565b61395e81856143ff565b935061396e8185602086016145a1565b6139778161476d565b840191505092915050565b600061398d826143ba565b6139978185614410565b93506139a78185602086016145a1565b80840191505092915050565b600081546139c0816145d4565b6139ca8186614410565b945060018216600081146139e557600181146139f657613a29565b60ff19831686528186019350613a29565b6139ff8561438f565b60005b83811015613a2157815481890152600182019150602081019050613a02565b838801955050505b50505092915050565b6000613a3f6032836143ff565b9150613a4a8261477e565b604082019050919050565b6000613a626026836143ff565b9150613a6d826147cd565b604082019050919050565b6000613a85601c836143ff565b9150613a908261481c565b602082019050919050565b6000613aa86007836143ff565b9150613ab382614845565b602082019050919050565b6000613acb6024836143ff565b9150613ad68261486e565b604082019050919050565b6000613aee6019836143ff565b9150613af9826148bd565b602082019050919050565b6000613b11603a836143ff565b9150613b1c826148e6565b604082019050919050565b6000613b34601d836143ff565b9150613b3f82614935565b602082019050919050565b6000613b57602c836143ff565b9150613b628261495e565b604082019050919050565b6000613b7a6038836143ff565b9150613b85826149ad565b604082019050919050565b6000613b9d602a836143ff565b9150613ba8826149fc565b604082019050919050565b6000613bc06029836143ff565b9150613bcb82614a4b565b604082019050919050565b6000613be3602e836143ff565b9150613bee82614a9a565b604082019050919050565b6000613c066020836143ff565b9150613c1182614ae9565b602082019050919050565b6000613c29602c836143ff565b9150613c3482614b12565b604082019050919050565b6000613c4c600583614410565b9150613c5782614b61565b600582019050919050565b6000613c6f6020836143ff565b9150613c7a82614b8a565b602082019050919050565b6000613c926007836143ff565b9150613c9d82614bb3565b602082019050919050565b6000613cb56029836143ff565b9150613cc082614bdc565b604082019050919050565b6000613cd86007836143ff565b9150613ce382614c2b565b602082019050919050565b6000613cfb6021836143ff565b9150613d0682614c54565b604082019050919050565b6000613d1e6007836143ff565b9150613d2982614ca3565b602082019050919050565b6000613d416000836143f4565b9150613d4c82614ccc565b600082019050919050565b6000613d646007836143ff565b9150613d6f82614ccf565b602082019050919050565b6000613d876031836143ff565b9150613d9282614cf8565b604082019050919050565b6000613daa600183614410565b9150613db582614d47565b600182019050919050565b613dc981614552565b82525050565b613dd881614552565b82525050565b6000613dea8285613982565b9150613df68284613982565b9150613e0182613d9d565b91508190509392505050565b6000613e1982856139b3565b9150613e258284613982565b9150613e3082613c3f565b91508190509392505050565b6000613e4782613d34565b9150819050919050565b6000602082019050613e666000830184613894565b92915050565b6000604082019050613e816000830185613885565b613e8e6020830184613dcf565b9392505050565b6000608082019050613eaa6000830187613894565b613eb76020830186613894565b613ec46040830185613dcf565b8181036060830152613ed681846138a3565b905095945050505050565b6000608082019050613ef66000830187613894565b613f036020830186613894565b613f106040830185613dcf565b8181036060830152613f228184613910565b905095945050505050565b6000608082019050613f426000830187613894565b613f4f6020830186613894565b613f5c6040830185613dcf565b613f696060830184613dcf565b95945050505050565b60006020820190508181036000830152613f8c81846138a3565b905092915050565b6000602082019050613fa96000830184613901565b92915050565b60006020820190508181036000830152613fc98184613949565b905092915050565b60006020820190508181036000830152613fea81613a32565b9050919050565b6000602082019050818103600083015261400a81613a55565b9050919050565b6000602082019050818103600083015261402a81613a78565b9050919050565b6000602082019050818103600083015261404a81613a9b565b9050919050565b6000602082019050818103600083015261406a81613abe565b9050919050565b6000602082019050818103600083015261408a81613ae1565b9050919050565b600060208201905081810360008301526140aa81613b04565b9050919050565b600060208201905081810360008301526140ca81613b27565b9050919050565b600060208201905081810360008301526140ea81613b4a565b9050919050565b6000602082019050818103600083015261410a81613b6d565b9050919050565b6000602082019050818103600083015261412a81613b90565b9050919050565b6000602082019050818103600083015261414a81613bb3565b9050919050565b6000602082019050818103600083015261416a81613bd6565b9050919050565b6000602082019050818103600083015261418a81613bf9565b9050919050565b600060208201905081810360008301526141aa81613c1c565b9050919050565b600060208201905081810360008301526141ca81613c62565b9050919050565b600060208201905081810360008301526141ea81613c85565b9050919050565b6000602082019050818103600083015261420a81613ca8565b9050919050565b6000602082019050818103600083015261422a81613ccb565b9050919050565b6000602082019050818103600083015261424a81613cee565b9050919050565b6000602082019050818103600083015261426a81613d11565b9050919050565b6000602082019050818103600083015261428a81613d57565b9050919050565b600060208201905081810360008301526142aa81613d7a565b9050919050565b60006020820190506142c66000830184613dcf565b92915050565b60006142d66142e7565b90506142e28282614606565b919050565b6000604051905090565b600067ffffffffffffffff82111561430c5761430b61473e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143385761433761473e565b5b6143418261476d565b9050602081019050919050565b600067ffffffffffffffff8211156143695761436861473e565b5b6143728261476d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061442682614552565b915061443183614552565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614466576144656146b1565b5b828201905092915050565b600061447c82614552565b915061448783614552565b925082614497576144966146e0565b5b828204905092915050565b60006144ad82614552565b91506144b883614552565b9250828210156144cb576144ca6146b1565b5b828203905092915050565b60006144e182614532565b9050919050565b60006144f382614532565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006145678261456e565b9050919050565b600061457982614580565b9050919050565b600061458b82614532565b9050919050565b82818337600083830152505050565b60005b838110156145bf5780820151818401526020810190506145a4565b838111156145ce576000848401525b50505050565b600060028204905060018216806145ec57607f821691505b60208210811415614600576145ff61470f565b5b50919050565b61460f8261476d565b810181811067ffffffffffffffff8211171561462e5761462d61473e565b5b80604052505050565b600061464282614552565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614675576146746146b1565b5b600182019050919050565b600061468b82614552565b915061469683614552565b9250826146a6576146a56146e0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f434e474530303500000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f434e474530303600000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f434e474530303100000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f434e474530303700000000000000000000000000000000000000000000000000600082015250565b50565b7f434e474530303200000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b614d79816144d6565b8114614d8457600080fd5b50565b614d90816144e8565b8114614d9b57600080fd5b50565b614da7816144fa565b8114614db257600080fd5b50565b614dbe81614506565b8114614dc957600080fd5b50565b614dd581614552565b8114614de057600080fd5b5056fe68747470733a2f2f697066732e696f2f69706e732f6b3531717a69357571753564677174697274786e6d307679367a76747533656e6e34766d6973656534646436376730756539706c6b386d686d326d7771332f434e47a26469706673582212201da48f875f7fbf3c12b90f15c7c1fce82d8c241a01fcd5eda3d3e1f2bca17dc164736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.