Overview
FTM Balance
0 FTM
FTM Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
BandungConference
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2022-07-30 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent tokens"); 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 tokens"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent tokens"); 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 tokens"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: ./contracts/Blablabla.sol pragma solidity >=0.7.0 <0.9.0; contract BandungConference is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public cost = 100 ether; uint256 public maxSupply = 53; uint256 public maxMintAmount = 3; uint256 public nftPerAddressLimit = 53; uint256 private _royaltyAmount; address public paymentSplitterAddress = 0xD109ca83355f25be9bF09f453A9BF930F65548eD; bool public paused = false; bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); _royaltyAmount = 500; } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /* Understand that the mint is sequential, anyone can see all other art pieces after * tokenId 1 is minted simply by look up the tokenURI then check the art pieces * via IPFS gateway. This makes the contract not sniper-proof, but also it can * help you to have the opportunity to choose which artwork you want to mint. * By minting we assume you understand the pros and cons of this sequential mint * method. */ // public function mint(uint256 _mintAmount) public payable { require(!paused, "The contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "You need to mint at least 1 NFTs"); require(_mintAmount <= maxMintAmount, "Max mint amount per transaction exceeded"); require(supply + _mintAmount <= maxSupply, "Max supply exceeded"); if (msg.sender != owner()) { uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "Max supply exceeded"); require(msg.value >= cost * _mintAmount, "Insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent tokens" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } // external function royaltyInfo( uint256 _tokenId, uint256 _salePrice ) external view returns (address receiver, uint256 royaltyAmount) { return (paymentSplitterAddress, ((_salePrice * _royaltyAmount) / 10000)); } function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { if (interfaceId == _INTERFACE_ID_ERC2981) { return true; } return super.supportsInterface(interfaceId); } //only owner function setPaymentSplitterAddress(address _paymentSplitterAddress) external onlyOwner { paymentSplitterAddress = _paymentSplitterAddress; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable { (bool hs, ) = payable(paymentSplitterAddress).call{value: address(this).balance * 100 / 100}(""); require(hs); (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentSplitterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_paymentSplitterAddress","type":"address"}],"name":"setPaymentSplitterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000519291906200032d565b5068056bc75e2d63100000600d556035600e556003600f55603560105573d109ca83355f25be9bf09f453a9bf930f65548ed601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601260146101000a81548160ff021916908315150217905550348015620000eb57600080fd5b506040516200505a3803806200505a83398181016040528101906200011191906200045b565b828281600090805190602001906200012b9291906200032d565b508060019080519060200190620001449291906200032d565b505050620001676200015b6200018a60201b60201c565b6200019260201b60201c565b62000178816200025860201b60201c565b6101f46011819055505050506200071b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002686200018a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200028e6200030360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002de906200053b565b60405180910390fd5b80600b9080519060200190620002ff9291906200032d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200033b9062000603565b90600052602060002090601f0160209004810192826200035f5760008555620003ab565b82601f106200037a57805160ff1916838001178555620003ab565b82800160010185558215620003ab579182015b82811115620003aa5782518255916020019190600101906200038d565b5b509050620003ba9190620003be565b5090565b5b80821115620003d9576000816000905550600101620003bf565b5090565b6000620003f4620003ee8462000586565b6200055d565b905082815260208101848484011115620004135762000412620006d2565b5b62000420848285620005cd565b509392505050565b600082601f83011262000440576200043f620006cd565b5b815162000452848260208601620003dd565b91505092915050565b600080600060608486031215620004775762000476620006dc565b5b600084015167ffffffffffffffff811115620004985762000497620006d7565b5b620004a68682870162000428565b935050602084015167ffffffffffffffff811115620004ca57620004c9620006d7565b5b620004d88682870162000428565b925050604084015167ffffffffffffffff811115620004fc57620004fb620006d7565b5b6200050a8682870162000428565b9150509250925092565b600062000523602083620005bc565b91506200053082620006f2565b602082019050919050565b60006020820190508181036000830152620005568162000514565b9050919050565b6000620005696200057c565b905062000577828262000639565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a457620005a36200069e565b5b620005af82620006e1565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005ed578082015181840152602081019050620005d0565b83811115620005fd576000848401525b50505050565b600060028204905060018216806200061c57607f821691505b602082108114156200063357620006326200066f565b5b50919050565b6200064482620006e1565b810181811067ffffffffffffffff821117156200066657620006656200069e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61492f806200072b6000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610800578063d5abeb011461083d578063da3ef23f14610868578063e985e9c514610891578063f2fde38b146108ce57610225565b8063a0712d681461073c578063a22cb46514610758578063b88d4fde14610781578063ba7d2c76146107aa578063c6682862146107d557610225565b8063715018a6116100f2578063715018a61461067b5780637f00c7a6146106925780638da5cb5b146106bb57806395d89b41146106e65780639a7110fe1461071157610225565b80636352211e146105ad5780636c0360eb146105ea5780636c4f06981461061557806370a082311461063e57610225565b806323b872dd116101b1578063438b630011610175578063438b6300146104b657806344a0d68a146104f35780634f6ccce71461051c57806355f804b3146105595780635c975abb1461058257610225565b806323b872dd146103df5780632a55205a146104085780632f745c59146104465780633ccfd60b1461048357806342842e0e1461048d57610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c57806318cae26914610377578063239c70ae146103b457610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061334b565b6108f7565b60405161025e9190613a6f565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061331e565b610960565b005b34801561029c57600080fd5b506102a56109f9565b6040516102b29190613a8a565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906133ee565b610a8b565b6040516102ef91906139bd565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906132de565b610b10565b005b34801561032d57600080fd5b50610336610c28565b6040516103439190613d8c565b60405180910390f35b34801561035857600080fd5b50610361610c2e565b60405161036e9190613d8c565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061315b565b610c3b565b6040516103ab9190613d8c565b60405180910390f35b3480156103c057600080fd5b506103c9610c53565b6040516103d69190613d8c565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906131c8565b610c59565b005b34801561041457600080fd5b5061042f600480360381019061042a919061341b565b610cb9565b60405161043d929190613a24565b60405180910390f35b34801561045257600080fd5b5061046d600480360381019061046891906132de565b610d05565b60405161047a9190613d8c565b60405180910390f35b61048b610daa565b005b34801561049957600080fd5b506104b460048036038101906104af91906131c8565b610eda565b005b3480156104c257600080fd5b506104dd60048036038101906104d8919061315b565b610efa565b6040516104ea9190613a4d565b60405180910390f35b3480156104ff57600080fd5b5061051a600480360381019061051591906133ee565b610fa8565b005b34801561052857600080fd5b50610543600480360381019061053e91906133ee565b61102e565b6040516105509190613d8c565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b91906133a5565b61109f565b005b34801561058e57600080fd5b50610597611135565b6040516105a49190613a6f565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf91906133ee565b611148565b6040516105e191906139bd565b60405180910390f35b3480156105f657600080fd5b506105ff6111fa565b60405161060c9190613a8a565b60405180910390f35b34801561062157600080fd5b5061063c6004803603810190610637919061315b565b611288565b005b34801561064a57600080fd5b506106656004803603810190610660919061315b565b611348565b6040516106729190613d8c565b60405180910390f35b34801561068757600080fd5b50610690611400565b005b34801561069e57600080fd5b506106b960048036038101906106b491906133ee565b611488565b005b3480156106c757600080fd5b506106d061150e565b6040516106dd91906139bd565b60405180910390f35b3480156106f257600080fd5b506106fb611538565b6040516107089190613a8a565b60405180910390f35b34801561071d57600080fd5b506107266115ca565b60405161073391906139bd565b60405180910390f35b610756600480360381019061075191906133ee565b6115f0565b005b34801561076457600080fd5b5061077f600480360381019061077a919061329e565b6118d4565b005b34801561078d57600080fd5b506107a860048036038101906107a3919061321b565b611a55565b005b3480156107b657600080fd5b506107bf611ab7565b6040516107cc9190613d8c565b60405180910390f35b3480156107e157600080fd5b506107ea611abd565b6040516107f79190613a8a565b60405180910390f35b34801561080c57600080fd5b50610827600480360381019061082291906133ee565b611b4b565b6040516108349190613a8a565b60405180910390f35b34801561084957600080fd5b50610852611bf5565b60405161085f9190613d8c565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a91906133a5565b611bfb565b005b34801561089d57600080fd5b506108b860048036038101906108b39190613188565b611c91565b6040516108c59190613a6f565b60405180910390f35b3480156108da57600080fd5b506108f560048036038101906108f0919061315b565b611d25565b005b6000632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141561094f576001905061095b565b61095882611e1d565b90505b919050565b610968611e97565b73ffffffffffffffffffffffffffffffffffffffff1661098661150e565b73ffffffffffffffffffffffffffffffffffffffff16146109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d390613c8c565b60405180910390fd5b80601260146101000a81548160ff02191690831515021790555050565b606060008054610a0890614095565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3490614095565b8015610a815780601f10610a5657610100808354040283529160200191610a81565b820191906000526020600020905b815481529060010190602001808311610a6457829003601f168201915b5050505050905090565b6000610a9682611e9f565b610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90613d6c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1b82611148565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390613ccc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bab611e97565b73ffffffffffffffffffffffffffffffffffffffff161480610bda5750610bd981610bd4611e97565b611c91565b5b610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090613c0c565b60405180910390fd5b610c238383611f0b565b505050565b600d5481565b6000600880549050905090565b60136020528060005260406000206000915090505481565b600f5481565b610c6a610c64611e97565b82611fc4565b610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090613cec565b60405180910390fd5b610cb48383836120a2565b505050565b600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661271060115485610cf09190613f51565b610cfa9190613f20565b915091509250929050565b6000610d1083611348565b8210610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890613acc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660648047610df39190613f51565b610dfd9190613f20565b604051610e09906139a8565b60006040518083038185875af1925050503d8060008114610e46576040519150601f19603f3d011682016040523d82523d6000602084013e610e4b565b606091505b5050905080610e5957600080fd5b6000610e6361150e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e86906139a8565b60006040518083038185875af1925050503d8060008114610ec3576040519150601f19603f3d011682016040523d82523d6000602084013e610ec8565b606091505b5050905080610ed657600080fd5b5050565b610ef583838360405180602001604052806000815250611a55565b505050565b60606000610f0783611348565b905060008167ffffffffffffffff811115610f2557610f2461425d565b5b604051908082528060200260200182016040528015610f535781602001602082028036833780820191505090505b50905060005b82811015610f9d57610f6b8582610d05565b828281518110610f7e57610f7d61422e565b5b6020026020010181815250508080610f95906140f8565b915050610f59565b508092505050919050565b610fb0611e97565b73ffffffffffffffffffffffffffffffffffffffff16610fce61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613c8c565b60405180910390fd5b80600d8190555050565b6000611038610c2e565b8210611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613d2c565b60405180910390fd5b6008828154811061108d5761108c61422e565b5b90600052602060002001549050919050565b6110a7611e97565b73ffffffffffffffffffffffffffffffffffffffff166110c561150e565b73ffffffffffffffffffffffffffffffffffffffff161461111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290613c8c565b60405180910390fd5b80600b9080519060200190611131929190612f6f565b5050565b601260149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613d0c565b60405180910390fd5b80915050919050565b600b805461120790614095565b80601f016020809104026020016040519081016040528092919081815260200182805461123390614095565b80156112805780601f1061125557610100808354040283529160200191611280565b820191906000526020600020905b81548152906001019060200180831161126357829003601f168201915b505050505081565b611290611e97565b73ffffffffffffffffffffffffffffffffffffffff166112ae61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90613c8c565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090613c2c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611408611e97565b73ffffffffffffffffffffffffffffffffffffffff1661142661150e565b73ffffffffffffffffffffffffffffffffffffffff161461147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613c8c565b60405180910390fd5b61148660006122fe565b565b611490611e97565b73ffffffffffffffffffffffffffffffffffffffff166114ae61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90613c8c565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461154790614095565b80601f016020809104026020016040519081016040528092919081815260200182805461157390614095565b80156115c05780601f10611595576101008083540402835291602001916115c0565b820191906000526020600020905b8154815290600101906020018083116115a357829003601f168201915b5050505050905090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260149054906101000a900460ff1615611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790613b0c565b60405180910390fd5b600061164a610c2e565b90506000821161168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168690613b2c565b60405180910390fd5b600f548211156116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb90613b8c565b60405180910390fd5b600e5482826116e39190613eca565b1115611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90613aac565b60405180910390fd5b61172c61150e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611844576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105483826117b19190613eca565b11156117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e990613aac565b60405180910390fd5b82600d546118009190613f51565b341015611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613bec565b60405180910390fd5b505b6000600190505b8281116118cf57601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906118a2906140f8565b91905055506118bc3382846118b79190613eca565b6123c4565b80806118c7906140f8565b91505061184b565b505050565b6118dc611e97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561194a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194190613bcc565b60405180910390fd5b8060056000611957611e97565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a04611e97565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a499190613a6f565b60405180910390a35050565b611a66611a60611e97565b83611fc4565b611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613cec565b60405180910390fd5b611ab1848484846123e2565b50505050565b60105481565b600c8054611aca90614095565b80601f0160208091040260200160405190810160405280929190818152602001828054611af690614095565b8015611b435780601f10611b1857610100808354040283529160200191611b43565b820191906000526020600020905b815481529060010190602001808311611b2657829003601f168201915b505050505081565b6060611b5682611e9f565b611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90613c4c565b60405180910390fd5b6000611b9f61243e565b90506000815111611bbf5760405180602001604052806000815250611bed565b80611bc9846124d0565b600c604051602001611bdd93929190613977565b6040516020818303038152906040525b915050919050565b600e5481565b611c03611e97565b73ffffffffffffffffffffffffffffffffffffffff16611c2161150e565b73ffffffffffffffffffffffffffffffffffffffff1614611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90613c8c565b60405180910390fd5b80600c9080519060200190611c8d929190612f6f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d2d611e97565b73ffffffffffffffffffffffffffffffffffffffff16611d4b61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9890613c8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0890613b4c565b60405180910390fd5b611e1a816122fe565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e905750611e8f82612631565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f7e83611148565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fcf82611e9f565b61200e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200590613d4c565b60405180910390fd5b600061201983611148565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061208857508373ffffffffffffffffffffffffffffffffffffffff1661207084610a8b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061209957506120988185611c91565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120c282611148565b73ffffffffffffffffffffffffffffffffffffffff1614612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90613cac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f90613bac565b60405180910390fd5b612193838383612713565b61219e600082611f0b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121ee9190613fab565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122459190613eca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123de828260405180602001604052806000815250612827565b5050565b6123ed8484846120a2565b6123f984848484612882565b612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f90613aec565b60405180910390fd5b50505050565b6060600b805461244d90614095565b80601f016020809104026020016040519081016040528092919081815260200182805461247990614095565b80156124c65780601f1061249b576101008083540402835291602001916124c6565b820191906000526020600020905b8154815290600101906020018083116124a957829003601f168201915b5050505050905090565b60606000821415612518576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061262c565b600082905060005b6000821461254a578080612533906140f8565b915050600a826125439190613f20565b9150612520565b60008167ffffffffffffffff8111156125665761256561425d565b5b6040519080825280601f01601f1916602001820160405280156125985781602001600182028036833780820191505090505b5090505b60008514612625576001826125b19190613fab565b9150600a856125c09190614141565b60306125cc9190613eca565b60f81b8183815181106125e2576125e161422e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561261e9190613f20565b945061259c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061270c575061270b82612a19565b5b9050919050565b61271e838383612a83565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127615761275c81612a88565b6127a0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461279f5761279e8382612ad1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127e3576127de81612c3e565b612822565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612821576128208282612d0f565b5b5b505050565b6128318383612d8e565b61283e6000848484612882565b61287d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287490613aec565b60405180910390fd5b505050565b60006128a38473ffffffffffffffffffffffffffffffffffffffff16612f5c565b15612a0c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128cc611e97565b8786866040518563ffffffff1660e01b81526004016128ee94939291906139d8565b602060405180830381600087803b15801561290857600080fd5b505af192505050801561293957506040513d601f19601f820116820180604052508101906129369190613378565b60015b6129bc573d8060008114612969576040519150601f19603f3d011682016040523d82523d6000602084013e61296e565b606091505b506000815114156129b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ab90613aec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a11565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ade84611348565b612ae89190613fab565b9050600060076000848152602001908152602001600020549050818114612bcd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c529190613fab565b9050600060096000848152602001908152602001600020549050600060088381548110612c8257612c8161422e565b5b906000526020600020015490508060088381548110612ca457612ca361422e565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cf357612cf26141ff565b5b6001900381819060005260206000200160009055905550505050565b6000612d1a83611348565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df590613c6c565b60405180910390fd5b612e0781611e9f565b15612e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3e90613b6c565b60405180910390fd5b612e5360008383612713565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ea39190613eca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612f7b90614095565b90600052602060002090601f016020900481019282612f9d5760008555612fe4565b82601f10612fb657805160ff1916838001178555612fe4565b82800160010185558215612fe4579182015b82811115612fe3578251825591602001919060010190612fc8565b5b509050612ff19190612ff5565b5090565b5b8082111561300e576000816000905550600101612ff6565b5090565b600061302561302084613dcc565b613da7565b90508281526020810184848401111561304157613040614291565b5b61304c848285614053565b509392505050565b600061306761306284613dfd565b613da7565b90508281526020810184848401111561308357613082614291565b5b61308e848285614053565b509392505050565b6000813590506130a58161489d565b92915050565b6000813590506130ba816148b4565b92915050565b6000813590506130cf816148cb565b92915050565b6000815190506130e4816148cb565b92915050565b600082601f8301126130ff576130fe61428c565b5b813561310f848260208601613012565b91505092915050565b600082601f83011261312d5761312c61428c565b5b813561313d848260208601613054565b91505092915050565b600081359050613155816148e2565b92915050565b6000602082840312156131715761317061429b565b5b600061317f84828501613096565b91505092915050565b6000806040838503121561319f5761319e61429b565b5b60006131ad85828601613096565b92505060206131be85828601613096565b9150509250929050565b6000806000606084860312156131e1576131e061429b565b5b60006131ef86828701613096565b935050602061320086828701613096565b925050604061321186828701613146565b9150509250925092565b600080600080608085870312156132355761323461429b565b5b600061324387828801613096565b945050602061325487828801613096565b935050604061326587828801613146565b925050606085013567ffffffffffffffff81111561328657613285614296565b5b613292878288016130ea565b91505092959194509250565b600080604083850312156132b5576132b461429b565b5b60006132c385828601613096565b92505060206132d4858286016130ab565b9150509250929050565b600080604083850312156132f5576132f461429b565b5b600061330385828601613096565b925050602061331485828601613146565b9150509250929050565b6000602082840312156133345761333361429b565b5b6000613342848285016130ab565b91505092915050565b6000602082840312156133615761336061429b565b5b600061336f848285016130c0565b91505092915050565b60006020828403121561338e5761338d61429b565b5b600061339c848285016130d5565b91505092915050565b6000602082840312156133bb576133ba61429b565b5b600082013567ffffffffffffffff8111156133d9576133d8614296565b5b6133e584828501613118565b91505092915050565b6000602082840312156134045761340361429b565b5b600061341284828501613146565b91505092915050565b600080604083850312156134325761343161429b565b5b600061344085828601613146565b925050602061345185828601613146565b9150509250929050565b60006134678383613959565b60208301905092915050565b61347c81613fdf565b82525050565b600061348d82613e53565b6134978185613e81565b93506134a283613e2e565b8060005b838110156134d35781516134ba888261345b565b97506134c583613e74565b9250506001810190506134a6565b5085935050505092915050565b6134e981613ff1565b82525050565b60006134fa82613e5e565b6135048185613e92565b9350613514818560208601614062565b61351d816142a0565b840191505092915050565b600061353382613e69565b61353d8185613eae565b935061354d818560208601614062565b613556816142a0565b840191505092915050565b600061356c82613e69565b6135768185613ebf565b9350613586818560208601614062565b80840191505092915050565b6000815461359f81614095565b6135a98186613ebf565b945060018216600081146135c457600181146135d557613608565b60ff19831686528186019350613608565b6135de85613e3e565b60005b83811015613600578154818901526001820191506020810190506135e1565b838801955050505b50505092915050565b600061361e601383613eae565b9150613629826142b1565b602082019050919050565b6000613641602b83613eae565b915061364c826142da565b604082019050919050565b6000613664603283613eae565b915061366f82614329565b604082019050919050565b6000613687601683613eae565b915061369282614378565b602082019050919050565b60006136aa602083613eae565b91506136b5826143a1565b602082019050919050565b60006136cd602683613eae565b91506136d8826143ca565b604082019050919050565b60006136f0601c83613eae565b91506136fb82614419565b602082019050919050565b6000613713602883613eae565b915061371e82614442565b604082019050919050565b6000613736602483613eae565b915061374182614491565b604082019050919050565b6000613759601983613eae565b9150613764826144e0565b602082019050919050565b600061377c601283613eae565b915061378782614509565b602082019050919050565b600061379f603883613eae565b91506137aa82614532565b604082019050919050565b60006137c2602a83613eae565b91506137cd82614581565b604082019050919050565b60006137e5603083613eae565b91506137f0826145d0565b604082019050919050565b6000613808602083613eae565b91506138138261461f565b602082019050919050565b600061382b602083613eae565b915061383682614648565b602082019050919050565b600061384e602983613eae565b915061385982614671565b604082019050919050565b6000613871602183613eae565b915061387c826146c0565b604082019050919050565b6000613894600083613ea3565b915061389f8261470f565b600082019050919050565b60006138b7603183613eae565b91506138c282614712565b604082019050919050565b60006138da602a83613eae565b91506138e582614761565b604082019050919050565b60006138fd602c83613eae565b9150613908826147b0565b604082019050919050565b6000613920602d83613eae565b915061392b826147ff565b604082019050919050565b6000613943602d83613eae565b915061394e8261484e565b604082019050919050565b61396281614049565b82525050565b61397181614049565b82525050565b60006139838286613561565b915061398f8285613561565b915061399b8284613592565b9150819050949350505050565b60006139b382613887565b9150819050919050565b60006020820190506139d26000830184613473565b92915050565b60006080820190506139ed6000830187613473565b6139fa6020830186613473565b613a076040830185613968565b8181036060830152613a1981846134ef565b905095945050505050565b6000604082019050613a396000830185613473565b613a466020830184613968565b9392505050565b60006020820190508181036000830152613a678184613482565b905092915050565b6000602082019050613a8460008301846134e0565b92915050565b60006020820190508181036000830152613aa48184613528565b905092915050565b60006020820190508181036000830152613ac581613611565b9050919050565b60006020820190508181036000830152613ae581613634565b9050919050565b60006020820190508181036000830152613b0581613657565b9050919050565b60006020820190508181036000830152613b258161367a565b9050919050565b60006020820190508181036000830152613b458161369d565b9050919050565b60006020820190508181036000830152613b65816136c0565b9050919050565b60006020820190508181036000830152613b85816136e3565b9050919050565b60006020820190508181036000830152613ba581613706565b9050919050565b60006020820190508181036000830152613bc581613729565b9050919050565b60006020820190508181036000830152613be58161374c565b9050919050565b60006020820190508181036000830152613c058161376f565b9050919050565b60006020820190508181036000830152613c2581613792565b9050919050565b60006020820190508181036000830152613c45816137b5565b9050919050565b60006020820190508181036000830152613c65816137d8565b9050919050565b60006020820190508181036000830152613c85816137fb565b9050919050565b60006020820190508181036000830152613ca58161381e565b9050919050565b60006020820190508181036000830152613cc581613841565b9050919050565b60006020820190508181036000830152613ce581613864565b9050919050565b60006020820190508181036000830152613d05816138aa565b9050919050565b60006020820190508181036000830152613d25816138cd565b9050919050565b60006020820190508181036000830152613d45816138f0565b9050919050565b60006020820190508181036000830152613d6581613913565b9050919050565b60006020820190508181036000830152613d8581613936565b9050919050565b6000602082019050613da16000830184613968565b92915050565b6000613db1613dc2565b9050613dbd82826140c7565b919050565b6000604051905090565b600067ffffffffffffffff821115613de757613de661425d565b5b613df0826142a0565b9050602081019050919050565b600067ffffffffffffffff821115613e1857613e1761425d565b5b613e21826142a0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ed582614049565b9150613ee083614049565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f1557613f14614172565b5b828201905092915050565b6000613f2b82614049565b9150613f3683614049565b925082613f4657613f456141a1565b5b828204905092915050565b6000613f5c82614049565b9150613f6783614049565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fa057613f9f614172565b5b828202905092915050565b6000613fb682614049565b9150613fc183614049565b925082821015613fd457613fd3614172565b5b828203905092915050565b6000613fea82614029565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614080578082015181840152602081019050614065565b8381111561408f576000848401525b50505050565b600060028204905060018216806140ad57607f821691505b602082108114156140c1576140c06141d0565b5b50919050565b6140d0826142a0565b810181811067ffffffffffffffff821117156140ef576140ee61425d565b5b80604052505050565b600061410382614049565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561413657614135614172565b5b600182019050919050565b600061414c82614049565b915061415783614049565b925082614167576141666141a1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f54686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f596f75206e65656420746f206d696e74206174206c656173742031204e465473600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e7300000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e7300000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e7300000000000000000000000000000000000000602082015250565b6148a681613fdf565b81146148b157600080fd5b50565b6148bd81613ff1565b81146148c857600080fd5b50565b6148d481613ffd565b81146148df57600080fd5b50565b6148eb81614049565b81146148f657600080fd5b5056fea264697066735822122078643a71d84d48f86e03b3f5c6a8ed65285b607fd0d3a6270fb9d8d3ba6502ee64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001142616e64756e67436f6e666572656e6365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442444743000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696575686d377379746270326a796a78686c796d35376472717937327437616466706f626e6962736766676a776a326166323535692f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610800578063d5abeb011461083d578063da3ef23f14610868578063e985e9c514610891578063f2fde38b146108ce57610225565b8063a0712d681461073c578063a22cb46514610758578063b88d4fde14610781578063ba7d2c76146107aa578063c6682862146107d557610225565b8063715018a6116100f2578063715018a61461067b5780637f00c7a6146106925780638da5cb5b146106bb57806395d89b41146106e65780639a7110fe1461071157610225565b80636352211e146105ad5780636c0360eb146105ea5780636c4f06981461061557806370a082311461063e57610225565b806323b872dd116101b1578063438b630011610175578063438b6300146104b657806344a0d68a146104f35780634f6ccce71461051c57806355f804b3146105595780635c975abb1461058257610225565b806323b872dd146103df5780632a55205a146104085780632f745c59146104465780633ccfd60b1461048357806342842e0e1461048d57610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c57806318cae26914610377578063239c70ae146103b457610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061334b565b6108f7565b60405161025e9190613a6f565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061331e565b610960565b005b34801561029c57600080fd5b506102a56109f9565b6040516102b29190613a8a565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906133ee565b610a8b565b6040516102ef91906139bd565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906132de565b610b10565b005b34801561032d57600080fd5b50610336610c28565b6040516103439190613d8c565b60405180910390f35b34801561035857600080fd5b50610361610c2e565b60405161036e9190613d8c565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061315b565b610c3b565b6040516103ab9190613d8c565b60405180910390f35b3480156103c057600080fd5b506103c9610c53565b6040516103d69190613d8c565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906131c8565b610c59565b005b34801561041457600080fd5b5061042f600480360381019061042a919061341b565b610cb9565b60405161043d929190613a24565b60405180910390f35b34801561045257600080fd5b5061046d600480360381019061046891906132de565b610d05565b60405161047a9190613d8c565b60405180910390f35b61048b610daa565b005b34801561049957600080fd5b506104b460048036038101906104af91906131c8565b610eda565b005b3480156104c257600080fd5b506104dd60048036038101906104d8919061315b565b610efa565b6040516104ea9190613a4d565b60405180910390f35b3480156104ff57600080fd5b5061051a600480360381019061051591906133ee565b610fa8565b005b34801561052857600080fd5b50610543600480360381019061053e91906133ee565b61102e565b6040516105509190613d8c565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b91906133a5565b61109f565b005b34801561058e57600080fd5b50610597611135565b6040516105a49190613a6f565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf91906133ee565b611148565b6040516105e191906139bd565b60405180910390f35b3480156105f657600080fd5b506105ff6111fa565b60405161060c9190613a8a565b60405180910390f35b34801561062157600080fd5b5061063c6004803603810190610637919061315b565b611288565b005b34801561064a57600080fd5b506106656004803603810190610660919061315b565b611348565b6040516106729190613d8c565b60405180910390f35b34801561068757600080fd5b50610690611400565b005b34801561069e57600080fd5b506106b960048036038101906106b491906133ee565b611488565b005b3480156106c757600080fd5b506106d061150e565b6040516106dd91906139bd565b60405180910390f35b3480156106f257600080fd5b506106fb611538565b6040516107089190613a8a565b60405180910390f35b34801561071d57600080fd5b506107266115ca565b60405161073391906139bd565b60405180910390f35b610756600480360381019061075191906133ee565b6115f0565b005b34801561076457600080fd5b5061077f600480360381019061077a919061329e565b6118d4565b005b34801561078d57600080fd5b506107a860048036038101906107a3919061321b565b611a55565b005b3480156107b657600080fd5b506107bf611ab7565b6040516107cc9190613d8c565b60405180910390f35b3480156107e157600080fd5b506107ea611abd565b6040516107f79190613a8a565b60405180910390f35b34801561080c57600080fd5b50610827600480360381019061082291906133ee565b611b4b565b6040516108349190613a8a565b60405180910390f35b34801561084957600080fd5b50610852611bf5565b60405161085f9190613d8c565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a91906133a5565b611bfb565b005b34801561089d57600080fd5b506108b860048036038101906108b39190613188565b611c91565b6040516108c59190613a6f565b60405180910390f35b3480156108da57600080fd5b506108f560048036038101906108f0919061315b565b611d25565b005b6000632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141561094f576001905061095b565b61095882611e1d565b90505b919050565b610968611e97565b73ffffffffffffffffffffffffffffffffffffffff1661098661150e565b73ffffffffffffffffffffffffffffffffffffffff16146109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d390613c8c565b60405180910390fd5b80601260146101000a81548160ff02191690831515021790555050565b606060008054610a0890614095565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3490614095565b8015610a815780601f10610a5657610100808354040283529160200191610a81565b820191906000526020600020905b815481529060010190602001808311610a6457829003601f168201915b5050505050905090565b6000610a9682611e9f565b610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90613d6c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1b82611148565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390613ccc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bab611e97565b73ffffffffffffffffffffffffffffffffffffffff161480610bda5750610bd981610bd4611e97565b611c91565b5b610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090613c0c565b60405180910390fd5b610c238383611f0b565b505050565b600d5481565b6000600880549050905090565b60136020528060005260406000206000915090505481565b600f5481565b610c6a610c64611e97565b82611fc4565b610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090613cec565b60405180910390fd5b610cb48383836120a2565b505050565b600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661271060115485610cf09190613f51565b610cfa9190613f20565b915091509250929050565b6000610d1083611348565b8210610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890613acc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660648047610df39190613f51565b610dfd9190613f20565b604051610e09906139a8565b60006040518083038185875af1925050503d8060008114610e46576040519150601f19603f3d011682016040523d82523d6000602084013e610e4b565b606091505b5050905080610e5957600080fd5b6000610e6361150e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e86906139a8565b60006040518083038185875af1925050503d8060008114610ec3576040519150601f19603f3d011682016040523d82523d6000602084013e610ec8565b606091505b5050905080610ed657600080fd5b5050565b610ef583838360405180602001604052806000815250611a55565b505050565b60606000610f0783611348565b905060008167ffffffffffffffff811115610f2557610f2461425d565b5b604051908082528060200260200182016040528015610f535781602001602082028036833780820191505090505b50905060005b82811015610f9d57610f6b8582610d05565b828281518110610f7e57610f7d61422e565b5b6020026020010181815250508080610f95906140f8565b915050610f59565b508092505050919050565b610fb0611e97565b73ffffffffffffffffffffffffffffffffffffffff16610fce61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613c8c565b60405180910390fd5b80600d8190555050565b6000611038610c2e565b8210611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613d2c565b60405180910390fd5b6008828154811061108d5761108c61422e565b5b90600052602060002001549050919050565b6110a7611e97565b73ffffffffffffffffffffffffffffffffffffffff166110c561150e565b73ffffffffffffffffffffffffffffffffffffffff161461111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290613c8c565b60405180910390fd5b80600b9080519060200190611131929190612f6f565b5050565b601260149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613d0c565b60405180910390fd5b80915050919050565b600b805461120790614095565b80601f016020809104026020016040519081016040528092919081815260200182805461123390614095565b80156112805780601f1061125557610100808354040283529160200191611280565b820191906000526020600020905b81548152906001019060200180831161126357829003601f168201915b505050505081565b611290611e97565b73ffffffffffffffffffffffffffffffffffffffff166112ae61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90613c8c565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090613c2c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611408611e97565b73ffffffffffffffffffffffffffffffffffffffff1661142661150e565b73ffffffffffffffffffffffffffffffffffffffff161461147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613c8c565b60405180910390fd5b61148660006122fe565b565b611490611e97565b73ffffffffffffffffffffffffffffffffffffffff166114ae61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90613c8c565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461154790614095565b80601f016020809104026020016040519081016040528092919081815260200182805461157390614095565b80156115c05780601f10611595576101008083540402835291602001916115c0565b820191906000526020600020905b8154815290600101906020018083116115a357829003601f168201915b5050505050905090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260149054906101000a900460ff1615611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790613b0c565b60405180910390fd5b600061164a610c2e565b90506000821161168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168690613b2c565b60405180910390fd5b600f548211156116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb90613b8c565b60405180910390fd5b600e5482826116e39190613eca565b1115611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90613aac565b60405180910390fd5b61172c61150e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611844576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105483826117b19190613eca565b11156117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e990613aac565b60405180910390fd5b82600d546118009190613f51565b341015611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613bec565b60405180910390fd5b505b6000600190505b8281116118cf57601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906118a2906140f8565b91905055506118bc3382846118b79190613eca565b6123c4565b80806118c7906140f8565b91505061184b565b505050565b6118dc611e97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561194a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194190613bcc565b60405180910390fd5b8060056000611957611e97565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a04611e97565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a499190613a6f565b60405180910390a35050565b611a66611a60611e97565b83611fc4565b611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613cec565b60405180910390fd5b611ab1848484846123e2565b50505050565b60105481565b600c8054611aca90614095565b80601f0160208091040260200160405190810160405280929190818152602001828054611af690614095565b8015611b435780601f10611b1857610100808354040283529160200191611b43565b820191906000526020600020905b815481529060010190602001808311611b2657829003601f168201915b505050505081565b6060611b5682611e9f565b611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90613c4c565b60405180910390fd5b6000611b9f61243e565b90506000815111611bbf5760405180602001604052806000815250611bed565b80611bc9846124d0565b600c604051602001611bdd93929190613977565b6040516020818303038152906040525b915050919050565b600e5481565b611c03611e97565b73ffffffffffffffffffffffffffffffffffffffff16611c2161150e565b73ffffffffffffffffffffffffffffffffffffffff1614611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90613c8c565b60405180910390fd5b80600c9080519060200190611c8d929190612f6f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d2d611e97565b73ffffffffffffffffffffffffffffffffffffffff16611d4b61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9890613c8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0890613b4c565b60405180910390fd5b611e1a816122fe565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e905750611e8f82612631565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f7e83611148565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fcf82611e9f565b61200e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200590613d4c565b60405180910390fd5b600061201983611148565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061208857508373ffffffffffffffffffffffffffffffffffffffff1661207084610a8b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061209957506120988185611c91565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120c282611148565b73ffffffffffffffffffffffffffffffffffffffff1614612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90613cac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f90613bac565b60405180910390fd5b612193838383612713565b61219e600082611f0b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121ee9190613fab565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122459190613eca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123de828260405180602001604052806000815250612827565b5050565b6123ed8484846120a2565b6123f984848484612882565b612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f90613aec565b60405180910390fd5b50505050565b6060600b805461244d90614095565b80601f016020809104026020016040519081016040528092919081815260200182805461247990614095565b80156124c65780601f1061249b576101008083540402835291602001916124c6565b820191906000526020600020905b8154815290600101906020018083116124a957829003601f168201915b5050505050905090565b60606000821415612518576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061262c565b600082905060005b6000821461254a578080612533906140f8565b915050600a826125439190613f20565b9150612520565b60008167ffffffffffffffff8111156125665761256561425d565b5b6040519080825280601f01601f1916602001820160405280156125985781602001600182028036833780820191505090505b5090505b60008514612625576001826125b19190613fab565b9150600a856125c09190614141565b60306125cc9190613eca565b60f81b8183815181106125e2576125e161422e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561261e9190613f20565b945061259c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061270c575061270b82612a19565b5b9050919050565b61271e838383612a83565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127615761275c81612a88565b6127a0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461279f5761279e8382612ad1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127e3576127de81612c3e565b612822565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612821576128208282612d0f565b5b5b505050565b6128318383612d8e565b61283e6000848484612882565b61287d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287490613aec565b60405180910390fd5b505050565b60006128a38473ffffffffffffffffffffffffffffffffffffffff16612f5c565b15612a0c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128cc611e97565b8786866040518563ffffffff1660e01b81526004016128ee94939291906139d8565b602060405180830381600087803b15801561290857600080fd5b505af192505050801561293957506040513d601f19601f820116820180604052508101906129369190613378565b60015b6129bc573d8060008114612969576040519150601f19603f3d011682016040523d82523d6000602084013e61296e565b606091505b506000815114156129b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ab90613aec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a11565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ade84611348565b612ae89190613fab565b9050600060076000848152602001908152602001600020549050818114612bcd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c529190613fab565b9050600060096000848152602001908152602001600020549050600060088381548110612c8257612c8161422e565b5b906000526020600020015490508060088381548110612ca457612ca361422e565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cf357612cf26141ff565b5b6001900381819060005260206000200160009055905550505050565b6000612d1a83611348565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df590613c6c565b60405180910390fd5b612e0781611e9f565b15612e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3e90613b6c565b60405180910390fd5b612e5360008383612713565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ea39190613eca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612f7b90614095565b90600052602060002090601f016020900481019282612f9d5760008555612fe4565b82601f10612fb657805160ff1916838001178555612fe4565b82800160010185558215612fe4579182015b82811115612fe3578251825591602001919060010190612fc8565b5b509050612ff19190612ff5565b5090565b5b8082111561300e576000816000905550600101612ff6565b5090565b600061302561302084613dcc565b613da7565b90508281526020810184848401111561304157613040614291565b5b61304c848285614053565b509392505050565b600061306761306284613dfd565b613da7565b90508281526020810184848401111561308357613082614291565b5b61308e848285614053565b509392505050565b6000813590506130a58161489d565b92915050565b6000813590506130ba816148b4565b92915050565b6000813590506130cf816148cb565b92915050565b6000815190506130e4816148cb565b92915050565b600082601f8301126130ff576130fe61428c565b5b813561310f848260208601613012565b91505092915050565b600082601f83011261312d5761312c61428c565b5b813561313d848260208601613054565b91505092915050565b600081359050613155816148e2565b92915050565b6000602082840312156131715761317061429b565b5b600061317f84828501613096565b91505092915050565b6000806040838503121561319f5761319e61429b565b5b60006131ad85828601613096565b92505060206131be85828601613096565b9150509250929050565b6000806000606084860312156131e1576131e061429b565b5b60006131ef86828701613096565b935050602061320086828701613096565b925050604061321186828701613146565b9150509250925092565b600080600080608085870312156132355761323461429b565b5b600061324387828801613096565b945050602061325487828801613096565b935050604061326587828801613146565b925050606085013567ffffffffffffffff81111561328657613285614296565b5b613292878288016130ea565b91505092959194509250565b600080604083850312156132b5576132b461429b565b5b60006132c385828601613096565b92505060206132d4858286016130ab565b9150509250929050565b600080604083850312156132f5576132f461429b565b5b600061330385828601613096565b925050602061331485828601613146565b9150509250929050565b6000602082840312156133345761333361429b565b5b6000613342848285016130ab565b91505092915050565b6000602082840312156133615761336061429b565b5b600061336f848285016130c0565b91505092915050565b60006020828403121561338e5761338d61429b565b5b600061339c848285016130d5565b91505092915050565b6000602082840312156133bb576133ba61429b565b5b600082013567ffffffffffffffff8111156133d9576133d8614296565b5b6133e584828501613118565b91505092915050565b6000602082840312156134045761340361429b565b5b600061341284828501613146565b91505092915050565b600080604083850312156134325761343161429b565b5b600061344085828601613146565b925050602061345185828601613146565b9150509250929050565b60006134678383613959565b60208301905092915050565b61347c81613fdf565b82525050565b600061348d82613e53565b6134978185613e81565b93506134a283613e2e565b8060005b838110156134d35781516134ba888261345b565b97506134c583613e74565b9250506001810190506134a6565b5085935050505092915050565b6134e981613ff1565b82525050565b60006134fa82613e5e565b6135048185613e92565b9350613514818560208601614062565b61351d816142a0565b840191505092915050565b600061353382613e69565b61353d8185613eae565b935061354d818560208601614062565b613556816142a0565b840191505092915050565b600061356c82613e69565b6135768185613ebf565b9350613586818560208601614062565b80840191505092915050565b6000815461359f81614095565b6135a98186613ebf565b945060018216600081146135c457600181146135d557613608565b60ff19831686528186019350613608565b6135de85613e3e565b60005b83811015613600578154818901526001820191506020810190506135e1565b838801955050505b50505092915050565b600061361e601383613eae565b9150613629826142b1565b602082019050919050565b6000613641602b83613eae565b915061364c826142da565b604082019050919050565b6000613664603283613eae565b915061366f82614329565b604082019050919050565b6000613687601683613eae565b915061369282614378565b602082019050919050565b60006136aa602083613eae565b91506136b5826143a1565b602082019050919050565b60006136cd602683613eae565b91506136d8826143ca565b604082019050919050565b60006136f0601c83613eae565b91506136fb82614419565b602082019050919050565b6000613713602883613eae565b915061371e82614442565b604082019050919050565b6000613736602483613eae565b915061374182614491565b604082019050919050565b6000613759601983613eae565b9150613764826144e0565b602082019050919050565b600061377c601283613eae565b915061378782614509565b602082019050919050565b600061379f603883613eae565b91506137aa82614532565b604082019050919050565b60006137c2602a83613eae565b91506137cd82614581565b604082019050919050565b60006137e5603083613eae565b91506137f0826145d0565b604082019050919050565b6000613808602083613eae565b91506138138261461f565b602082019050919050565b600061382b602083613eae565b915061383682614648565b602082019050919050565b600061384e602983613eae565b915061385982614671565b604082019050919050565b6000613871602183613eae565b915061387c826146c0565b604082019050919050565b6000613894600083613ea3565b915061389f8261470f565b600082019050919050565b60006138b7603183613eae565b91506138c282614712565b604082019050919050565b60006138da602a83613eae565b91506138e582614761565b604082019050919050565b60006138fd602c83613eae565b9150613908826147b0565b604082019050919050565b6000613920602d83613eae565b915061392b826147ff565b604082019050919050565b6000613943602d83613eae565b915061394e8261484e565b604082019050919050565b61396281614049565b82525050565b61397181614049565b82525050565b60006139838286613561565b915061398f8285613561565b915061399b8284613592565b9150819050949350505050565b60006139b382613887565b9150819050919050565b60006020820190506139d26000830184613473565b92915050565b60006080820190506139ed6000830187613473565b6139fa6020830186613473565b613a076040830185613968565b8181036060830152613a1981846134ef565b905095945050505050565b6000604082019050613a396000830185613473565b613a466020830184613968565b9392505050565b60006020820190508181036000830152613a678184613482565b905092915050565b6000602082019050613a8460008301846134e0565b92915050565b60006020820190508181036000830152613aa48184613528565b905092915050565b60006020820190508181036000830152613ac581613611565b9050919050565b60006020820190508181036000830152613ae581613634565b9050919050565b60006020820190508181036000830152613b0581613657565b9050919050565b60006020820190508181036000830152613b258161367a565b9050919050565b60006020820190508181036000830152613b458161369d565b9050919050565b60006020820190508181036000830152613b65816136c0565b9050919050565b60006020820190508181036000830152613b85816136e3565b9050919050565b60006020820190508181036000830152613ba581613706565b9050919050565b60006020820190508181036000830152613bc581613729565b9050919050565b60006020820190508181036000830152613be58161374c565b9050919050565b60006020820190508181036000830152613c058161376f565b9050919050565b60006020820190508181036000830152613c2581613792565b9050919050565b60006020820190508181036000830152613c45816137b5565b9050919050565b60006020820190508181036000830152613c65816137d8565b9050919050565b60006020820190508181036000830152613c85816137fb565b9050919050565b60006020820190508181036000830152613ca58161381e565b9050919050565b60006020820190508181036000830152613cc581613841565b9050919050565b60006020820190508181036000830152613ce581613864565b9050919050565b60006020820190508181036000830152613d05816138aa565b9050919050565b60006020820190508181036000830152613d25816138cd565b9050919050565b60006020820190508181036000830152613d45816138f0565b9050919050565b60006020820190508181036000830152613d6581613913565b9050919050565b60006020820190508181036000830152613d8581613936565b9050919050565b6000602082019050613da16000830184613968565b92915050565b6000613db1613dc2565b9050613dbd82826140c7565b919050565b6000604051905090565b600067ffffffffffffffff821115613de757613de661425d565b5b613df0826142a0565b9050602081019050919050565b600067ffffffffffffffff821115613e1857613e1761425d565b5b613e21826142a0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ed582614049565b9150613ee083614049565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f1557613f14614172565b5b828201905092915050565b6000613f2b82614049565b9150613f3683614049565b925082613f4657613f456141a1565b5b828204905092915050565b6000613f5c82614049565b9150613f6783614049565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fa057613f9f614172565b5b828202905092915050565b6000613fb682614049565b9150613fc183614049565b925082821015613fd457613fd3614172565b5b828203905092915050565b6000613fea82614029565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614080578082015181840152602081019050614065565b8381111561408f576000848401525b50505050565b600060028204905060018216806140ad57607f821691505b602082108114156140c1576140c06141d0565b5b50919050565b6140d0826142a0565b810181811067ffffffffffffffff821117156140ef576140ee61425d565b5b80604052505050565b600061410382614049565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561413657614135614172565b5b600182019050919050565b600061414c82614049565b915061415783614049565b925082614167576141666141a1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f54686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f596f75206e65656420746f206d696e74206174206c656173742031204e465473600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e7300000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e7300000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e7300000000000000000000000000000000000000602082015250565b6148a681613fdf565b81146148b157600080fd5b50565b6148bd81613ff1565b81146148c857600080fd5b50565b6148d481613ffd565b81146148df57600080fd5b50565b6148eb81614049565b81146148f657600080fd5b5056fea264697066735822122078643a71d84d48f86e03b3f5c6a8ed65285b607fd0d3a6270fb9d8d3ba6502ee64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001142616e64756e67436f6e666572656e6365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442444743000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696575686d377379746270326a796a78686c796d35376472717937327437616466706f626e6962736766676a776a326166323535692f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): BandungConference
Arg [1] : _symbol (string): BDGC
Arg [2] : _initBaseURI (string): ipfs://bafybeieuhm7sytbp2jyjxhlym57drqy72t7adfpobnibsgfgjwj2af255i/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 42616e64756e67436f6e666572656e6365000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4244474300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f626166796265696575686d377379746270326a796a78686c79
Arg [9] : 6d35376472717937327437616466706f626e6962736766676a776a3261663235
Arg [10] : 35692f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43157:4778:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46610:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47569:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24115:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23638:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43326:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35306:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43717:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43400:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25006:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46360:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;34974:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47658:274;;;:::i;:::-;;25416:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45469:382;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47095:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35496:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47319:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43615:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22248:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43254:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46933:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21978:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42455:94;;;;;;;;;;;;;:::i;:::-;;47189:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41804:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22724:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43523:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44603:856;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24409:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25672:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43439:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43282:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45859:476;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43364:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47431:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24775:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42704:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46610:296;46740:4;43698:10;46780:21;;46765:36;;;:11;:36;;;;46761:80;;;46825:4;46818:11;;;;46761:80;46862:36;46886:11;46862:23;:36::i;:::-;46855:43;;46610:296;;;;:::o;47569:79::-;42035:12;:10;:12::i;:::-;42024:23;;:7;:5;:7::i;:::-;:23;;;42016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47634:6:::1;47625;;:15;;;;;;;;;;;;;;;;;;47569:79:::0;:::o;22555:100::-;22609:13;22642:5;22635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22555:100;:::o;24115:222::-;24191:7;24219:16;24227:7;24219;:16::i;:::-;24211:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24305:15;:24;24321:7;24305:24;;;;;;;;;;;;;;;;;;;;;24298:31;;24115:222;;;:::o;23638:411::-;23719:13;23735:23;23750:7;23735:14;:23::i;:::-;23719:39;;23783:5;23777:11;;:2;:11;;;;23769:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23877:5;23861:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23886:37;23903:5;23910:12;:10;:12::i;:::-;23886:16;:37::i;:::-;23861:62;23839:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24020:21;24029:2;24033:7;24020:8;:21::i;:::-;23708:341;23638:411;;:::o;43326:31::-;;;;:::o;35306:113::-;35367:7;35394:10;:17;;;;35387:24;;35306:113;:::o;43717:55::-;;;;;;;;;;;;;;;;;:::o;43400:32::-;;;;:::o;25006:339::-;25201:41;25220:12;:10;:12::i;:::-;25234:7;25201:18;:41::i;:::-;25193:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25309:28;25319:4;25325:2;25329:7;25309:9;:28::i;:::-;25006:339;;;:::o;46360:242::-;46470:16;46488:21;46530:22;;;;;;;;;;;46587:5;46569:14;;46556:10;:27;;;;:::i;:::-;46555:37;;;;:::i;:::-;46522:72;;;;46360:242;;;;;:::o;34974:256::-;35071:7;35107:23;35124:5;35107:16;:23::i;:::-;35099:5;:31;35091:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35196:12;:19;35209:5;35196:19;;;;;;;;;;;;;;;:26;35216:5;35196:26;;;;;;;;;;;;35189:33;;34974:256;;;;:::o;47658:274::-;47705:7;47726:22;;;;;;;;;;;47718:36;;47792:3;47786;47762:21;:27;;;;:::i;:::-;:33;;;;:::i;:::-;47718:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47704:96;;;47819:2;47811:11;;;;;;47834:7;47855;:5;:7::i;:::-;47847:21;;47876;47847:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47833:69;;;47921:2;47913:11;;;;;;47693:239;;47658:274::o;25416:185::-;25554:39;25571:4;25577:2;25581:7;25554:39;;;;;;;;;;;;:16;:39::i;:::-;25416:185;;;:::o;45469:382::-;45556:16;45590:23;45616:17;45626:6;45616:9;:17::i;:::-;45590:43;;45644:25;45686:15;45672:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45644:58;;45718:9;45713:105;45733:15;45729:1;:19;45713:105;;;45780:30;45800:6;45808:1;45780:19;:30::i;:::-;45766:8;45775:1;45766:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;45750:3;;;;;:::i;:::-;;;;45713:105;;;;45835:8;45828:15;;;;45469:382;;;:::o;47095:86::-;42035:12;:10;:12::i;:::-;42024:23;;:7;:5;:7::i;:::-;:23;;;42016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47165:8:::1;47158:4;:15;;;;47095:86:::0;:::o;35496:233::-;35571:7;35607:30;:28;:30::i;:::-;35599:5;:38;35591:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35704:10;35715:5;35704:17;;;;;;;;:::i;:::-;;;;;;;;;;35697:24;;35496:233;;;:::o;47319:104::-;42035:12;:10;:12::i;:::-;42024:23;;:7;:5;:7::i;:::-;:23;;;42016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47404:11:::1;47394:7;:21;;;;;;;;;;;;:::i;:::-;;47319:104:::0;:::o;43615:26::-;;;;;;;;;;;;;:::o;22248:240::-;22320:7;22340:13;22356:7;:16;22364:7;22356:16;;;;;;;;;;;;;;;;;;;;;22340:32;;22408:1;22391:19;;:5;:19;;;;22383:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22475:5;22468:12;;;22248:240;;;:::o;43254:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46933:154::-;42035:12;:10;:12::i;:::-;42024:23;;:7;:5;:7::i;:::-;:23;;;42016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47056:23:::1;47031:22;;:48;;;;;;;;;;;;;;;;;;46933:154:::0;:::o;21978:208::-;22050:7;22095:1;22078:19;;:5;:19;;;;22070:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22162:9;:16;22172:5;22162:16;;;;;;;;;;;;;;;;22155:23;;21978:208;;;:::o;42455:94::-;42035:12;:10;:12::i;:::-;42024:23;;:7;:5;:7::i;:::-;:23;;;42016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42520:21:::1;42538:1;42520:9;:21::i;:::-;42455:94::o:0;47189:122::-;42035:12;:10;:12::i;:::-;42024:23;;:7;:5;:7::i;:::-;:23;;;42016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47286:17:::1;47270:13;:33;;;;47189:122:::0;:::o;41804:87::-;41850:7;41877:6;;;;;;;;;;;41870:13;;41804:87;:::o;22724:104::-;22780:13;22813:7;22806:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22724:104;:::o;43523:83::-;;;;;;;;;;;;;:::o;44603:856::-;44673:6;;;;;;;;;;;44672:7;44664:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;44717:14;44734:13;:11;:13::i;:::-;44717:30;;44780:1;44766:11;:15;44758:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;44852:13;;44837:11;:28;;44829:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;44953:9;;44938:11;44929:6;:20;;;;:::i;:::-;:33;;44921:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;45017:7;:5;:7::i;:::-;45003:21;;:10;:21;;;44999:289;;45041:24;45068:20;:32;45089:10;45068:32;;;;;;;;;;;;;;;;45041:59;;45157:18;;45142:11;45123:16;:30;;;;:::i;:::-;:52;;45115:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;45242:11;45235:4;;:18;;;;:::i;:::-;45222:9;:31;;45214:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45026:262;44999:289;45305:9;45317:1;45305:13;;45300:152;45325:11;45320:1;:16;45300:152;;45358:20;:32;45379:10;45358:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;45407:33;45417:10;45438:1;45429:6;:10;;;;:::i;:::-;45407:9;:33::i;:::-;45338:3;;;;;:::i;:::-;;;;45300:152;;;;44653:806;44603:856;:::o;24409:295::-;24524:12;:10;:12::i;:::-;24512:24;;:8;:24;;;;24504:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24624:8;24579:18;:32;24598:12;:10;:12::i;:::-;24579:32;;;;;;;;;;;;;;;:42;24612:8;24579:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24677:8;24648:48;;24663:12;:10;:12::i;:::-;24648:48;;;24687:8;24648:48;;;;;;:::i;:::-;;;;;;;;24409:295;;:::o;25672:328::-;25847:41;25866:12;:10;:12::i;:::-;25880:7;25847:18;:41::i;:::-;25839:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25953:39;25967:4;25973:2;25977:7;25986:5;25953:13;:39::i;:::-;25672:328;;;;:::o;43439:38::-;;;;:::o;43282:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45859:476::-;45977:13;46026:16;46034:7;46026;:16::i;:::-;46008:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;46127:28;46158:10;:8;:10::i;:::-;46127:41;;46217:1;46192:14;46186:28;:32;:141;;;;;;;;;;;;;;;;;46258:14;46274:18;:7;:16;:18::i;:::-;46294:13;46241:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46186:141;46179:148;;;45859:476;;;:::o;43364:29::-;;;;:::o;47431:128::-;42035:12;:10;:12::i;:::-;42024:23;;:7;:5;:7::i;:::-;:23;;;42016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47534:17:::1;47518:13;:33;;;;;;;;;;;;:::i;:::-;;47431:128:::0;:::o;24775:164::-;24872:4;24896:18;:25;24915:5;24896:25;;;;;;;;;;;;;;;:35;24922:8;24896:35;;;;;;;;;;;;;;;;;;;;;;;;;24889:42;;24775:164;;;;:::o;42704:192::-;42035:12;:10;:12::i;:::-;42024:23;;:7;:5;:7::i;:::-;:23;;;42016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42813:1:::1;42793:22;;:8;:22;;;;42785:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42869:19;42879:8;42869:9;:19::i;:::-;42704:192:::0;:::o;34666:224::-;34768:4;34807:35;34792:50;;;:11;:50;;;;:90;;;;34846:36;34870:11;34846:23;:36::i;:::-;34792:90;34785:97;;34666:224;;;:::o;20083:98::-;20136:7;20163:10;20156:17;;20083:98;:::o;27510:127::-;27575:4;27627:1;27599:30;;:7;:16;27607:7;27599:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27592:37;;27510:127;;;:::o;31493:174::-;31595:2;31568:15;:24;31584:7;31568:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31651:7;31647:2;31613:46;;31622:23;31637:7;31622:14;:23::i;:::-;31613:46;;;;;;;;;;;;31493:174;;:::o;27804:349::-;27897:4;27922:16;27930:7;27922;:16::i;:::-;27914:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27999:13;28015:23;28030:7;28015:14;:23::i;:::-;27999:39;;28068:5;28057:16;;:7;:16;;;:51;;;;28101:7;28077:31;;:20;28089:7;28077:11;:20::i;:::-;:31;;;28057:51;:87;;;;28112:32;28129:5;28136:7;28112:16;:32::i;:::-;28057:87;28049:96;;;27804:349;;;;:::o;30797:578::-;30956:4;30929:31;;:23;30944:7;30929:14;:23::i;:::-;:31;;;30921:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31039:1;31025:16;;:2;:16;;;;31017:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31095:39;31116:4;31122:2;31126:7;31095:20;:39::i;:::-;31199:29;31216:1;31220:7;31199:8;:29::i;:::-;31260:1;31241:9;:15;31251:4;31241:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31289:1;31272:9;:13;31282:2;31272:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31320:2;31301:7;:16;31309:7;31301:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31359:7;31355:2;31340:27;;31349:4;31340:27;;;;;;;;;;;;30797:578;;;:::o;42904:173::-;42960:16;42979:6;;;;;;;;;;;42960:25;;43005:8;42996:6;;:17;;;;;;;;;;;;;;;;;;43060:8;43029:40;;43050:8;43029:40;;;;;;;;;;;;42949:128;42904:173;:::o;28495:110::-;28571:26;28581:2;28585:7;28571:26;;;;;;;;;;;;:9;:26::i;:::-;28495:110;;:::o;26882:315::-;27039:28;27049:4;27055:2;27059:7;27039:9;:28::i;:::-;27086:48;27109:4;27115:2;27119:7;27128:5;27086:22;:48::i;:::-;27078:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26882:315;;;;:::o;44023:108::-;44083:13;44116:7;44109:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44023:108;:::o;7915:723::-;7971:13;8201:1;8192:5;:10;8188:53;;;8219:10;;;;;;;;;;;;;;;;;;;;;8188:53;8251:12;8266:5;8251:20;;8282:14;8307:78;8322:1;8314:4;:9;8307:78;;8340:8;;;;;:::i;:::-;;;;8371:2;8363:10;;;;;:::i;:::-;;;8307:78;;;8395:19;8427:6;8417:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8395:39;;8445:154;8461:1;8452:5;:10;8445:154;;8489:1;8479:11;;;;;:::i;:::-;;;8556:2;8548:5;:10;;;;:::i;:::-;8535:2;:24;;;;:::i;:::-;8522:39;;8505:6;8512;8505:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8585:2;8576:11;;;;;:::i;:::-;;;8445:154;;;8623:6;8609:21;;;;;7915:723;;;;:::o;21609:305::-;21711:4;21763:25;21748:40;;;:11;:40;;;;:105;;;;21820:33;21805:48;;;:11;:48;;;;21748:105;:158;;;;21870:36;21894:11;21870:23;:36::i;:::-;21748:158;21728:178;;21609:305;;;:::o;36342:589::-;36486:45;36513:4;36519:2;36523:7;36486:26;:45::i;:::-;36564:1;36548:18;;:4;:18;;;36544:187;;;36583:40;36615:7;36583:31;:40::i;:::-;36544:187;;;36653:2;36645:10;;:4;:10;;;36641:90;;36672:47;36705:4;36711:7;36672:32;:47::i;:::-;36641:90;36544:187;36759:1;36745:16;;:2;:16;;;36741:183;;;36778:45;36815:7;36778:36;:45::i;:::-;36741:183;;;36851:4;36845:10;;:2;:10;;;36841:83;;36872:40;36900:2;36904:7;36872:27;:40::i;:::-;36841:83;36741:183;36342:589;;;:::o;28832:321::-;28962:18;28968:2;28972:7;28962:5;:18::i;:::-;29013:54;29044:1;29048:2;29052:7;29061:5;29013:22;:54::i;:::-;28991:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28832:321;;;:::o;32232:799::-;32387:4;32408:15;:2;:13;;;:15::i;:::-;32404:620;;;32460:2;32444:36;;;32481:12;:10;:12::i;:::-;32495:4;32501:7;32510:5;32444:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32703:1;32686:6;:13;:18;32682:272;;;32729:60;;;;;;;;;;:::i;:::-;;;;;;;;32682:272;32904:6;32898:13;32889:6;32885:2;32881:15;32874:38;32440:529;32577:41;;;32567:51;;;:6;:51;;;;32560:58;;;;;32404:620;33008:4;33001:11;;32232:799;;;;;;;:::o;7440:157::-;7525:4;7564:25;7549:40;;;:11;:40;;;;7542:47;;7440:157;;;:::o;33603:126::-;;;;:::o;37654:164::-;37758:10;:17;;;;37731:15;:24;37747:7;37731:24;;;;;;;;;;;:44;;;;37786:10;37802:7;37786:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37654:164;:::o;38445:988::-;38711:22;38761:1;38736:22;38753:4;38736:16;:22::i;:::-;:26;;;;:::i;:::-;38711:51;;38773:18;38794:17;:26;38812:7;38794:26;;;;;;;;;;;;38773:47;;38941:14;38927:10;:28;38923:328;;38972:19;38994:12;:18;39007:4;38994:18;;;;;;;;;;;;;;;:34;39013:14;38994:34;;;;;;;;;;;;38972:56;;39078:11;39045:12;:18;39058:4;39045:18;;;;;;;;;;;;;;;:30;39064:10;39045:30;;;;;;;;;;;:44;;;;39195:10;39162:17;:30;39180:11;39162:30;;;;;;;;;;;:43;;;;38957:294;38923:328;39347:17;:26;39365:7;39347:26;;;;;;;;;;;39340:33;;;39391:12;:18;39404:4;39391:18;;;;;;;;;;;;;;;:34;39410:14;39391:34;;;;;;;;;;;39384:41;;;38526:907;;38445:988;;:::o;39728:1079::-;39981:22;40026:1;40006:10;:17;;;;:21;;;;:::i;:::-;39981:46;;40038:18;40059:15;:24;40075:7;40059:24;;;;;;;;;;;;40038:45;;40410:19;40432:10;40443:14;40432:26;;;;;;;;:::i;:::-;;;;;;;;;;40410:48;;40496:11;40471:10;40482;40471:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40607:10;40576:15;:28;40592:11;40576:28;;;;;;;;;;;:41;;;;40748:15;:24;40764:7;40748:24;;;;;;;;;;;40741:31;;;40783:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39799:1008;;;39728:1079;:::o;37232:221::-;37317:14;37334:20;37351:2;37334:16;:20::i;:::-;37317:37;;37392:7;37365:12;:16;37378:2;37365:16;;;;;;;;;;;;;;;:24;37382:6;37365:24;;;;;;;;;;;:34;;;;37439:6;37410:17;:26;37428:7;37410:26;;;;;;;;;;;:35;;;;37306:147;37232:221;;:::o;29489:382::-;29583:1;29569:16;;:2;:16;;;;29561:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29642:16;29650:7;29642;:16::i;:::-;29641:17;29633:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29704:45;29733:1;29737:2;29741:7;29704:20;:45::i;:::-;29779:1;29762:9;:13;29772:2;29762:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29810:2;29791:7;:16;29799:7;29791:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29855:7;29851:2;29830:33;;29847:1;29830:33;;;;;;;;;;;;29489:382;;:::o;10440:387::-;10500:4;10708:12;10775:7;10763:20;10755:28;;10818:1;10811:4;:8;10804:15;;;10440:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:::-;16503:3;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16600:93;16689:3;16600:93;:::i;:::-;16718:2;16713:3;16709:12;16702:19;;16361:366;;;:::o;16733:::-;16875:3;16896:67;16960:2;16955:3;16896:67;:::i;:::-;16889:74;;16972:93;17061:3;16972:93;:::i;:::-;17090:2;17085:3;17081:12;17074:19;;16733:366;;;:::o;17105:::-;17247:3;17268:67;17332:2;17327:3;17268:67;:::i;:::-;17261:74;;17344:93;17433:3;17344:93;:::i;:::-;17462:2;17457:3;17453:12;17446:19;;17105:366;;;:::o;17477:::-;17619:3;17640:67;17704:2;17699:3;17640:67;:::i;:::-;17633:74;;17716:93;17805:3;17716:93;:::i;:::-;17834:2;17829:3;17825:12;17818:19;;17477:366;;;:::o;17849:398::-;18008:3;18029:83;18110:1;18105:3;18029:83;:::i;:::-;18022:90;;18121:93;18210:3;18121:93;:::i;:::-;18239:1;18234:3;18230:11;18223:18;;17849:398;;;:::o;18253:366::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:::-;18767:3;18788:67;18852:2;18847:3;18788:67;:::i;:::-;18781:74;;18864:93;18953:3;18864:93;:::i;:::-;18982:2;18977:3;18973:12;18966:19;;18625:366;;;:::o;18997:::-;19139:3;19160:67;19224:2;19219:3;19160:67;:::i;:::-;19153:74;;19236:93;19325:3;19236:93;:::i;:::-;19354:2;19349:3;19345:12;19338:19;;18997:366;;;:::o;19369:::-;19511:3;19532:67;19596:2;19591:3;19532:67;:::i;:::-;19525:74;;19608:93;19697:3;19608:93;:::i;:::-;19726:2;19721:3;19717:12;19710:19;;19369:366;;;:::o;19741:::-;19883:3;19904:67;19968:2;19963:3;19904:67;:::i;:::-;19897:74;;19980:93;20069:3;19980:93;:::i;:::-;20098:2;20093:3;20089:12;20082:19;;19741:366;;;:::o;20113:108::-;20190:24;20208:5;20190:24;:::i;:::-;20185:3;20178:37;20113:108;;:::o;20227:118::-;20314:24;20332:5;20314:24;:::i;:::-;20309:3;20302:37;20227:118;;:::o;20351:589::-;20576:3;20598:95;20689:3;20680:6;20598:95;:::i;:::-;20591:102;;20710:95;20801:3;20792:6;20710:95;:::i;:::-;20703:102;;20822:92;20910:3;20901:6;20822:92;:::i;:::-;20815:99;;20931:3;20924:10;;20351:589;;;;;;:::o;20946:379::-;21130:3;21152:147;21295:3;21152:147;:::i;:::-;21145:154;;21316:3;21309:10;;20946:379;;;:::o;21331:222::-;21424:4;21462:2;21451:9;21447:18;21439:26;;21475:71;21543:1;21532:9;21528:17;21519:6;21475:71;:::i;:::-;21331:222;;;;:::o;21559:640::-;21754:4;21792:3;21781:9;21777:19;21769:27;;21806:71;21874:1;21863:9;21859:17;21850:6;21806:71;:::i;:::-;21887:72;21955:2;21944:9;21940:18;21931:6;21887:72;:::i;:::-;21969;22037:2;22026:9;22022:18;22013:6;21969:72;:::i;:::-;22088:9;22082:4;22078:20;22073:2;22062:9;22058:18;22051:48;22116:76;22187:4;22178:6;22116:76;:::i;:::-;22108:84;;21559:640;;;;;;;:::o;22205:332::-;22326:4;22364:2;22353:9;22349:18;22341:26;;22377:71;22445:1;22434:9;22430:17;22421:6;22377:71;:::i;:::-;22458:72;22526:2;22515:9;22511:18;22502:6;22458:72;:::i;:::-;22205:332;;;;;:::o;22543:373::-;22686:4;22724:2;22713:9;22709:18;22701:26;;22773:9;22767:4;22763:20;22759:1;22748:9;22744:17;22737:47;22801:108;22904:4;22895:6;22801:108;:::i;:::-;22793:116;;22543:373;;;;:::o;22922:210::-;23009:4;23047:2;23036:9;23032:18;23024:26;;23060:65;23122:1;23111:9;23107:17;23098:6;23060:65;:::i;:::-;22922:210;;;;:::o;23138:313::-;23251:4;23289:2;23278:9;23274:18;23266:26;;23338:9;23332:4;23328:20;23324:1;23313:9;23309:17;23302:47;23366:78;23439:4;23430:6;23366:78;:::i;:::-;23358:86;;23138:313;;;;:::o;23457:419::-;23623:4;23661:2;23650:9;23646:18;23638:26;;23710:9;23704:4;23700:20;23696:1;23685:9;23681:17;23674:47;23738:131;23864:4;23738:131;:::i;:::-;23730:139;;23457:419;;;:::o;23882:::-;24048:4;24086:2;24075:9;24071:18;24063:26;;24135:9;24129:4;24125:20;24121:1;24110:9;24106:17;24099:47;24163:131;24289:4;24163:131;:::i;:::-;24155:139;;23882:419;;;:::o;24307:::-;24473:4;24511:2;24500:9;24496:18;24488:26;;24560:9;24554:4;24550:20;24546:1;24535:9;24531:17;24524:47;24588:131;24714:4;24588:131;:::i;:::-;24580:139;;24307:419;;;:::o;24732:::-;24898:4;24936:2;24925:9;24921:18;24913:26;;24985:9;24979:4;24975:20;24971:1;24960:9;24956:17;24949:47;25013:131;25139:4;25013:131;:::i;:::-;25005:139;;24732:419;;;:::o;25157:::-;25323:4;25361:2;25350:9;25346:18;25338:26;;25410:9;25404:4;25400:20;25396:1;25385:9;25381:17;25374:47;25438:131;25564:4;25438:131;:::i;:::-;25430:139;;25157:419;;;:::o;25582:::-;25748:4;25786:2;25775:9;25771:18;25763:26;;25835:9;25829:4;25825:20;25821:1;25810:9;25806:17;25799:47;25863:131;25989:4;25863:131;:::i;:::-;25855:139;;25582:419;;;:::o;26007:::-;26173:4;26211:2;26200:9;26196:18;26188:26;;26260:9;26254:4;26250:20;26246:1;26235:9;26231:17;26224:47;26288:131;26414:4;26288:131;:::i;:::-;26280:139;;26007:419;;;:::o;26432:::-;26598:4;26636:2;26625:9;26621:18;26613:26;;26685:9;26679:4;26675:20;26671:1;26660:9;26656:17;26649:47;26713:131;26839:4;26713:131;:::i;:::-;26705:139;;26432:419;;;:::o;26857:::-;27023:4;27061:2;27050:9;27046:18;27038:26;;27110:9;27104:4;27100:20;27096:1;27085:9;27081:17;27074:47;27138:131;27264:4;27138:131;:::i;:::-;27130:139;;26857:419;;;:::o;27282:::-;27448:4;27486:2;27475:9;27471:18;27463:26;;27535:9;27529:4;27525:20;27521:1;27510:9;27506:17;27499:47;27563:131;27689:4;27563:131;:::i;:::-;27555:139;;27282:419;;;:::o;27707:::-;27873:4;27911:2;27900:9;27896:18;27888:26;;27960:9;27954:4;27950:20;27946:1;27935:9;27931:17;27924:47;27988:131;28114:4;27988:131;:::i;:::-;27980:139;;27707:419;;;:::o;28132:::-;28298:4;28336:2;28325:9;28321:18;28313:26;;28385:9;28379:4;28375:20;28371:1;28360:9;28356:17;28349:47;28413:131;28539:4;28413:131;:::i;:::-;28405:139;;28132:419;;;:::o;28557:::-;28723:4;28761:2;28750:9;28746:18;28738:26;;28810:9;28804:4;28800:20;28796:1;28785:9;28781:17;28774:47;28838:131;28964:4;28838:131;:::i;:::-;28830:139;;28557:419;;;:::o;28982:::-;29148:4;29186:2;29175:9;29171:18;29163:26;;29235:9;29229:4;29225:20;29221:1;29210:9;29206:17;29199:47;29263:131;29389:4;29263:131;:::i;:::-;29255:139;;28982:419;;;:::o;29407:::-;29573:4;29611:2;29600:9;29596:18;29588:26;;29660:9;29654:4;29650:20;29646:1;29635:9;29631:17;29624:47;29688:131;29814:4;29688:131;:::i;:::-;29680:139;;29407:419;;;:::o;29832:::-;29998:4;30036:2;30025:9;30021:18;30013:26;;30085:9;30079:4;30075:20;30071:1;30060:9;30056:17;30049:47;30113:131;30239:4;30113:131;:::i;:::-;30105:139;;29832:419;;;:::o;30257:::-;30423:4;30461:2;30450:9;30446:18;30438:26;;30510:9;30504:4;30500:20;30496:1;30485:9;30481:17;30474:47;30538:131;30664:4;30538:131;:::i;:::-;30530:139;;30257:419;;;:::o;30682:::-;30848:4;30886:2;30875:9;30871:18;30863:26;;30935:9;30929:4;30925:20;30921:1;30910:9;30906:17;30899:47;30963:131;31089:4;30963:131;:::i;:::-;30955:139;;30682:419;;;:::o;31107:::-;31273:4;31311:2;31300:9;31296:18;31288:26;;31360:9;31354:4;31350:20;31346:1;31335:9;31331:17;31324:47;31388:131;31514:4;31388:131;:::i;:::-;31380:139;;31107:419;;;:::o;31532:::-;31698:4;31736:2;31725:9;31721:18;31713:26;;31785:9;31779:4;31775:20;31771:1;31760:9;31756:17;31749:47;31813:131;31939:4;31813:131;:::i;:::-;31805:139;;31532:419;;;:::o;31957:::-;32123:4;32161:2;32150:9;32146:18;32138:26;;32210:9;32204:4;32200:20;32196:1;32185:9;32181:17;32174:47;32238:131;32364:4;32238:131;:::i;:::-;32230:139;;31957:419;;;:::o;32382:::-;32548:4;32586:2;32575:9;32571:18;32563:26;;32635:9;32629:4;32625:20;32621:1;32610:9;32606:17;32599:47;32663:131;32789:4;32663:131;:::i;:::-;32655:139;;32382:419;;;:::o;32807:::-;32973:4;33011:2;33000:9;32996:18;32988:26;;33060:9;33054:4;33050:20;33046:1;33035:9;33031:17;33024:47;33088:131;33214:4;33088:131;:::i;:::-;33080:139;;32807:419;;;:::o;33232:222::-;33325:4;33363:2;33352:9;33348:18;33340:26;;33376:71;33444:1;33433:9;33429:17;33420:6;33376:71;:::i;:::-;33232:222;;;;:::o;33460:129::-;33494:6;33521:20;;:::i;:::-;33511:30;;33550:33;33578:4;33570:6;33550:33;:::i;:::-;33460:129;;;:::o;33595:75::-;33628:6;33661:2;33655:9;33645:19;;33595:75;:::o;33676:307::-;33737:4;33827:18;33819:6;33816:30;33813:56;;;33849:18;;:::i;:::-;33813:56;33887:29;33909:6;33887:29;:::i;:::-;33879:37;;33971:4;33965;33961:15;33953:23;;33676:307;;;:::o;33989:308::-;34051:4;34141:18;34133:6;34130:30;34127:56;;;34163:18;;:::i;:::-;34127:56;34201:29;34223:6;34201:29;:::i;:::-;34193:37;;34285:4;34279;34275:15;34267:23;;33989:308;;;:::o;34303:132::-;34370:4;34393:3;34385:11;;34423:4;34418:3;34414:14;34406:22;;34303:132;;;:::o;34441:141::-;34490:4;34513:3;34505:11;;34536:3;34533:1;34526:14;34570:4;34567:1;34557:18;34549:26;;34441:141;;;:::o;34588:114::-;34655:6;34689:5;34683:12;34673:22;;34588:114;;;:::o;34708:98::-;34759:6;34793:5;34787:12;34777:22;;34708:98;;;:::o;34812:99::-;34864:6;34898:5;34892:12;34882:22;;34812:99;;;:::o;34917:113::-;34987:4;35019;35014:3;35010:14;35002:22;;34917:113;;;:::o;35036:184::-;35135:11;35169:6;35164:3;35157:19;35209:4;35204:3;35200:14;35185:29;;35036:184;;;;:::o;35226:168::-;35309:11;35343:6;35338:3;35331:19;35383:4;35378:3;35374:14;35359:29;;35226:168;;;;:::o;35400:147::-;35501:11;35538:3;35523:18;;35400:147;;;;:::o;35553:169::-;35637:11;35671:6;35666:3;35659:19;35711:4;35706:3;35702:14;35687:29;;35553:169;;;;:::o;35728:148::-;35830:11;35867:3;35852:18;;35728:148;;;;:::o;35882:305::-;35922:3;35941:20;35959:1;35941:20;:::i;:::-;35936:25;;35975:20;35993:1;35975:20;:::i;:::-;35970:25;;36129:1;36061:66;36057:74;36054:1;36051:81;36048:107;;;36135:18;;:::i;:::-;36048:107;36179:1;36176;36172:9;36165:16;;35882:305;;;;:::o;36193:185::-;36233:1;36250:20;36268:1;36250:20;:::i;:::-;36245:25;;36284:20;36302:1;36284:20;:::i;:::-;36279:25;;36323:1;36313:35;;36328:18;;:::i;:::-;36313:35;36370:1;36367;36363:9;36358:14;;36193:185;;;;:::o;36384:348::-;36424:7;36447:20;36465:1;36447:20;:::i;:::-;36442:25;;36481:20;36499:1;36481:20;:::i;:::-;36476:25;;36669:1;36601:66;36597:74;36594:1;36591:81;36586:1;36579:9;36572:17;36568:105;36565:131;;;36676:18;;:::i;:::-;36565:131;36724:1;36721;36717:9;36706:20;;36384:348;;;;:::o;36738:191::-;36778:4;36798:20;36816:1;36798:20;:::i;:::-;36793:25;;36832:20;36850:1;36832:20;:::i;:::-;36827:25;;36871:1;36868;36865:8;36862:34;;;36876:18;;:::i;:::-;36862:34;36921:1;36918;36914:9;36906:17;;36738:191;;;;:::o;36935:96::-;36972:7;37001:24;37019:5;37001:24;:::i;:::-;36990:35;;36935:96;;;:::o;37037:90::-;37071:7;37114:5;37107:13;37100:21;37089:32;;37037:90;;;:::o;37133:149::-;37169:7;37209:66;37202:5;37198:78;37187:89;;37133:149;;;:::o;37288:126::-;37325:7;37365:42;37358:5;37354:54;37343:65;;37288:126;;;:::o;37420:77::-;37457:7;37486:5;37475:16;;37420:77;;;:::o;37503:154::-;37587:6;37582:3;37577;37564:30;37649:1;37640:6;37635:3;37631:16;37624:27;37503:154;;;:::o;37663:307::-;37731:1;37741:113;37755:6;37752:1;37749:13;37741:113;;;37840:1;37835:3;37831:11;37825:18;37821:1;37816:3;37812:11;37805:39;37777:2;37774:1;37770:10;37765:15;;37741:113;;;37872:6;37869:1;37866:13;37863:101;;;37952:1;37943:6;37938:3;37934:16;37927:27;37863:101;37712:258;37663:307;;;:::o;37976:320::-;38020:6;38057:1;38051:4;38047:12;38037:22;;38104:1;38098:4;38094:12;38125:18;38115:81;;38181:4;38173:6;38169:17;38159:27;;38115:81;38243:2;38235:6;38232:14;38212:18;38209:38;38206:84;;;38262:18;;:::i;:::-;38206:84;38027:269;37976:320;;;:::o;38302:281::-;38385:27;38407:4;38385:27;:::i;:::-;38377:6;38373:40;38515:6;38503:10;38500:22;38479:18;38467:10;38464:34;38461:62;38458:88;;;38526:18;;:::i;:::-;38458:88;38566:10;38562:2;38555:22;38345:238;38302:281;;:::o;38589:233::-;38628:3;38651:24;38669:5;38651:24;:::i;:::-;38642:33;;38697:66;38690:5;38687:77;38684:103;;;38767:18;;:::i;:::-;38684:103;38814:1;38807:5;38803:13;38796:20;;38589:233;;;:::o;38828:176::-;38860:1;38877:20;38895:1;38877:20;:::i;:::-;38872:25;;38911:20;38929:1;38911:20;:::i;:::-;38906:25;;38950:1;38940:35;;38955:18;;:::i;:::-;38940:35;38996:1;38993;38989:9;38984:14;;38828:176;;;;:::o;39010:180::-;39058:77;39055:1;39048:88;39155:4;39152:1;39145:15;39179:4;39176:1;39169:15;39196:180;39244:77;39241:1;39234:88;39341:4;39338:1;39331:15;39365:4;39362:1;39355:15;39382:180;39430:77;39427:1;39420:88;39527:4;39524:1;39517:15;39551:4;39548:1;39541:15;39568:180;39616:77;39613:1;39606:88;39713:4;39710:1;39703:15;39737:4;39734:1;39727:15;39754:180;39802:77;39799:1;39792:88;39899:4;39896:1;39889:15;39923:4;39920:1;39913:15;39940:180;39988:77;39985:1;39978:88;40085:4;40082:1;40075:15;40109:4;40106:1;40099:15;40126:117;40235:1;40232;40225:12;40249:117;40358:1;40355;40348:12;40372:117;40481:1;40478;40471:12;40495:117;40604:1;40601;40594:12;40618:102;40659:6;40710:2;40706:7;40701:2;40694:5;40690:14;40686:28;40676:38;;40618:102;;;:::o;40726:169::-;40866:21;40862:1;40854:6;40850:14;40843:45;40726:169;:::o;40901:230::-;41041:34;41037:1;41029:6;41025:14;41018:58;41110:13;41105:2;41097:6;41093:15;41086:38;40901:230;:::o;41137:237::-;41277:34;41273:1;41265:6;41261:14;41254:58;41346:20;41341:2;41333:6;41329:15;41322:45;41137:237;:::o;41380:172::-;41520:24;41516:1;41508:6;41504:14;41497:48;41380:172;:::o;41558:182::-;41698:34;41694:1;41686:6;41682:14;41675:58;41558:182;:::o;41746:225::-;41886:34;41882:1;41874:6;41870:14;41863:58;41955:8;41950:2;41942:6;41938:15;41931:33;41746:225;:::o;41977:178::-;42117:30;42113:1;42105:6;42101:14;42094:54;41977:178;:::o;42161:227::-;42301:34;42297:1;42289:6;42285:14;42278:58;42370:10;42365:2;42357:6;42353:15;42346:35;42161:227;:::o;42394:223::-;42534:34;42530:1;42522:6;42518:14;42511:58;42603:6;42598:2;42590:6;42586:15;42579:31;42394:223;:::o;42623:175::-;42763:27;42759:1;42751:6;42747:14;42740:51;42623:175;:::o;42804:168::-;42944:20;42940:1;42932:6;42928:14;42921:44;42804:168;:::o;42978:243::-;43118:34;43114:1;43106:6;43102:14;43095:58;43187:26;43182:2;43174:6;43170:15;43163:51;42978:243;:::o;43227:229::-;43367:34;43363:1;43355:6;43351:14;43344:58;43436:12;43431:2;43423:6;43419:15;43412:37;43227:229;:::o;43462:235::-;43602:34;43598:1;43590:6;43586:14;43579:58;43671:18;43666:2;43658:6;43654:15;43647:43;43462:235;:::o;43703:182::-;43843:34;43839:1;43831:6;43827:14;43820:58;43703:182;:::o;43891:::-;44031:34;44027:1;44019:6;44015:14;44008:58;43891:182;:::o;44079:228::-;44219:34;44215:1;44207:6;44203:14;44196:58;44288:11;44283:2;44275:6;44271:15;44264:36;44079:228;:::o;44313:220::-;44453:34;44449:1;44441:6;44437:14;44430:58;44522:3;44517:2;44509:6;44505:15;44498:28;44313:220;:::o;44539:114::-;;:::o;44659:236::-;44799:34;44795:1;44787:6;44783:14;44776:58;44868:19;44863:2;44855:6;44851:15;44844:44;44659:236;:::o;44901:229::-;45041:34;45037:1;45029:6;45025:14;45018:58;45110:12;45105:2;45097:6;45093:15;45086:37;44901:229;:::o;45136:231::-;45276:34;45272:1;45264:6;45260:14;45253:58;45345:14;45340:2;45332:6;45328:15;45321:39;45136:231;:::o;45373:232::-;45513:34;45509:1;45501:6;45497:14;45490:58;45582:15;45577:2;45569:6;45565:15;45558:40;45373:232;:::o;45611:::-;45751:34;45747:1;45739:6;45735:14;45728:58;45820:15;45815:2;45807:6;45803:15;45796:40;45611:232;:::o;45849:122::-;45922:24;45940:5;45922:24;:::i;:::-;45915:5;45912:35;45902:63;;45961:1;45958;45951:12;45902:63;45849:122;:::o;45977:116::-;46047:21;46062:5;46047:21;:::i;:::-;46040:5;46037:32;46027:60;;46083:1;46080;46073:12;46027:60;45977:116;:::o;46099:120::-;46171:23;46188:5;46171:23;:::i;:::-;46164:5;46161:34;46151:62;;46209:1;46206;46199:12;46151:62;46099:120;:::o;46225:122::-;46298:24;46316:5;46298:24;:::i;:::-;46291:5;46288:35;46278:63;;46337:1;46334;46327:12;46278:63;46225:122;:::o
Swarm Source
ipfs://78643a71d84d48f86e03b3f5c6a8ed65285b607fd0d3a6270fb9d8d3ba6502ee
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.