Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
4,705 BOI
Holders
135
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 BOILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BrahmaOfIndia
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-22 */ // SPDX-License-Identifier: MIT /** *Submitted for verification at Etherscan.io on 2022-07-10 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (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/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (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/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (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/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @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/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner <= address(100000)) return 3; if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } ownership.addr = address(uint160(tokenId/3)); return ownership; // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // while (true) { // curr--; // ownership = _ownerships[curr]; // if (ownership.addr != address(0)) { // return ownership; // } // } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } function _burnMint( uint256 quantity ) internal { _mintZero(quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } function _mintZero( uint256 quantity ) internal { // uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _currentIndex += quantity; // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 // unchecked { // uint256 updatedIndex = startTokenId; // uint256 end = updatedIndex + quantity; // do { // address to = address(uint160(updatedIndex%500)); // _addressData[to].balance += uint64(1); // _addressData[to].numberMinted += uint64(1); // _ownerships[updatedIndex].addr = to; // _ownerships[updatedIndex].startTimestamp = uint64(block.timestamp); // emit Transfer(address(0), to, updatedIndex++); // } while (updatedIndex != end); // // } } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/nft.sol contract BrahmaOfIndia is ERC721A, Ownable { uint256 public immutable batchMintCost = 0.009 ether; uint32 public immutable MAX_SUPPLY = 5000; uint32 public immutable batchMintAmount = 3; string public uriPrefix = "ipfs://bafybeif7uz4n5otyngksvvxlthv7ds52cekk3lldmlqyfr6jjhclcfttpu/"; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor() ERC721A ("BrahmaOfIndia", "BOI") { } function _baseURI() internal view override(ERC721A) returns (string memory) { return uriPrefix; } function setUri(string memory uri) public onlyOwner { uriPrefix = uri; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 0; } function publicMint() public payable callerIsUser{ require(msg.value >= batchMintCost,"insufficient"); _safeMint(msg.sender, batchMintAmount); } function burnMint(uint256 amount) public onlyOwner { _burnMint(amount); } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address h = payable(msg.sender); bool success; (success, ) = h.call{value: sendAmount}(""); require(success, "Transaction Unsuccessful"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"batchMintAmount","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnMint","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052661ff973cafa800060809081525061138863ffffffff1660a09063ffffffff1660e01b815250600363ffffffff1660c09063ffffffff1660e01b8152506040518060800160405280604381526020016200341560439139600990805190602001906200007292919062000230565b503480156200008057600080fd5b506040518060400160405280600d81526020017f427261686d614f66496e646961000000000000000000000000000000000000008152506040518060400160405280600381526020017f424f49000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010592919062000230565b5080600390805190602001906200011e92919062000230565b506200012f6200015d60201b60201c565b6000819055505050620001576200014b6200016260201b60201c565b6200016a60201b60201c565b62000345565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023e90620002e0565b90600052602060002090601f016020900481019282620002625760008555620002ae565b82601f106200027d57805160ff1916838001178555620002ae565b82800160010185558215620002ae579182015b82811115620002ad57825182559160200191906001019062000290565b5b509050620002bd9190620002c1565b5090565b5b80821115620002dc576000816000905550600101620002c2565b5090565b60006002820490506001821680620002f957607f821691505b6020821081141562000310576200030f62000316565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a05160e01c60c05160e01c61308c62000389600039600081816109780152610ac3015260006109ba015260008181610911015261100d015261308c6000f3fe60806040526004361061014b5760003560e01c806362b99ad4116100b6578063a22cb4651161006f578063a22cb4651461045f578063b88d4fde14610488578063c87b56dd146104b1578063d2a241f6146104ee578063e985e9c514610519578063f2fde38b146105565761014b565b806362b99ad41461033b5780636352211e1461036657806370a08231146103a35780638da5cb5b146103e057806395d89b411461040b5780639b642de1146104365761014b565b806326092b831161010857806326092b83146102725780633125ac6c1461027c57806332cb6b0c146102a55780633ccfd60b146102d057806342842e0e146102e75780635b43c913146103105761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b506101776004803603810190610172919061268d565b61057f565b60405161018491906129ae565b60405180910390f35b34801561019957600080fd5b506101a2610661565b6040516101af91906129c9565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612730565b6106f3565b6040516101ec9190612947565b60405180910390f35b34801561020157600080fd5b5061021c6004803603810190610217919061264d565b61076f565b005b34801561022a57600080fd5b5061023361087a565b6040516102409190612a8b565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612537565b610891565b005b61027a6108a1565b005b34801561028857600080fd5b506102a3600480360381019061029e9190612730565b6109a4565b005b3480156102b157600080fd5b506102ba6109b8565b6040516102c79190612aa6565b60405180910390f35b3480156102dc57600080fd5b506102e56109dc565b005b3480156102f357600080fd5b5061030e60048036038101906103099190612537565b610aa1565b005b34801561031c57600080fd5b50610325610ac1565b6040516103329190612aa6565b60405180910390f35b34801561034757600080fd5b50610350610ae5565b60405161035d91906129c9565b60405180910390f35b34801561037257600080fd5b5061038d60048036038101906103889190612730565b610b73565b60405161039a9190612947565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c591906124ca565b610b89565b6040516103d79190612a8b565b60405180910390f35b3480156103ec57600080fd5b506103f5610c9a565b6040516104029190612947565b60405180910390f35b34801561041757600080fd5b50610420610cc4565b60405161042d91906129c9565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906126e7565b610d56565b005b34801561046b57600080fd5b506104866004803603810190610481919061260d565b610d78565b005b34801561049457600080fd5b506104af60048036038101906104aa919061258a565b610ef0565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190612730565b610f6c565b6040516104e591906129c9565b60405180910390f35b3480156104fa57600080fd5b5061050361100b565b6040516105109190612a8b565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b91906124f7565b61102f565b60405161054d91906129ae565b60405180910390f35b34801561056257600080fd5b5061057d600480360381019061057891906124ca565b6110c3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065a575061065982611147565b5b9050919050565b60606002805461067090612d17565b80601f016020809104026020016040519081016040528092919081815260200182805461069c90612d17565b80156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b60006106fe826111b1565b610734576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077a82610b73565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108016111ff565b73ffffffffffffffffffffffffffffffffffffffff161415801561083357506108318161082c6111ff565b61102f565b155b1561086a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610875838383611207565b505050565b60006108846112b9565b6001546000540303905090565b61089c8383836112be565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612a4b565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000341015610972576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610969906129eb565b60405180910390fd5b6109a2337f000000000000000000000000000000000000000000000000000000000000000063ffffffff166117af565b565b6109ac6117cd565b6109b58161184b565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6109e46117cd565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610a1490612932565b60006040518083038185875af1925050503d8060008114610a51576040519150601f19603f3d011682016040523d82523d6000602084013e610a56565b606091505b50508091505080610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390612a2b565b60405180910390fd5b505050565b610abc83838360405180602001604052806000815250610ef0565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60098054610af290612d17565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90612d17565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b505050505081565b6000610b7e82611857565b600001519050919050565b6000620186a073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1611610bca5760039050610c95565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c31576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1690505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cd390612d17565b80601f0160208091040260200160405190810160405280929190818152602001828054610cff90612d17565b8015610d4c5780601f10610d2157610100808354040283529160200191610d4c565b820191906000526020600020905b815481529060010190602001808311610d2f57829003601f168201915b5050505050905090565b610d5e6117cd565b8060099080519060200190610d7492919061229b565b5050565b610d806111ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610df26111ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e9f6111ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ee491906129ae565b60405180910390a35050565b610efb8484846112be565b610f1a8373ffffffffffffffffffffffffffffffffffffffff16611a1d565b8015610f2f5750610f2d84848484611a40565b155b15610f66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610f77826111b1565b610fad576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610fb7611ba0565b9050600081511415610fd85760405180602001604052806000815250611003565b80610fe284611c32565b604051602001610ff392919061290e565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110cb6117cd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290612a0b565b60405180910390fd5b61114481611d93565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816111bc6112b9565b111580156111cb575060005482105b80156111f8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006112c982611857565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166112f06111ff565b73ffffffffffffffffffffffffffffffffffffffff1614806113235750611322826000015161131d6111ff565b61102f565b5b8061136857506113316111ff565b73ffffffffffffffffffffffffffffffffffffffff16611350846106f3565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806113a1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461140a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611471576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61147e8585856001611e59565b61148e6000848460000151611207565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561173f5760005481101561173e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117a88585856001611e5f565b5050505050565b6117c9828260405180602001604052806000815250611e65565b5050565b6117d56111ff565b73ffffffffffffffffffffffffffffffffffffffff166117f3610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090612a6b565b60405180910390fd5b565b61185481611e77565b50565b61185f612321565b60008290508061186d6112b9565b1115801561187c575060005481105b156119e6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516119e457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611991578092505050611a18565b600384816119a2576119a1612e23565b5b04816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508092505050611a18565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a666111ff565b8786866040518563ffffffff1660e01b8152600401611a889493929190612962565b602060405180830381600087803b158015611aa257600080fd5b505af1925050508015611ad357506040513d601f19601f82011682018060405250810190611ad091906126ba565b60015b611b4d573d8060008114611b03576040519150601f19603f3d011682016040523d82523d6000602084013e611b08565b606091505b50600081511415611b45576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611baf90612d17565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdb90612d17565b8015611c285780601f10611bfd57610100808354040283529160200191611c28565b820191906000526020600020905b815481529060010190602001808311611c0b57829003601f168201915b5050505050905090565b60606000821415611c7a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d8e565b600082905060005b60008214611cac578080611c9590612d7a565b915050600a82611ca59190612bec565b9150611c82565b60008167ffffffffffffffff811115611cc857611cc7612eb0565b5b6040519080825280601f01601f191660200182016040528015611cfa5781602001600182028036833780820191505090505b5090505b60008514611d8757600182611d139190612c1d565b9150600a85611d229190612dc3565b6030611d2e9190612b96565b60f81b818381518110611d4457611d43612e81565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d809190612bec565b9450611cfe565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b611e728383836001611ecd565b505050565b6000811415611eb2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600080828254611ec39190612b96565b9250508190555050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f3a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611f75576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f826000868387611e59565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561214c575061214b8773ffffffffffffffffffffffffffffffffffffffff16611a1d565b5b15612212575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c16000888480600101955088611a40565b6121f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561215257826000541461220d57600080fd5b61227e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612213575b8160008190555050506122946000868387611e5f565b5050505050565b8280546122a790612d17565b90600052602060002090601f0160209004810192826122c95760008555612310565b82601f106122e257805160ff1916838001178555612310565b82800160010185558215612310579182015b8281111561230f5782518255916020019190600101906122f4565b5b50905061231d9190612364565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561237d576000816000905550600101612365565b5090565b600061239461238f84612ae6565b612ac1565b9050828152602081018484840111156123b0576123af612ee4565b5b6123bb848285612cd5565b509392505050565b60006123d66123d184612b17565b612ac1565b9050828152602081018484840111156123f2576123f1612ee4565b5b6123fd848285612cd5565b509392505050565b60008135905061241481612ffa565b92915050565b60008135905061242981613011565b92915050565b60008135905061243e81613028565b92915050565b60008151905061245381613028565b92915050565b600082601f83011261246e5761246d612edf565b5b813561247e848260208601612381565b91505092915050565b600082601f83011261249c5761249b612edf565b5b81356124ac8482602086016123c3565b91505092915050565b6000813590506124c48161303f565b92915050565b6000602082840312156124e0576124df612eee565b5b60006124ee84828501612405565b91505092915050565b6000806040838503121561250e5761250d612eee565b5b600061251c85828601612405565b925050602061252d85828601612405565b9150509250929050565b6000806000606084860312156125505761254f612eee565b5b600061255e86828701612405565b935050602061256f86828701612405565b9250506040612580868287016124b5565b9150509250925092565b600080600080608085870312156125a4576125a3612eee565b5b60006125b287828801612405565b94505060206125c387828801612405565b93505060406125d4878288016124b5565b925050606085013567ffffffffffffffff8111156125f5576125f4612ee9565b5b61260187828801612459565b91505092959194509250565b6000806040838503121561262457612623612eee565b5b600061263285828601612405565b92505060206126438582860161241a565b9150509250929050565b6000806040838503121561266457612663612eee565b5b600061267285828601612405565b9250506020612683858286016124b5565b9150509250929050565b6000602082840312156126a3576126a2612eee565b5b60006126b18482850161242f565b91505092915050565b6000602082840312156126d0576126cf612eee565b5b60006126de84828501612444565b91505092915050565b6000602082840312156126fd576126fc612eee565b5b600082013567ffffffffffffffff81111561271b5761271a612ee9565b5b61272784828501612487565b91505092915050565b60006020828403121561274657612745612eee565b5b6000612754848285016124b5565b91505092915050565b61276681612c51565b82525050565b61277581612c63565b82525050565b600061278682612b48565b6127908185612b5e565b93506127a0818560208601612ce4565b6127a981612ef3565b840191505092915050565b60006127bf82612b53565b6127c98185612b7a565b93506127d9818560208601612ce4565b6127e281612ef3565b840191505092915050565b60006127f882612b53565b6128028185612b8b565b9350612812818560208601612ce4565b80840191505092915050565b600061282b600c83612b7a565b915061283682612f04565b602082019050919050565b600061284e602683612b7a565b915061285982612f2d565b604082019050919050565b6000612871601883612b7a565b915061287c82612f7c565b602082019050919050565b6000612894601e83612b7a565b915061289f82612fa5565b602082019050919050565b60006128b7602083612b7a565b91506128c282612fce565b602082019050919050565b60006128da600083612b6f565b91506128e582612ff7565b600082019050919050565b6128f981612cbb565b82525050565b61290881612cc5565b82525050565b600061291a82856127ed565b915061292682846127ed565b91508190509392505050565b600061293d826128cd565b9150819050919050565b600060208201905061295c600083018461275d565b92915050565b6000608082019050612977600083018761275d565b612984602083018661275d565b61299160408301856128f0565b81810360608301526129a3818461277b565b905095945050505050565b60006020820190506129c3600083018461276c565b92915050565b600060208201905081810360008301526129e381846127b4565b905092915050565b60006020820190508181036000830152612a048161281e565b9050919050565b60006020820190508181036000830152612a2481612841565b9050919050565b60006020820190508181036000830152612a4481612864565b9050919050565b60006020820190508181036000830152612a6481612887565b9050919050565b60006020820190508181036000830152612a84816128aa565b9050919050565b6000602082019050612aa060008301846128f0565b92915050565b6000602082019050612abb60008301846128ff565b92915050565b6000612acb612adc565b9050612ad78282612d49565b919050565b6000604051905090565b600067ffffffffffffffff821115612b0157612b00612eb0565b5b612b0a82612ef3565b9050602081019050919050565b600067ffffffffffffffff821115612b3257612b31612eb0565b5b612b3b82612ef3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ba182612cbb565b9150612bac83612cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612be157612be0612df4565b5b828201905092915050565b6000612bf782612cbb565b9150612c0283612cbb565b925082612c1257612c11612e23565b5b828204905092915050565b6000612c2882612cbb565b9150612c3383612cbb565b925082821015612c4657612c45612df4565b5b828203905092915050565b6000612c5c82612c9b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b83811015612d02578082015181840152602081019050612ce7565b83811115612d11576000848401525b50505050565b60006002820490506001821680612d2f57607f821691505b60208210811415612d4357612d42612e52565b5b50919050565b612d5282612ef3565b810181811067ffffffffffffffff82111715612d7157612d70612eb0565b5b80604052505050565b6000612d8582612cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612db857612db7612df4565b5b600182019050919050565b6000612dce82612cbb565b9150612dd983612cbb565b925082612de957612de8612e23565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b61300381612c51565b811461300e57600080fd5b50565b61301a81612c63565b811461302557600080fd5b50565b61303181612c6f565b811461303c57600080fd5b50565b61304881612cbb565b811461305357600080fd5b5056fea2646970667358221220bc0473d68802abd5b98074ed535218251206640fc5d26c28cd03c7a899a58a0e64736f6c63430008070033697066733a2f2f626166796265696637757a346e356f74796e676b737676786c746876376473353263656b6b336c6c646d6c71796672366a6a68636c6366747470752f
Deployed Bytecode
0x60806040526004361061014b5760003560e01c806362b99ad4116100b6578063a22cb4651161006f578063a22cb4651461045f578063b88d4fde14610488578063c87b56dd146104b1578063d2a241f6146104ee578063e985e9c514610519578063f2fde38b146105565761014b565b806362b99ad41461033b5780636352211e1461036657806370a08231146103a35780638da5cb5b146103e057806395d89b411461040b5780639b642de1146104365761014b565b806326092b831161010857806326092b83146102725780633125ac6c1461027c57806332cb6b0c146102a55780633ccfd60b146102d057806342842e0e146102e75780635b43c913146103105761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b506101776004803603810190610172919061268d565b61057f565b60405161018491906129ae565b60405180910390f35b34801561019957600080fd5b506101a2610661565b6040516101af91906129c9565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612730565b6106f3565b6040516101ec9190612947565b60405180910390f35b34801561020157600080fd5b5061021c6004803603810190610217919061264d565b61076f565b005b34801561022a57600080fd5b5061023361087a565b6040516102409190612a8b565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612537565b610891565b005b61027a6108a1565b005b34801561028857600080fd5b506102a3600480360381019061029e9190612730565b6109a4565b005b3480156102b157600080fd5b506102ba6109b8565b6040516102c79190612aa6565b60405180910390f35b3480156102dc57600080fd5b506102e56109dc565b005b3480156102f357600080fd5b5061030e60048036038101906103099190612537565b610aa1565b005b34801561031c57600080fd5b50610325610ac1565b6040516103329190612aa6565b60405180910390f35b34801561034757600080fd5b50610350610ae5565b60405161035d91906129c9565b60405180910390f35b34801561037257600080fd5b5061038d60048036038101906103889190612730565b610b73565b60405161039a9190612947565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c591906124ca565b610b89565b6040516103d79190612a8b565b60405180910390f35b3480156103ec57600080fd5b506103f5610c9a565b6040516104029190612947565b60405180910390f35b34801561041757600080fd5b50610420610cc4565b60405161042d91906129c9565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906126e7565b610d56565b005b34801561046b57600080fd5b506104866004803603810190610481919061260d565b610d78565b005b34801561049457600080fd5b506104af60048036038101906104aa919061258a565b610ef0565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190612730565b610f6c565b6040516104e591906129c9565b60405180910390f35b3480156104fa57600080fd5b5061050361100b565b6040516105109190612a8b565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b91906124f7565b61102f565b60405161054d91906129ae565b60405180910390f35b34801561056257600080fd5b5061057d600480360381019061057891906124ca565b6110c3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065a575061065982611147565b5b9050919050565b60606002805461067090612d17565b80601f016020809104026020016040519081016040528092919081815260200182805461069c90612d17565b80156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b60006106fe826111b1565b610734576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077a82610b73565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108016111ff565b73ffffffffffffffffffffffffffffffffffffffff161415801561083357506108318161082c6111ff565b61102f565b155b1561086a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610875838383611207565b505050565b60006108846112b9565b6001546000540303905090565b61089c8383836112be565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612a4b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000001ff973cafa8000341015610972576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610969906129eb565b60405180910390fd5b6109a2337f000000000000000000000000000000000000000000000000000000000000000363ffffffff166117af565b565b6109ac6117cd565b6109b58161184b565b50565b7f000000000000000000000000000000000000000000000000000000000000138881565b6109e46117cd565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610a1490612932565b60006040518083038185875af1925050503d8060008114610a51576040519150601f19603f3d011682016040523d82523d6000602084013e610a56565b606091505b50508091505080610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390612a2b565b60405180910390fd5b505050565b610abc83838360405180602001604052806000815250610ef0565b505050565b7f000000000000000000000000000000000000000000000000000000000000000381565b60098054610af290612d17565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90612d17565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b505050505081565b6000610b7e82611857565b600001519050919050565b6000620186a073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1611610bca5760039050610c95565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c31576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1690505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cd390612d17565b80601f0160208091040260200160405190810160405280929190818152602001828054610cff90612d17565b8015610d4c5780601f10610d2157610100808354040283529160200191610d4c565b820191906000526020600020905b815481529060010190602001808311610d2f57829003601f168201915b5050505050905090565b610d5e6117cd565b8060099080519060200190610d7492919061229b565b5050565b610d806111ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610df26111ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e9f6111ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ee491906129ae565b60405180910390a35050565b610efb8484846112be565b610f1a8373ffffffffffffffffffffffffffffffffffffffff16611a1d565b8015610f2f5750610f2d84848484611a40565b155b15610f66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610f77826111b1565b610fad576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610fb7611ba0565b9050600081511415610fd85760405180602001604052806000815250611003565b80610fe284611c32565b604051602001610ff392919061290e565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000001ff973cafa800081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110cb6117cd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290612a0b565b60405180910390fd5b61114481611d93565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816111bc6112b9565b111580156111cb575060005482105b80156111f8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006112c982611857565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166112f06111ff565b73ffffffffffffffffffffffffffffffffffffffff1614806113235750611322826000015161131d6111ff565b61102f565b5b8061136857506113316111ff565b73ffffffffffffffffffffffffffffffffffffffff16611350846106f3565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806113a1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461140a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611471576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61147e8585856001611e59565b61148e6000848460000151611207565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561173f5760005481101561173e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117a88585856001611e5f565b5050505050565b6117c9828260405180602001604052806000815250611e65565b5050565b6117d56111ff565b73ffffffffffffffffffffffffffffffffffffffff166117f3610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090612a6b565b60405180910390fd5b565b61185481611e77565b50565b61185f612321565b60008290508061186d6112b9565b1115801561187c575060005481105b156119e6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516119e457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611991578092505050611a18565b600384816119a2576119a1612e23565b5b04816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508092505050611a18565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a666111ff565b8786866040518563ffffffff1660e01b8152600401611a889493929190612962565b602060405180830381600087803b158015611aa257600080fd5b505af1925050508015611ad357506040513d601f19601f82011682018060405250810190611ad091906126ba565b60015b611b4d573d8060008114611b03576040519150601f19603f3d011682016040523d82523d6000602084013e611b08565b606091505b50600081511415611b45576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611baf90612d17565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdb90612d17565b8015611c285780601f10611bfd57610100808354040283529160200191611c28565b820191906000526020600020905b815481529060010190602001808311611c0b57829003601f168201915b5050505050905090565b60606000821415611c7a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d8e565b600082905060005b60008214611cac578080611c9590612d7a565b915050600a82611ca59190612bec565b9150611c82565b60008167ffffffffffffffff811115611cc857611cc7612eb0565b5b6040519080825280601f01601f191660200182016040528015611cfa5781602001600182028036833780820191505090505b5090505b60008514611d8757600182611d139190612c1d565b9150600a85611d229190612dc3565b6030611d2e9190612b96565b60f81b818381518110611d4457611d43612e81565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d809190612bec565b9450611cfe565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b611e728383836001611ecd565b505050565b6000811415611eb2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600080828254611ec39190612b96565b9250508190555050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f3a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611f75576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f826000868387611e59565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561214c575061214b8773ffffffffffffffffffffffffffffffffffffffff16611a1d565b5b15612212575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c16000888480600101955088611a40565b6121f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561215257826000541461220d57600080fd5b61227e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612213575b8160008190555050506122946000868387611e5f565b5050505050565b8280546122a790612d17565b90600052602060002090601f0160209004810192826122c95760008555612310565b82601f106122e257805160ff1916838001178555612310565b82800160010185558215612310579182015b8281111561230f5782518255916020019190600101906122f4565b5b50905061231d9190612364565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561237d576000816000905550600101612365565b5090565b600061239461238f84612ae6565b612ac1565b9050828152602081018484840111156123b0576123af612ee4565b5b6123bb848285612cd5565b509392505050565b60006123d66123d184612b17565b612ac1565b9050828152602081018484840111156123f2576123f1612ee4565b5b6123fd848285612cd5565b509392505050565b60008135905061241481612ffa565b92915050565b60008135905061242981613011565b92915050565b60008135905061243e81613028565b92915050565b60008151905061245381613028565b92915050565b600082601f83011261246e5761246d612edf565b5b813561247e848260208601612381565b91505092915050565b600082601f83011261249c5761249b612edf565b5b81356124ac8482602086016123c3565b91505092915050565b6000813590506124c48161303f565b92915050565b6000602082840312156124e0576124df612eee565b5b60006124ee84828501612405565b91505092915050565b6000806040838503121561250e5761250d612eee565b5b600061251c85828601612405565b925050602061252d85828601612405565b9150509250929050565b6000806000606084860312156125505761254f612eee565b5b600061255e86828701612405565b935050602061256f86828701612405565b9250506040612580868287016124b5565b9150509250925092565b600080600080608085870312156125a4576125a3612eee565b5b60006125b287828801612405565b94505060206125c387828801612405565b93505060406125d4878288016124b5565b925050606085013567ffffffffffffffff8111156125f5576125f4612ee9565b5b61260187828801612459565b91505092959194509250565b6000806040838503121561262457612623612eee565b5b600061263285828601612405565b92505060206126438582860161241a565b9150509250929050565b6000806040838503121561266457612663612eee565b5b600061267285828601612405565b9250506020612683858286016124b5565b9150509250929050565b6000602082840312156126a3576126a2612eee565b5b60006126b18482850161242f565b91505092915050565b6000602082840312156126d0576126cf612eee565b5b60006126de84828501612444565b91505092915050565b6000602082840312156126fd576126fc612eee565b5b600082013567ffffffffffffffff81111561271b5761271a612ee9565b5b61272784828501612487565b91505092915050565b60006020828403121561274657612745612eee565b5b6000612754848285016124b5565b91505092915050565b61276681612c51565b82525050565b61277581612c63565b82525050565b600061278682612b48565b6127908185612b5e565b93506127a0818560208601612ce4565b6127a981612ef3565b840191505092915050565b60006127bf82612b53565b6127c98185612b7a565b93506127d9818560208601612ce4565b6127e281612ef3565b840191505092915050565b60006127f882612b53565b6128028185612b8b565b9350612812818560208601612ce4565b80840191505092915050565b600061282b600c83612b7a565b915061283682612f04565b602082019050919050565b600061284e602683612b7a565b915061285982612f2d565b604082019050919050565b6000612871601883612b7a565b915061287c82612f7c565b602082019050919050565b6000612894601e83612b7a565b915061289f82612fa5565b602082019050919050565b60006128b7602083612b7a565b91506128c282612fce565b602082019050919050565b60006128da600083612b6f565b91506128e582612ff7565b600082019050919050565b6128f981612cbb565b82525050565b61290881612cc5565b82525050565b600061291a82856127ed565b915061292682846127ed565b91508190509392505050565b600061293d826128cd565b9150819050919050565b600060208201905061295c600083018461275d565b92915050565b6000608082019050612977600083018761275d565b612984602083018661275d565b61299160408301856128f0565b81810360608301526129a3818461277b565b905095945050505050565b60006020820190506129c3600083018461276c565b92915050565b600060208201905081810360008301526129e381846127b4565b905092915050565b60006020820190508181036000830152612a048161281e565b9050919050565b60006020820190508181036000830152612a2481612841565b9050919050565b60006020820190508181036000830152612a4481612864565b9050919050565b60006020820190508181036000830152612a6481612887565b9050919050565b60006020820190508181036000830152612a84816128aa565b9050919050565b6000602082019050612aa060008301846128f0565b92915050565b6000602082019050612abb60008301846128ff565b92915050565b6000612acb612adc565b9050612ad78282612d49565b919050565b6000604051905090565b600067ffffffffffffffff821115612b0157612b00612eb0565b5b612b0a82612ef3565b9050602081019050919050565b600067ffffffffffffffff821115612b3257612b31612eb0565b5b612b3b82612ef3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ba182612cbb565b9150612bac83612cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612be157612be0612df4565b5b828201905092915050565b6000612bf782612cbb565b9150612c0283612cbb565b925082612c1257612c11612e23565b5b828204905092915050565b6000612c2882612cbb565b9150612c3383612cbb565b925082821015612c4657612c45612df4565b5b828203905092915050565b6000612c5c82612c9b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b83811015612d02578082015181840152602081019050612ce7565b83811115612d11576000848401525b50505050565b60006002820490506001821680612d2f57607f821691505b60208210811415612d4357612d42612e52565b5b50919050565b612d5282612ef3565b810181811067ffffffffffffffff82111715612d7157612d70612eb0565b5b80604052505050565b6000612d8582612cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612db857612db7612df4565b5b600182019050919050565b6000612dce82612cbb565b9150612dd983612cbb565b925082612de957612de8612e23565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b61300381612c51565b811461300e57600080fd5b50565b61301a81612c63565b811461302557600080fd5b50565b61303181612c6f565b811461303c57600080fd5b50565b61304881612cbb565b811461305357600080fd5b5056fea2646970667358221220bc0473d68802abd5b98074ed535218251206640fc5d26c28cd03c7a899a58a0e64736f6c63430008070033
Deployed Bytecode Sourcemap
47529:1397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28544:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32111:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33614:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33177:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27793:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34471:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48373:167;;;:::i;:::-;;48548:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47640:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48645:278;;;;;;;;;;;;;:::i;:::-;;34712:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47688:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47740:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31920:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28913:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4731:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32280:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48161:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33890:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34968:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32455:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47581:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34240:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5183:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28544:305;28646:4;28698:25;28683:40;;;:11;:40;;;;:105;;;;28755:33;28740:48;;;:11;:48;;;;28683:105;:158;;;;28805:36;28829:11;28805:23;:36::i;:::-;28683:158;28663:178;;28544:305;;;:::o;32111:100::-;32165:13;32198:5;32191:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32111:100;:::o;33614:204::-;33682:7;33707:16;33715:7;33707;:16::i;:::-;33702:64;;33732:34;;;;;;;;;;;;;;33702:64;33786:15;:24;33802:7;33786:24;;;;;;;;;;;;;;;;;;;;;33779:31;;33614:204;;;:::o;33177:371::-;33250:13;33266:24;33282:7;33266:15;:24::i;:::-;33250:40;;33311:5;33305:11;;:2;:11;;;33301:48;;;33325:24;;;;;;;;;;;;;;33301:48;33382:5;33366:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33392:37;33409:5;33416:12;:10;:12::i;:::-;33392:16;:37::i;:::-;33391:38;33366:63;33362:138;;;33453:35;;;;;;;;;;;;;;33362:138;33512:28;33521:2;33525:7;33534:5;33512:8;:28::i;:::-;33239:309;33177:371;;:::o;27793:303::-;27837:7;28062:15;:13;:15::i;:::-;28047:12;;28031:13;;:28;:46;28024:53;;27793:303;:::o;34471:170::-;34605:28;34615:4;34621:2;34625:7;34605:9;:28::i;:::-;34471:170;;;:::o;48373:167::-;47901:10;47888:23;;:9;:23;;;47880:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48454:13:::1;48441:9;:26;;48433:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;48494:38;48504:10;48516:15;48494:38;;:9;:38::i;:::-;48373:167::o:0;48548:87::-;4617:13;:11;:13::i;:::-;48610:17:::1;48620:6;48610:9;:17::i;:::-;48548:87:::0;:::o;47640:41::-;;;:::o;48645:278::-;4617:13;:11;:13::i;:::-;48693:18:::1;48714:21;48693:42;;48748:9;48768:10;48748:31;;48792:12;48831:1;:6;;48845:10;48831:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48817:43;;;;;48879:7;48871:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;48682:241;;;48645:278::o:0;34712:185::-;34850:39;34867:4;34873:2;34877:7;34850:39;;;;;;;;;;;;:16;:39::i;:::-;34712:185;;;:::o;47688:43::-;;;:::o;47740:96::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31920:124::-;31984:7;32011:20;32023:7;32011:11;:20::i;:::-;:25;;;32004:32;;31920:124;;;:::o;28913:255::-;28977:7;29018:6;29001:24;;:5;:24;;;28997:38;;29034:1;29027:8;;;;28997:38;29067:1;29050:19;;:5;:19;;;29046:60;;;29078:28;;;;;;;;;;;;;;29046:60;29132:12;:19;29145:5;29132:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29124:36;;29117:43;;28913:255;;;;:::o;4731:87::-;4777:7;4804:6;;;;;;;;;;;4797:13;;4731:87;:::o;32280:104::-;32336:13;32369:7;32362:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32280:104;:::o;48161:86::-;4617:13;:11;:13::i;:::-;48236:3:::1;48224:9;:15;;;;;;;;;;;;:::i;:::-;;48161:86:::0;:::o;33890:279::-;33993:12;:10;:12::i;:::-;33981:24;;:8;:24;;;33977:54;;;34014:17;;;;;;;;;;;;;;33977:54;34089:8;34044:18;:32;34063:12;:10;:12::i;:::-;34044:32;;;;;;;;;;;;;;;:42;34077:8;34044:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34142:8;34113:48;;34128:12;:10;:12::i;:::-;34113:48;;;34152:8;34113:48;;;;;;:::i;:::-;;;;;;;;33890:279;;:::o;34968:369::-;35135:28;35145:4;35151:2;35155:7;35135:9;:28::i;:::-;35178:15;:2;:13;;;:15::i;:::-;:76;;;;;35198:56;35229:4;35235:2;35239:7;35248:5;35198:30;:56::i;:::-;35197:57;35178:76;35174:156;;;35278:40;;;;;;;;;;;;;;35174:156;34968:369;;;;:::o;32455:318::-;32528:13;32559:16;32567:7;32559;:16::i;:::-;32554:59;;32584:29;;;;;;;;;;;;;;32554:59;32626:21;32650:10;:8;:10::i;:::-;32626:34;;32703:1;32684:7;32678:21;:26;;:87;;;;;;;;;;;;;;;;;32731:7;32740:18;:7;:16;:18::i;:::-;32714:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32678:87;32671:94;;;32455:318;;;:::o;47581:52::-;;;:::o;34240:164::-;34337:4;34361:18;:25;34380:5;34361:25;;;;;;;;;;;;;;;:35;34387:8;34361:35;;;;;;;;;;;;;;;;;;;;;;;;;34354:42;;34240:164;;;;:::o;5183:201::-;4617:13;:11;:13::i;:::-;5292:1:::1;5272:22;;:8;:22;;;;5264:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5348:28;5367:8;5348:18;:28::i;:::-;5183:201:::0;:::o;17131:157::-;17216:4;17255:25;17240:40;;;:11;:40;;;;17233:47;;17131:157;;;:::o;35592:187::-;35649:4;35692:7;35673:15;:13;:15::i;:::-;:26;;:53;;;;;35713:13;;35703:7;:23;35673:53;:98;;;;;35744:11;:20;35756:7;35744:20;;;;;;;;;;;:27;;;;;;;;;;;;35743:28;35673:98;35666:105;;35592:187;;;:::o;3282:98::-;3335:7;3362:10;3355:17;;3282:98;:::o;44513:196::-;44655:2;44628:15;:24;44644:7;44628:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44693:7;44689:2;44673:28;;44682:5;44673:28;;;;;;;;;;;;44513:196;;;:::o;48255:110::-;48329:7;48255:110;:::o;40015:2112::-;40130:35;40168:20;40180:7;40168:11;:20::i;:::-;40130:58;;40201:22;40243:13;:18;;;40227:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40278:50;40295:13;:18;;;40315:12;:10;:12::i;:::-;40278:16;:50::i;:::-;40227:101;:154;;;;40369:12;:10;:12::i;:::-;40345:36;;:20;40357:7;40345:11;:20::i;:::-;:36;;;40227:154;40201:181;;40400:17;40395:66;;40426:35;;;;;;;;;;;;;;40395:66;40498:4;40476:26;;:13;:18;;;:26;;;40472:67;;40511:28;;;;;;;;;;;;;;40472:67;40568:1;40554:16;;:2;:16;;;40550:52;;;40579:23;;;;;;;;;;;;;;40550:52;40615:43;40637:4;40643:2;40647:7;40656:1;40615:21;:43::i;:::-;40723:49;40740:1;40744:7;40753:13;:18;;;40723:8;:49::i;:::-;41098:1;41068:12;:18;41081:4;41068:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41142:1;41114:12;:16;41127:2;41114:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41188:2;41160:11;:20;41172:7;41160:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41250:15;41205:11;:20;41217:7;41205:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41518:19;41550:1;41540:7;:11;41518:33;;41611:1;41570:43;;:11;:24;41582:11;41570:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;41566:445;;;41795:13;;41781:11;:27;41777:219;;;41865:13;:18;;;41833:11;:24;41845:11;41833:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;41948:13;:28;;;41906:11;:24;41918:11;41906:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;41777:219;41566:445;41043:979;42058:7;42054:2;42039:27;;42048:4;42039:27;;;;;;;;;;;;42077:42;42098:4;42104:2;42108:7;42117:1;42077:20;:42::i;:::-;40119:2008;;40015:2112;;;:::o;35787:104::-;35856:27;35866:2;35870:8;35856:27;;;;;;;;;;;;:9;:27::i;:::-;35787:104;;:::o;4896:132::-;4971:12;:10;:12::i;:::-;4960:23;;:7;:5;:7::i;:::-;:23;;;4952:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4896:132::o;36425:116::-;36510:19;36520:8;36510:9;:19::i;:::-;36425:116;:::o;30617:1241::-;30678:21;;:::i;:::-;30712:12;30727:7;30712:22;;30795:4;30776:15;:13;:15::i;:::-;:23;;:47;;;;;30810:13;;30803:4;:20;30776:47;30772:1019;;;30844:31;30878:11;:17;30890:4;30878:17;;;;;;;;;;;30844:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30919:9;:16;;;30914:858;;30990:1;30964:28;;:9;:14;;;:28;;;30960:101;;31028:9;31021:16;;;;;;30960:101;31126:1;31118:7;:9;;;;;:::i;:::-;;;31085;:14;;:44;;;;;;;;;;;31159:9;31152:16;;;;;;30914:858;30825:966;30772:1019;31819:31;;;;;;;;;;;;;;30617:1241;;;;:::o;6975:326::-;7035:4;7292:1;7270:7;:19;;;:23;7263:30;;6975:326;;;:::o;45201:667::-;45364:4;45401:2;45385:36;;;45422:12;:10;:12::i;:::-;45436:4;45442:7;45451:5;45385:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45381:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45636:1;45619:6;:13;:18;45615:235;;;45665:40;;;;;;;;;;;;;;45615:235;45808:6;45802:13;45793:6;45789:2;45785:15;45778:38;45381:480;45514:45;;;45504:55;;;:6;:55;;;;45497:62;;;45201:667;;;;;;:::o;48042:111::-;48103:13;48136:9;48129:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48042:111;:::o;536:723::-;592:13;822:1;813:5;:10;809:53;;;840:10;;;;;;;;;;;;;;;;;;;;;809:53;872:12;887:5;872:20;;903:14;928:78;943:1;935:4;:9;928:78;;961:8;;;;;:::i;:::-;;;;992:2;984:10;;;;;:::i;:::-;;;928:78;;;1016:19;1048:6;1038:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016:39;;1066:154;1082:1;1073:5;:10;1066:154;;1110:1;1100:11;;;;;:::i;:::-;;;1177:2;1169:5;:10;;;;:::i;:::-;1156:2;:24;;;;:::i;:::-;1143:39;;1126:6;1133;1126:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1206:2;1197:11;;;;;:::i;:::-;;;1066:154;;;1244:6;1230:21;;;;;536:723;;;;:::o;5544:191::-;5618:16;5637:6;;;;;;;;;;;5618:25;;5663:8;5654:6;;:17;;;;;;;;;;;;;;;;;;5718:8;5687:40;;5708:8;5687:40;;;;;;;;;;;;5607:128;5544:191;:::o;46516:159::-;;;;;:::o;47334:158::-;;;;;:::o;36254:163::-;36377:32;36383:2;36387:8;36397:5;36404:4;36377:5;:32::i;:::-;36254:163;;;:::o;38583:1178::-;38738:1;38726:8;:13;38722:44;;;38748:18;;;;;;;;;;;;;;38722:44;38798:8;38781:13;;:25;;;;;;;:::i;:::-;;;;;;;;38583:1178;:::o;36800:1775::-;36939:20;36962:13;;36939:36;;37004:1;36990:16;;:2;:16;;;36986:48;;;37015:19;;;;;;;;;;;;;;36986:48;37061:1;37049:8;:13;37045:44;;;37071:18;;;;;;;;;;;;;;37045:44;37102:61;37132:1;37136:2;37140:12;37154:8;37102:21;:61::i;:::-;37475:8;37440:12;:16;37453:2;37440:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37539:8;37499:12;:16;37512:2;37499:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37598:2;37565:11;:25;37577:12;37565:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37665:15;37615:11;:25;37627:12;37615:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37698:20;37721:12;37698:35;;37748:11;37777:8;37762:12;:23;37748:37;;37806:4;:23;;;;;37814:15;:2;:13;;;:15::i;:::-;37806:23;37802:641;;;37850:314;37906:12;37902:2;37881:38;;37898:1;37881:38;;;;;;;;;;;;37947:69;37986:1;37990:2;37994:14;;;;;;38010:5;37947:30;:69::i;:::-;37942:174;;38052:40;;;;;;;;;;;;;;37942:174;38159:3;38143:12;:19;;37850:314;;38245:12;38228:13;;:29;38224:43;;38259:8;;;38224:43;37802:641;;;38308:120;38364:14;;;;;;38360:2;38339:40;;38356:1;38339:40;;;;;;;;;;;;38423:3;38407:12;:19;;38308:120;;37802:641;38473:12;38457:13;:28;;;;37415:1082;;38507:60;38536:1;38540:2;38544:12;38558:8;38507:20;:60::i;:::-;36928:1647;36800:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:398::-;10535:3;10556:83;10637:1;10632:3;10556:83;:::i;:::-;10549:90;;10648:93;10737:3;10648:93;:::i;:::-;10766:1;10761:3;10757:11;10750:18;;10376:398;;;:::o;10780:118::-;10867:24;10885:5;10867:24;:::i;:::-;10862:3;10855:37;10780:118;;:::o;10904:115::-;10989:23;11006:5;10989:23;:::i;:::-;10984:3;10977:36;10904:115;;:::o;11025:435::-;11205:3;11227:95;11318:3;11309:6;11227:95;:::i;:::-;11220:102;;11339:95;11430:3;11421:6;11339:95;:::i;:::-;11332:102;;11451:3;11444:10;;11025:435;;;;;:::o;11466:379::-;11650:3;11672:147;11815:3;11672:147;:::i;:::-;11665:154;;11836:3;11829:10;;11466:379;;;:::o;11851:222::-;11944:4;11982:2;11971:9;11967:18;11959:26;;11995:71;12063:1;12052:9;12048:17;12039:6;11995:71;:::i;:::-;11851:222;;;;:::o;12079:640::-;12274:4;12312:3;12301:9;12297:19;12289:27;;12326:71;12394:1;12383:9;12379:17;12370:6;12326:71;:::i;:::-;12407:72;12475:2;12464:9;12460:18;12451:6;12407:72;:::i;:::-;12489;12557:2;12546:9;12542:18;12533:6;12489:72;:::i;:::-;12608:9;12602:4;12598:20;12593:2;12582:9;12578:18;12571:48;12636:76;12707:4;12698:6;12636:76;:::i;:::-;12628:84;;12079:640;;;;;;;:::o;12725:210::-;12812:4;12850:2;12839:9;12835:18;12827:26;;12863:65;12925:1;12914:9;12910:17;12901:6;12863:65;:::i;:::-;12725:210;;;;:::o;12941:313::-;13054:4;13092:2;13081:9;13077:18;13069:26;;13141:9;13135:4;13131:20;13127:1;13116:9;13112:17;13105:47;13169:78;13242:4;13233:6;13169:78;:::i;:::-;13161:86;;12941:313;;;;:::o;13260:419::-;13426:4;13464:2;13453:9;13449:18;13441:26;;13513:9;13507:4;13503:20;13499:1;13488:9;13484:17;13477:47;13541:131;13667:4;13541:131;:::i;:::-;13533:139;;13260:419;;;:::o;13685:::-;13851:4;13889:2;13878:9;13874:18;13866:26;;13938:9;13932:4;13928:20;13924:1;13913:9;13909:17;13902:47;13966:131;14092:4;13966:131;:::i;:::-;13958:139;;13685:419;;;:::o;14110:::-;14276:4;14314:2;14303:9;14299:18;14291:26;;14363:9;14357:4;14353:20;14349:1;14338:9;14334:17;14327:47;14391:131;14517:4;14391:131;:::i;:::-;14383:139;;14110:419;;;:::o;14535:::-;14701:4;14739:2;14728:9;14724:18;14716:26;;14788:9;14782:4;14778:20;14774:1;14763:9;14759:17;14752:47;14816:131;14942:4;14816:131;:::i;:::-;14808:139;;14535:419;;;:::o;14960:::-;15126:4;15164:2;15153:9;15149:18;15141:26;;15213:9;15207:4;15203:20;15199:1;15188:9;15184:17;15177:47;15241:131;15367:4;15241:131;:::i;:::-;15233:139;;14960:419;;;:::o;15385:222::-;15478:4;15516:2;15505:9;15501:18;15493:26;;15529:71;15597:1;15586:9;15582:17;15573:6;15529:71;:::i;:::-;15385:222;;;;:::o;15613:218::-;15704:4;15742:2;15731:9;15727:18;15719:26;;15755:69;15821:1;15810:9;15806:17;15797:6;15755:69;:::i;:::-;15613:218;;;;:::o;15837:129::-;15871:6;15898:20;;:::i;:::-;15888:30;;15927:33;15955:4;15947:6;15927:33;:::i;:::-;15837:129;;;:::o;15972:75::-;16005:6;16038:2;16032:9;16022:19;;15972:75;:::o;16053:307::-;16114:4;16204:18;16196:6;16193:30;16190:56;;;16226:18;;:::i;:::-;16190:56;16264:29;16286:6;16264:29;:::i;:::-;16256:37;;16348:4;16342;16338:15;16330:23;;16053:307;;;:::o;16366:308::-;16428:4;16518:18;16510:6;16507:30;16504:56;;;16540:18;;:::i;:::-;16504:56;16578:29;16600:6;16578:29;:::i;:::-;16570:37;;16662:4;16656;16652:15;16644:23;;16366:308;;;:::o;16680:98::-;16731:6;16765:5;16759:12;16749:22;;16680:98;;;:::o;16784:99::-;16836:6;16870:5;16864:12;16854:22;;16784:99;;;:::o;16889:168::-;16972:11;17006:6;17001:3;16994:19;17046:4;17041:3;17037:14;17022:29;;16889:168;;;;:::o;17063:147::-;17164:11;17201:3;17186:18;;17063:147;;;;:::o;17216:169::-;17300:11;17334:6;17329:3;17322:19;17374:4;17369:3;17365:14;17350:29;;17216:169;;;;:::o;17391:148::-;17493:11;17530:3;17515:18;;17391:148;;;;:::o;17545:305::-;17585:3;17604:20;17622:1;17604:20;:::i;:::-;17599:25;;17638:20;17656:1;17638:20;:::i;:::-;17633:25;;17792:1;17724:66;17720:74;17717:1;17714:81;17711:107;;;17798:18;;:::i;:::-;17711:107;17842:1;17839;17835:9;17828:16;;17545:305;;;;:::o;17856:185::-;17896:1;17913:20;17931:1;17913:20;:::i;:::-;17908:25;;17947:20;17965:1;17947:20;:::i;:::-;17942:25;;17986:1;17976:35;;17991:18;;:::i;:::-;17976:35;18033:1;18030;18026:9;18021:14;;17856:185;;;;:::o;18047:191::-;18087:4;18107:20;18125:1;18107:20;:::i;:::-;18102:25;;18141:20;18159:1;18141:20;:::i;:::-;18136:25;;18180:1;18177;18174:8;18171:34;;;18185:18;;:::i;:::-;18171:34;18230:1;18227;18223:9;18215:17;;18047:191;;;;:::o;18244:96::-;18281:7;18310:24;18328:5;18310:24;:::i;:::-;18299:35;;18244:96;;;:::o;18346:90::-;18380:7;18423:5;18416:13;18409:21;18398:32;;18346:90;;;:::o;18442:149::-;18478:7;18518:66;18511:5;18507:78;18496:89;;18442:149;;;:::o;18597:126::-;18634:7;18674:42;18667:5;18663:54;18652:65;;18597:126;;;:::o;18729:77::-;18766:7;18795:5;18784:16;;18729:77;;;:::o;18812:93::-;18848:7;18888:10;18881:5;18877:22;18866:33;;18812:93;;;:::o;18911:154::-;18995:6;18990:3;18985;18972:30;19057:1;19048:6;19043:3;19039:16;19032:27;18911:154;;;:::o;19071:307::-;19139:1;19149:113;19163:6;19160:1;19157:13;19149:113;;;19248:1;19243:3;19239:11;19233:18;19229:1;19224:3;19220:11;19213:39;19185:2;19182:1;19178:10;19173:15;;19149:113;;;19280:6;19277:1;19274:13;19271:101;;;19360:1;19351:6;19346:3;19342:16;19335:27;19271:101;19120:258;19071:307;;;:::o;19384:320::-;19428:6;19465:1;19459:4;19455:12;19445:22;;19512:1;19506:4;19502:12;19533:18;19523:81;;19589:4;19581:6;19577:17;19567:27;;19523:81;19651:2;19643:6;19640:14;19620:18;19617:38;19614:84;;;19670:18;;:::i;:::-;19614:84;19435:269;19384:320;;;:::o;19710:281::-;19793:27;19815:4;19793:27;:::i;:::-;19785:6;19781:40;19923:6;19911:10;19908:22;19887:18;19875:10;19872:34;19869:62;19866:88;;;19934:18;;:::i;:::-;19866:88;19974:10;19970:2;19963:22;19753:238;19710:281;;:::o;19997:233::-;20036:3;20059:24;20077:5;20059:24;:::i;:::-;20050:33;;20105:66;20098:5;20095:77;20092:103;;;20175:18;;:::i;:::-;20092:103;20222:1;20215:5;20211:13;20204:20;;19997:233;;;:::o;20236:176::-;20268:1;20285:20;20303:1;20285:20;:::i;:::-;20280:25;;20319:20;20337:1;20319:20;:::i;:::-;20314:25;;20358:1;20348:35;;20363:18;;:::i;:::-;20348:35;20404:1;20401;20397:9;20392:14;;20236:176;;;;:::o;20418:180::-;20466:77;20463:1;20456:88;20563:4;20560:1;20553:15;20587:4;20584:1;20577:15;20604:180;20652:77;20649:1;20642:88;20749:4;20746:1;20739:15;20773:4;20770:1;20763:15;20790:180;20838:77;20835:1;20828:88;20935:4;20932:1;20925:15;20959:4;20956:1;20949:15;20976:180;21024:77;21021:1;21014:88;21121:4;21118:1;21111:15;21145:4;21142:1;21135:15;21162:180;21210:77;21207:1;21200:88;21307:4;21304:1;21297:15;21331:4;21328:1;21321:15;21348:117;21457:1;21454;21447:12;21471:117;21580:1;21577;21570:12;21594:117;21703:1;21700;21693:12;21717:117;21826:1;21823;21816:12;21840:102;21881:6;21932:2;21928:7;21923:2;21916:5;21912:14;21908:28;21898:38;;21840:102;;;:::o;21948:162::-;22088:14;22084:1;22076:6;22072:14;22065:38;21948:162;:::o;22116:225::-;22256:34;22252:1;22244:6;22240:14;22233:58;22325:8;22320:2;22312:6;22308:15;22301:33;22116:225;:::o;22347:174::-;22487:26;22483:1;22475:6;22471:14;22464:50;22347:174;:::o;22527:180::-;22667:32;22663:1;22655:6;22651:14;22644:56;22527:180;:::o;22713:182::-;22853:34;22849:1;22841:6;22837:14;22830:58;22713:182;:::o;22901:114::-;;:::o;23021:122::-;23094:24;23112:5;23094:24;:::i;:::-;23087:5;23084:35;23074:63;;23133:1;23130;23123:12;23074:63;23021:122;:::o;23149:116::-;23219:21;23234:5;23219:21;:::i;:::-;23212:5;23209:32;23199:60;;23255:1;23252;23245:12;23199:60;23149:116;:::o;23271:120::-;23343:23;23360:5;23343:23;:::i;:::-;23336:5;23333:34;23323:62;;23381:1;23378;23371:12;23323:62;23271:120;:::o;23397:122::-;23470:24;23488:5;23470:24;:::i;:::-;23463:5;23460:35;23450:63;;23509:1;23506;23499:12;23450:63;23397:122;:::o
Swarm Source
ipfs://bc0473d68802abd5b98074ed535218251206640fc5d26c28cd03c7a899a58a0e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.