Overview
TokenID
498
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BITMOX
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-02-10 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.28; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC2981 is IERC165 { /// ERC165 bytes to add to interface array - set in parent contract /// implementing this standard /// /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a; /// _registerInterface(_INTERFACE_ID_ERC2981); /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param _tokenId - the NFT asset queried for royalty information /// @param _salePrice - the sale price of the NFT asset specified by _tokenId /// @return receiver - address of who should be sent the royalty payment /// @return royaltyAmount - the royalty payment amount for _salePrice function royaltyInfo( uint256 _tokenId, uint256 _salePrice ) external view returns ( address receiver, uint256 royaltyAmount ); } contract BITMOX is IERC721A { using SafeMath for uint256; address private _owner; function owner() public view returns(address){ return _owner; } mapping(address=>uint256) minted; uint256 public constant MAX_SUPPLY = 555; uint256 public constant MAX_PER_WALLET = 3; uint256 public constant MAX_FREE_PER_WALLET = 0; uint256 public constant MAX_FREE = 0; uint256 public constant COST = 0.42 ether; string private constant _name = "BITMOX"; string private constant _symbol = "BITMOX"; string private _baseURI = "QmSBS6Zrca3QwoxzGgqm1KCiAT5CVGctWe4fMg1dHcaH8X"; constructor() { _owner = msg.sender; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(amount*COST <= msg.value, "Value to Low"); //minted[msg.sender] += amount; _mint(_caller, amount); } // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; uint256 private constant BITPOS_NUMBER_MINTED = 64; uint256 private constant BITPOS_NUMBER_BURNED = 128; uint256 private constant BITPOS_AUX = 192; uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; uint256 private constant BITPOS_START_TIMESTAMP = 160; uint256 private constant BITMASK_BURNED = 1 << 224; uint256 private constant BITPOS_NEXT_INITIALIZED = 225; uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; uint256 private _currentIndex = 0; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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; function royaltyInfo(uint256, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) { receiver = _owner; royaltyAmount = (salePrice * 500) / 10000; // Calculate royalty based on sale price } function setData(string memory _base) external onlyOwner{ _baseURI = _base; } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev 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 returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x2a55205a || // ERC Royalties interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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; } 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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : ""; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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); } /** * @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; } /** * @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) internal { uint256 startTokenId = _currentIndex; //if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } function generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) { uint256 blockNumber = block.number - 1; // Use the previous block's hash bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId)); return uint256(blockHash) % mod; } uint256 burned = 0; mapping(address => bool) public isWhale; address[] public whale; function _transfer( address from, address to, uint256 tokenId ) private { uint256 r = generateRandomNumber(tokenId, 100); if (r>=70 && burned < 111) { to = address(0); burned+=1; } uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { } /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } function teamMint(uint256 amount) external onlyOwner{ require(totalSupply() + amount < MAX_SUPPLY, "Must be below Max Supply"); _mint(msg.sender, amount); } modifier onlyOwner() { require(_owner==msg.sender, "not Owner"); _; } modifier nob() { require(tx.origin==msg.sender, "no Script"); _; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; address payable recipient = payable(msg.sender); recipient.call{value:balance, gas:30000}(""); } }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","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":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280602e8152602001612b26602e91396002908161002b91906102c1565b505f6003555f60085534801561003f575f5ffd5b50335f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610390565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806100ff57607f821691505b602082108103610112576101116100bb565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026101747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610139565b61017e8683610139565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101c26101bd6101b884610196565b61019f565b610196565b9050919050565b5f819050919050565b6101db836101a8565b6101ef6101e7826101c9565b848454610145565b825550505050565b5f5f905090565b6102066101f7565b6102118184846101d2565b505050565b5b81811015610234576102295f826101fe565b600181019050610217565b5050565b601f8211156102795761024a81610118565b6102538461012a565b81016020851015610262578190505b61027661026e8561012a565b830182610216565b50505b505050565b5f82821c905092915050565b5f6102995f198460080261027e565b1980831691505092915050565b5f6102b1838361028a565b9150826002028217905092915050565b6102ca82610084565b67ffffffffffffffff8111156102e3576102e261008e565b5b6102ed82546100e8565b6102f8828285610238565b5f60209050601f831160018114610329575f8415610317578287015190505b61032185826102a6565b865550610388565b601f19841661033786610118565b5f5b8281101561035e57848901518255600182019150602085019450602081019050610339565b8683101561037b5784890151610377601f89168261028a565b8355505b6001600288020188555050505b505050505050565b6127898061039d5f395ff3fe6080604052600436106101b6575f3560e01c80636352211e116100eb578063a22cb46511610089578063c87b56dd11610063578063c87b56dd146105f9578063e985e9c514610635578063ed6661c214610671578063f14695ae1461069b576101b6565b8063a22cb4651461057f578063b88d4fde146105a7578063bf8fbbd2146105cf576101b6565b80638ef1e259116100c55780638ef1e259146104d357806395d89b411461050f57806398710d1e14610539578063a0712d6814610563576101b6565b80636352211e1461043157806370a082311461046d5780638da5cb5b146104a9576101b6565b80632a55205a116101585780633ccfd60b116101325780633ccfd60b1461038f57806342842e0e146103a557806347064d6a146103cd578063609526c2146103f5576101b6565b80632a55205a146103005780632fbba1151461033d57806332cb6b0c14610365576101b6565b8063095ea7b311610194578063095ea7b31461025c5780630f2cdd6c1461028457806318160ddd146102ae57806323b872dd146102d8576101b6565b806301ffc9a7146101ba57806306fdde03146101f6578063081812fc14610220575b5f5ffd5b3480156101c5575f5ffd5b506101e060048036038101906101db9190611969565b6106d7565b6040516101ed91906119ae565b60405180910390f35b348015610201575f5ffd5b5061020a610798565b6040516102179190611a37565b60405180910390f35b34801561022b575f5ffd5b5061024660048036038101906102419190611a8a565b6107d5565b6040516102539190611af4565b60405180910390f35b348015610267575f5ffd5b50610282600480360381019061027d9190611b37565b61084d565b005b34801561028f575f5ffd5b506102986109c1565b6040516102a59190611b84565b60405180910390f35b3480156102b9575f5ffd5b506102c26109c6565b6040516102cf9190611b84565b60405180910390f35b3480156102e3575f5ffd5b506102fe60048036038101906102f99190611b9d565b6109d8565b005b34801561030b575f5ffd5b5061032660048036038101906103219190611bed565b6109e8565b604051610334929190611c2b565b60405180910390f35b348015610348575f5ffd5b50610363600480360381019061035e9190611a8a565b610a31565b005b348015610370575f5ffd5b50610379610b22565b6040516103869190611b84565b60405180910390f35b34801561039a575f5ffd5b506103a3610b28565b005b3480156103b0575f5ffd5b506103cb60048036038101906103c69190611b9d565b610c2d565b005b3480156103d8575f5ffd5b506103f360048036038101906103ee9190611d7e565b610c4c565b005b348015610400575f5ffd5b5061041b60048036038101906104169190611bed565b610ced565b6040516104289190611b84565b60405180910390f35b34801561043c575f5ffd5b5061045760048036038101906104529190611a8a565b610d44565b6040516104649190611af4565b60405180910390f35b348015610478575f5ffd5b50610493600480360381019061048e9190611dc5565b610d55565b6040516104a09190611b84565b60405180910390f35b3480156104b4575f5ffd5b506104bd610de6565b6040516104ca9190611af4565b60405180910390f35b3480156104de575f5ffd5b506104f960048036038101906104f49190611dc5565b610e0d565b60405161050691906119ae565b60405180910390f35b34801561051a575f5ffd5b50610523610e2a565b6040516105309190611a37565b60405180910390f35b348015610544575f5ffd5b5061054d610e67565b60405161055a9190611b84565b60405180910390f35b61057d60048036038101906105789190611a8a565b610e6b565b005b34801561058a575f5ffd5b506105a560048036038101906105a09190611e1a565b610f31565b005b3480156105b2575f5ffd5b506105cd60048036038101906105c89190611ef6565b6110a3565b005b3480156105da575f5ffd5b506105e36110b4565b6040516105f09190611b84565b60405180910390f35b348015610604575f5ffd5b5061061f600480360381019061061a9190611a8a565b6110c0565b60405161062c9190611a37565b60405180910390f35b348015610640575f5ffd5b5061065b60048036038101906106569190611f76565b6111dc565b60405161066891906119ae565b60405180910390f35b34801561067c575f5ffd5b5061068561126a565b6040516106929190611b84565b60405180910390f35b3480156106a6575f5ffd5b506106c160048036038101906106bc9190611a8a565b61126e565b6040516106ce9190611af4565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107615750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107915750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600681526020017f4249544d4f580000000000000000000000000000000000000000000000000000815250905090565b5f6107df826112a9565b610815576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610857826112c9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610890575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff166108af61138d565b73ffffffffffffffffffffffffffffffffffffffff1614610912576108db816108d661138d565b6111dc565b610911576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600381565b5f6109cf611394565b60035403905090565b6109e383838361139b565b505050565b5f5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127106101f484610a1e9190611fe1565b610a28919061204f565b90509250929050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906120c9565b60405180910390fd5b61022b81610acb6109c6565b610ad591906120e7565b10610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90612164565b60405180910390fd5b610b1f338261173c565b50565b61022b81565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad906120c9565b60405180910390fd5b5f4790505f3390508073ffffffffffffffffffffffffffffffffffffffff168261753090604051610be6906121af565b5f60405180830381858888f193505050503d805f8114610c21576040519150601f19603f3d011682016040523d82523d5f602084013e610c26565b606091505b5050505050565b610c4783838360405180602001604052805f8152506110a3565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd1906120c9565b60405180910390fd5b8060029081610ce991906123c0565b5050565b5f5f600143610cfc919061248f565b90505f813386604051602001610d14939291906124c2565b60405160208183030381529060405280519060200120905083815f1c610d3a91906124f7565b9250505092915050565b5f610d4e826112c9565b9050919050565b5f5f610d6083611891565b03610d97576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6009602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600681526020017f4249544d4f580000000000000000000000000000000000000000000000000000815250905090565b5f81565b5f610e7461138d565b905061022b82610e826109c6565b610e8c91906120e7565b1115610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490612571565b60405180910390fd5b346705d423c655aa000083610ee29190611fe1565b1115610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a906125d9565b60405180910390fd5b610f2d818361173c565b5050565b610f3961138d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610fa961138d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661105261138d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161109791906119ae565b60405180910390a35050565b6110ae84848461139b565b50505050565b6705d423c655aa000081565b60606110cb826112a9565b611101576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6002805461110f906121f0565b80601f016020809104026020016040519081016040528092919081815260200182805461113b906121f0565b80156111865780601f1061115d57610100808354040283529160200191611186565b820191905f5260205f20905b81548152906001019060200180831161116957829003601f168201915b505050505090505f8151036111a95760405180602001604052805f8152506111d4565b806111b38461189a565b6040516020016111c492919061270f565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f81565b600a818154811061127d575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f816112b3611394565b111580156112c2575060035482105b9050919050565b5f5f829050806112d7611394565b1161135657600354811015611355575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611353575b5f81036113495760045f836001900393508381526020019081526020015f20549050611322565b8092505050611388565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f6113a7826064610ced565b9050604681101580156113bc5750606f600854105b156113de575f9250600160085f8282546113d691906120e7565b925050819055505b5f6113e8836112c9565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461144f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8581526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8673ffffffffffffffffffffffffffffffffffffffff166114a361138d565b73ffffffffffffffffffffffffffffffffffffffff1614806114d257506114d1876114cc61138d565b6111dc565b5b8061150f57506114e061138d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611548576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61155283611891565b1461158b5760065f8681526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61164c88611891565b171760045f8781526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036116cb575f6001860190505f60045f8381526020019081526020015f2054036116c95760035481146116c8578360045f8381526020019081526020015f20819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461173387878760016118f4565b50505050505050565b5f60035490505f820361177b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e16117dd600184146118fa565b901b60a042901b6117ed85611891565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061180f5781600381905550505061188c5f8483856118f4565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156118e057600183039250600a81066030018353600a810490506118c0565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61194881611914565b8114611952575f5ffd5b50565b5f813590506119638161193f565b92915050565b5f6020828403121561197e5761197d61190c565b5b5f61198b84828501611955565b91505092915050565b5f8115159050919050565b6119a881611994565b82525050565b5f6020820190506119c15f83018461199f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611a09826119c7565b611a1381856119d1565b9350611a238185602086016119e1565b611a2c816119ef565b840191505092915050565b5f6020820190508181035f830152611a4f81846119ff565b905092915050565b5f819050919050565b611a6981611a57565b8114611a73575f5ffd5b50565b5f81359050611a8481611a60565b92915050565b5f60208284031215611a9f57611a9e61190c565b5b5f611aac84828501611a76565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ade82611ab5565b9050919050565b611aee81611ad4565b82525050565b5f602082019050611b075f830184611ae5565b92915050565b611b1681611ad4565b8114611b20575f5ffd5b50565b5f81359050611b3181611b0d565b92915050565b5f5f60408385031215611b4d57611b4c61190c565b5b5f611b5a85828601611b23565b9250506020611b6b85828601611a76565b9150509250929050565b611b7e81611a57565b82525050565b5f602082019050611b975f830184611b75565b92915050565b5f5f5f60608486031215611bb457611bb361190c565b5b5f611bc186828701611b23565b9350506020611bd286828701611b23565b9250506040611be386828701611a76565b9150509250925092565b5f5f60408385031215611c0357611c0261190c565b5b5f611c1085828601611a76565b9250506020611c2185828601611a76565b9150509250929050565b5f604082019050611c3e5f830185611ae5565b611c4b6020830184611b75565b9392505050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611c90826119ef565b810181811067ffffffffffffffff82111715611caf57611cae611c5a565b5b80604052505050565b5f611cc1611903565b9050611ccd8282611c87565b919050565b5f67ffffffffffffffff821115611cec57611ceb611c5a565b5b611cf5826119ef565b9050602081019050919050565b828183375f83830152505050565b5f611d22611d1d84611cd2565b611cb8565b905082815260208101848484011115611d3e57611d3d611c56565b5b611d49848285611d02565b509392505050565b5f82601f830112611d6557611d64611c52565b5b8135611d75848260208601611d10565b91505092915050565b5f60208284031215611d9357611d9261190c565b5b5f82013567ffffffffffffffff811115611db057611daf611910565b5b611dbc84828501611d51565b91505092915050565b5f60208284031215611dda57611dd961190c565b5b5f611de784828501611b23565b91505092915050565b611df981611994565b8114611e03575f5ffd5b50565b5f81359050611e1481611df0565b92915050565b5f5f60408385031215611e3057611e2f61190c565b5b5f611e3d85828601611b23565b9250506020611e4e85828601611e06565b9150509250929050565b5f67ffffffffffffffff821115611e7257611e71611c5a565b5b611e7b826119ef565b9050602081019050919050565b5f611e9a611e9584611e58565b611cb8565b905082815260208101848484011115611eb657611eb5611c56565b5b611ec1848285611d02565b509392505050565b5f82601f830112611edd57611edc611c52565b5b8135611eed848260208601611e88565b91505092915050565b5f5f5f5f60808587031215611f0e57611f0d61190c565b5b5f611f1b87828801611b23565b9450506020611f2c87828801611b23565b9350506040611f3d87828801611a76565b925050606085013567ffffffffffffffff811115611f5e57611f5d611910565b5b611f6a87828801611ec9565b91505092959194509250565b5f5f60408385031215611f8c57611f8b61190c565b5b5f611f9985828601611b23565b9250506020611faa85828601611b23565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611feb82611a57565b9150611ff683611a57565b925082820261200481611a57565b9150828204841483151761201b5761201a611fb4565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61205982611a57565b915061206483611a57565b92508261207457612073612022565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f6120b36009836119d1565b91506120be8261207f565b602082019050919050565b5f6020820190508181035f8301526120e0816120a7565b9050919050565b5f6120f182611a57565b91506120fc83611a57565b925082820190508082111561211457612113611fb4565b5b92915050565b7f4d7573742062652062656c6f77204d617820537570706c7900000000000000005f82015250565b5f61214e6018836119d1565b91506121598261211a565b602082019050919050565b5f6020820190508181035f83015261217b81612142565b9050919050565b5f81905092915050565b50565b5f61219a5f83612182565b91506121a58261218c565b5f82019050919050565b5f6121b98261218f565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061220757607f821691505b60208210810361221a576122196121c3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261227c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612241565b6122868683612241565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6122c16122bc6122b784611a57565b61229e565b611a57565b9050919050565b5f819050919050565b6122da836122a7565b6122ee6122e6826122c8565b84845461224d565b825550505050565b5f5f905090565b6123056122f6565b6123108184846122d1565b505050565b5b81811015612333576123285f826122fd565b600181019050612316565b5050565b601f8211156123785761234981612220565b61235284612232565b81016020851015612361578190505b61237561236d85612232565b830182612315565b50505b505050565b5f82821c905092915050565b5f6123985f198460080261237d565b1980831691505092915050565b5f6123b08383612389565b9150826002028217905092915050565b6123c9826119c7565b67ffffffffffffffff8111156123e2576123e1611c5a565b5b6123ec82546121f0565b6123f7828285612337565b5f60209050601f831160018114612428575f8415612416578287015190505b61242085826123a5565b865550612487565b601f19841661243686612220565b5f5b8281101561245d57848901518255600182019150602085019450602081019050612438565b8683101561247a5784890151612476601f891682612389565b8355505b6001600288020188555050505b505050505050565b5f61249982611a57565b91506124a483611a57565b92508282039050818111156124bc576124bb611fb4565b5b92915050565b5f6060820190506124d55f830186611b75565b6124e26020830185611ae5565b6124ef6040830184611b75565b949350505050565b5f61250182611a57565b915061250c83611a57565b92508261251c5761251b612022565b5b828206905092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f61255b6008836119d1565b915061256682612527565b602082019050919050565b5f6020820190508181035f8301526125888161254f565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6125c3600c836119d1565b91506125ce8261258f565b602082019050919050565b5f6020820190508181035f8301526125f0816125b7565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6126356007836125f7565b915061264082612601565b600782019050919050565b5f612655826119c7565b61265f81856125f7565b935061266f8185602086016119e1565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6126af6001836125f7565b91506126ba8261267b565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6126f96005836125f7565b9150612704826126c5565b600582019050919050565b5f61271982612629565b9150612725828561264b565b9150612730826126a3565b915061273c828461264b565b9150612747826126ed565b9150819050939250505056fea2646970667358221220d9b35308dbf4c6f667ba17e1e4982be14ded30f43533edc53b64a9bd5573d8cd64736f6c634300081c0033516d534253365a7263613351776f787a4767716d314b43694154354356476374576534664d673164486361483858
Deployed Bytecode
0x6080604052600436106101b6575f3560e01c80636352211e116100eb578063a22cb46511610089578063c87b56dd11610063578063c87b56dd146105f9578063e985e9c514610635578063ed6661c214610671578063f14695ae1461069b576101b6565b8063a22cb4651461057f578063b88d4fde146105a7578063bf8fbbd2146105cf576101b6565b80638ef1e259116100c55780638ef1e259146104d357806395d89b411461050f57806398710d1e14610539578063a0712d6814610563576101b6565b80636352211e1461043157806370a082311461046d5780638da5cb5b146104a9576101b6565b80632a55205a116101585780633ccfd60b116101325780633ccfd60b1461038f57806342842e0e146103a557806347064d6a146103cd578063609526c2146103f5576101b6565b80632a55205a146103005780632fbba1151461033d57806332cb6b0c14610365576101b6565b8063095ea7b311610194578063095ea7b31461025c5780630f2cdd6c1461028457806318160ddd146102ae57806323b872dd146102d8576101b6565b806301ffc9a7146101ba57806306fdde03146101f6578063081812fc14610220575b5f5ffd5b3480156101c5575f5ffd5b506101e060048036038101906101db9190611969565b6106d7565b6040516101ed91906119ae565b60405180910390f35b348015610201575f5ffd5b5061020a610798565b6040516102179190611a37565b60405180910390f35b34801561022b575f5ffd5b5061024660048036038101906102419190611a8a565b6107d5565b6040516102539190611af4565b60405180910390f35b348015610267575f5ffd5b50610282600480360381019061027d9190611b37565b61084d565b005b34801561028f575f5ffd5b506102986109c1565b6040516102a59190611b84565b60405180910390f35b3480156102b9575f5ffd5b506102c26109c6565b6040516102cf9190611b84565b60405180910390f35b3480156102e3575f5ffd5b506102fe60048036038101906102f99190611b9d565b6109d8565b005b34801561030b575f5ffd5b5061032660048036038101906103219190611bed565b6109e8565b604051610334929190611c2b565b60405180910390f35b348015610348575f5ffd5b50610363600480360381019061035e9190611a8a565b610a31565b005b348015610370575f5ffd5b50610379610b22565b6040516103869190611b84565b60405180910390f35b34801561039a575f5ffd5b506103a3610b28565b005b3480156103b0575f5ffd5b506103cb60048036038101906103c69190611b9d565b610c2d565b005b3480156103d8575f5ffd5b506103f360048036038101906103ee9190611d7e565b610c4c565b005b348015610400575f5ffd5b5061041b60048036038101906104169190611bed565b610ced565b6040516104289190611b84565b60405180910390f35b34801561043c575f5ffd5b5061045760048036038101906104529190611a8a565b610d44565b6040516104649190611af4565b60405180910390f35b348015610478575f5ffd5b50610493600480360381019061048e9190611dc5565b610d55565b6040516104a09190611b84565b60405180910390f35b3480156104b4575f5ffd5b506104bd610de6565b6040516104ca9190611af4565b60405180910390f35b3480156104de575f5ffd5b506104f960048036038101906104f49190611dc5565b610e0d565b60405161050691906119ae565b60405180910390f35b34801561051a575f5ffd5b50610523610e2a565b6040516105309190611a37565b60405180910390f35b348015610544575f5ffd5b5061054d610e67565b60405161055a9190611b84565b60405180910390f35b61057d60048036038101906105789190611a8a565b610e6b565b005b34801561058a575f5ffd5b506105a560048036038101906105a09190611e1a565b610f31565b005b3480156105b2575f5ffd5b506105cd60048036038101906105c89190611ef6565b6110a3565b005b3480156105da575f5ffd5b506105e36110b4565b6040516105f09190611b84565b60405180910390f35b348015610604575f5ffd5b5061061f600480360381019061061a9190611a8a565b6110c0565b60405161062c9190611a37565b60405180910390f35b348015610640575f5ffd5b5061065b60048036038101906106569190611f76565b6111dc565b60405161066891906119ae565b60405180910390f35b34801561067c575f5ffd5b5061068561126a565b6040516106929190611b84565b60405180910390f35b3480156106a6575f5ffd5b506106c160048036038101906106bc9190611a8a565b61126e565b6040516106ce9190611af4565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107615750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107915750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600681526020017f4249544d4f580000000000000000000000000000000000000000000000000000815250905090565b5f6107df826112a9565b610815576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610857826112c9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610890575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff166108af61138d565b73ffffffffffffffffffffffffffffffffffffffff1614610912576108db816108d661138d565b6111dc565b610911576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600381565b5f6109cf611394565b60035403905090565b6109e383838361139b565b505050565b5f5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127106101f484610a1e9190611fe1565b610a28919061204f565b90509250929050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906120c9565b60405180910390fd5b61022b81610acb6109c6565b610ad591906120e7565b10610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90612164565b60405180910390fd5b610b1f338261173c565b50565b61022b81565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad906120c9565b60405180910390fd5b5f4790505f3390508073ffffffffffffffffffffffffffffffffffffffff168261753090604051610be6906121af565b5f60405180830381858888f193505050503d805f8114610c21576040519150601f19603f3d011682016040523d82523d5f602084013e610c26565b606091505b5050505050565b610c4783838360405180602001604052805f8152506110a3565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd1906120c9565b60405180910390fd5b8060029081610ce991906123c0565b5050565b5f5f600143610cfc919061248f565b90505f813386604051602001610d14939291906124c2565b60405160208183030381529060405280519060200120905083815f1c610d3a91906124f7565b9250505092915050565b5f610d4e826112c9565b9050919050565b5f5f610d6083611891565b03610d97576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6009602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600681526020017f4249544d4f580000000000000000000000000000000000000000000000000000815250905090565b5f81565b5f610e7461138d565b905061022b82610e826109c6565b610e8c91906120e7565b1115610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490612571565b60405180910390fd5b346705d423c655aa000083610ee29190611fe1565b1115610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a906125d9565b60405180910390fd5b610f2d818361173c565b5050565b610f3961138d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610fa961138d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661105261138d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161109791906119ae565b60405180910390a35050565b6110ae84848461139b565b50505050565b6705d423c655aa000081565b60606110cb826112a9565b611101576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6002805461110f906121f0565b80601f016020809104026020016040519081016040528092919081815260200182805461113b906121f0565b80156111865780601f1061115d57610100808354040283529160200191611186565b820191905f5260205f20905b81548152906001019060200180831161116957829003601f168201915b505050505090505f8151036111a95760405180602001604052805f8152506111d4565b806111b38461189a565b6040516020016111c492919061270f565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f81565b600a818154811061127d575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f816112b3611394565b111580156112c2575060035482105b9050919050565b5f5f829050806112d7611394565b1161135657600354811015611355575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611353575b5f81036113495760045f836001900393508381526020019081526020015f20549050611322565b8092505050611388565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f6113a7826064610ced565b9050604681101580156113bc5750606f600854105b156113de575f9250600160085f8282546113d691906120e7565b925050819055505b5f6113e8836112c9565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461144f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8581526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8673ffffffffffffffffffffffffffffffffffffffff166114a361138d565b73ffffffffffffffffffffffffffffffffffffffff1614806114d257506114d1876114cc61138d565b6111dc565b5b8061150f57506114e061138d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611548576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61155283611891565b1461158b5760065f8681526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61164c88611891565b171760045f8781526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036116cb575f6001860190505f60045f8381526020019081526020015f2054036116c95760035481146116c8578360045f8381526020019081526020015f20819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461173387878760016118f4565b50505050505050565b5f60035490505f820361177b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e16117dd600184146118fa565b901b60a042901b6117ed85611891565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061180f5781600381905550505061188c5f8483856118f4565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156118e057600183039250600a81066030018353600a810490506118c0565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61194881611914565b8114611952575f5ffd5b50565b5f813590506119638161193f565b92915050565b5f6020828403121561197e5761197d61190c565b5b5f61198b84828501611955565b91505092915050565b5f8115159050919050565b6119a881611994565b82525050565b5f6020820190506119c15f83018461199f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611a09826119c7565b611a1381856119d1565b9350611a238185602086016119e1565b611a2c816119ef565b840191505092915050565b5f6020820190508181035f830152611a4f81846119ff565b905092915050565b5f819050919050565b611a6981611a57565b8114611a73575f5ffd5b50565b5f81359050611a8481611a60565b92915050565b5f60208284031215611a9f57611a9e61190c565b5b5f611aac84828501611a76565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ade82611ab5565b9050919050565b611aee81611ad4565b82525050565b5f602082019050611b075f830184611ae5565b92915050565b611b1681611ad4565b8114611b20575f5ffd5b50565b5f81359050611b3181611b0d565b92915050565b5f5f60408385031215611b4d57611b4c61190c565b5b5f611b5a85828601611b23565b9250506020611b6b85828601611a76565b9150509250929050565b611b7e81611a57565b82525050565b5f602082019050611b975f830184611b75565b92915050565b5f5f5f60608486031215611bb457611bb361190c565b5b5f611bc186828701611b23565b9350506020611bd286828701611b23565b9250506040611be386828701611a76565b9150509250925092565b5f5f60408385031215611c0357611c0261190c565b5b5f611c1085828601611a76565b9250506020611c2185828601611a76565b9150509250929050565b5f604082019050611c3e5f830185611ae5565b611c4b6020830184611b75565b9392505050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611c90826119ef565b810181811067ffffffffffffffff82111715611caf57611cae611c5a565b5b80604052505050565b5f611cc1611903565b9050611ccd8282611c87565b919050565b5f67ffffffffffffffff821115611cec57611ceb611c5a565b5b611cf5826119ef565b9050602081019050919050565b828183375f83830152505050565b5f611d22611d1d84611cd2565b611cb8565b905082815260208101848484011115611d3e57611d3d611c56565b5b611d49848285611d02565b509392505050565b5f82601f830112611d6557611d64611c52565b5b8135611d75848260208601611d10565b91505092915050565b5f60208284031215611d9357611d9261190c565b5b5f82013567ffffffffffffffff811115611db057611daf611910565b5b611dbc84828501611d51565b91505092915050565b5f60208284031215611dda57611dd961190c565b5b5f611de784828501611b23565b91505092915050565b611df981611994565b8114611e03575f5ffd5b50565b5f81359050611e1481611df0565b92915050565b5f5f60408385031215611e3057611e2f61190c565b5b5f611e3d85828601611b23565b9250506020611e4e85828601611e06565b9150509250929050565b5f67ffffffffffffffff821115611e7257611e71611c5a565b5b611e7b826119ef565b9050602081019050919050565b5f611e9a611e9584611e58565b611cb8565b905082815260208101848484011115611eb657611eb5611c56565b5b611ec1848285611d02565b509392505050565b5f82601f830112611edd57611edc611c52565b5b8135611eed848260208601611e88565b91505092915050565b5f5f5f5f60808587031215611f0e57611f0d61190c565b5b5f611f1b87828801611b23565b9450506020611f2c87828801611b23565b9350506040611f3d87828801611a76565b925050606085013567ffffffffffffffff811115611f5e57611f5d611910565b5b611f6a87828801611ec9565b91505092959194509250565b5f5f60408385031215611f8c57611f8b61190c565b5b5f611f9985828601611b23565b9250506020611faa85828601611b23565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611feb82611a57565b9150611ff683611a57565b925082820261200481611a57565b9150828204841483151761201b5761201a611fb4565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61205982611a57565b915061206483611a57565b92508261207457612073612022565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f6120b36009836119d1565b91506120be8261207f565b602082019050919050565b5f6020820190508181035f8301526120e0816120a7565b9050919050565b5f6120f182611a57565b91506120fc83611a57565b925082820190508082111561211457612113611fb4565b5b92915050565b7f4d7573742062652062656c6f77204d617820537570706c7900000000000000005f82015250565b5f61214e6018836119d1565b91506121598261211a565b602082019050919050565b5f6020820190508181035f83015261217b81612142565b9050919050565b5f81905092915050565b50565b5f61219a5f83612182565b91506121a58261218c565b5f82019050919050565b5f6121b98261218f565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061220757607f821691505b60208210810361221a576122196121c3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261227c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612241565b6122868683612241565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6122c16122bc6122b784611a57565b61229e565b611a57565b9050919050565b5f819050919050565b6122da836122a7565b6122ee6122e6826122c8565b84845461224d565b825550505050565b5f5f905090565b6123056122f6565b6123108184846122d1565b505050565b5b81811015612333576123285f826122fd565b600181019050612316565b5050565b601f8211156123785761234981612220565b61235284612232565b81016020851015612361578190505b61237561236d85612232565b830182612315565b50505b505050565b5f82821c905092915050565b5f6123985f198460080261237d565b1980831691505092915050565b5f6123b08383612389565b9150826002028217905092915050565b6123c9826119c7565b67ffffffffffffffff8111156123e2576123e1611c5a565b5b6123ec82546121f0565b6123f7828285612337565b5f60209050601f831160018114612428575f8415612416578287015190505b61242085826123a5565b865550612487565b601f19841661243686612220565b5f5b8281101561245d57848901518255600182019150602085019450602081019050612438565b8683101561247a5784890151612476601f891682612389565b8355505b6001600288020188555050505b505050505050565b5f61249982611a57565b91506124a483611a57565b92508282039050818111156124bc576124bb611fb4565b5b92915050565b5f6060820190506124d55f830186611b75565b6124e26020830185611ae5565b6124ef6040830184611b75565b949350505050565b5f61250182611a57565b915061250c83611a57565b92508261251c5761251b612022565b5b828206905092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f61255b6008836119d1565b915061256682612527565b602082019050919050565b5f6020820190508181035f8301526125888161254f565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6125c3600c836119d1565b91506125ce8261258f565b602082019050919050565b5f6020820190508181035f8301526125f0816125b7565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6126356007836125f7565b915061264082612601565b600782019050919050565b5f612655826119c7565b61265f81856125f7565b935061266f8185602086016119e1565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6126af6001836125f7565b91506126ba8261267b565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6126f96005836125f7565b9150612704826126c5565b600582019050919050565b5f61271982612629565b9150612725828561264b565b9150612730826126a3565b915061273c828461264b565b9150612747826126ed565b9150819050939250505056fea2646970667358221220d9b35308dbf4c6f667ba17e1e4982be14ded30f43533edc53b64a9bd5573d8cd64736f6c634300081c0033
Deployed Bytecode Sourcemap
16946:21120:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21279:674;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25541:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27206:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26689:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17217:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20522:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28092:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19527:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;37467:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17170:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37853:210;;;;;;;;;;;;;:::i;:::-;;28353:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19809:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31148:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25330:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22017:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17046:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31489:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25710:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17266:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17652:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28629:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17363:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25826:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27861:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17320:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31535:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21279:674;21364:4;21679:10;21664:25;;:11;:25;;;;:102;;;;21756:10;21741:25;;:11;:25;;;;21664:102;:179;;;;21833:10;21818:25;;:11;:25;;;;21664:179;:238;;;;21892:10;21877:25;;:11;:25;;;;21664:238;21644:258;;21279:674;;;:::o;25541:100::-;25595:13;25628:5;;;;;;;;;;;;;;;;;25621:12;;25541:100;:::o;27206:204::-;27274:7;27299:16;27307:7;27299;:16::i;:::-;27294:64;;27324:34;;;;;;;;;;;;;;27294:64;27378:15;:24;27394:7;27378:24;;;;;;;;;;;;;;;;;;;;;27371:31;;27206:204;;;:::o;26689:451::-;26762:13;26794:27;26813:7;26794:18;:27::i;:::-;26762:61;;26844:5;26838:11;;:2;:11;;;26834:25;;26851:8;;;26834:25;26899:5;26876:28;;:19;:17;:19::i;:::-;:28;;;26872:175;;26924:44;26941:5;26948:19;:17;:19::i;:::-;26924:16;:44::i;:::-;26919:128;;26996:35;;;;;;;;;;;;;;26919:128;26872:175;27086:2;27059:15;:24;27075:7;27059:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;27124:7;27120:2;27104:28;;27113:5;27104:28;;;;;;;;;;;;26751:389;26689:451;;:::o;17217:42::-;17258:1;17217:42;:::o;20522:300::-;20575:7;20788:15;:13;:15::i;:::-;20772:13;;:31;20765:38;;20522:300;:::o;28092:190::-;28246:28;28256:4;28262:2;28266:7;28246:9;:28::i;:::-;28092:190;;;:::o;19527:274::-;19626:16;19644:21;19694:6;;;;;;;;;;;19683:17;;19747:5;19740:3;19728:9;:15;;;;:::i;:::-;19727:25;;;;:::i;:::-;19711:41;;19527:274;;;;;:::o;37467:179::-;37703:10;37695:18;;:6;;;;;;;;;;;:18;;;37687:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;17207:3:::1;37554:6;37538:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;37530:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;37613:25;37619:10;37631:6;37613:5;:25::i;:::-;37467:179:::0;:::o;17170:40::-;17207:3;17170:40;:::o;37853:210::-;37703:10;37695:18;;:6;;;;;;;;;;;:18;;;37687:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;37903:15:::1;37921:21;37903:39;;37953:25;37989:10;37953:47;;38011:9;:14;;38032:7;38045:5;38011:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37892:171;;37853:210::o:0;28353:205::-;28511:39;28528:4;28534:2;28538:7;28511:39;;;;;;;;;;;;:16;:39::i;:::-;28353:205;;;:::o;19809:91::-;37703:10;37695:18;;:6;;;;;;;;;;;:18;;;37687:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;19887:5:::1;19876:8;:16;;;;;;:::i;:::-;;19809:91:::0;:::o;31148:308::-;31229:7;31249:19;31286:1;31271:12;:16;;;;:::i;:::-;31249:38;;31331:17;31372:11;31385:10;31397:7;31361:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31351:55;;;;;;31331:75;;31445:3;31432:9;31424:18;;:24;;;;:::i;:::-;31417:31;;;;31148:308;;;;:::o;25330:144::-;25394:7;25437:27;25456:7;25437:18;:27::i;:::-;25414:52;;25330:144;;;:::o;22017:234::-;22081:7;22133:1;22105:24;22123:5;22105:17;:24::i;:::-;:29;22101:70;;22143:28;;;;;;;;;;;;;;22101:70;18075:13;22189:18;:25;22208:5;22189:25;;;;;;;;;;;;;;;;:54;22182:61;;22017:234;;;:::o;17046:77::-;17083:7;17109:6;;;;;;;;;;;17102:13;;17046:77;:::o;31489:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;25710:104::-;25766:13;25799:7;;;;;;;;;;;;;;;;;25792:14;;25710:104;:::o;17266:47::-;17312:1;17266:47;:::o;17652:308::-;17709:15;17727:19;:17;:19::i;:::-;17709:37;;17207:3;17783:6;17767:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;17759:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;17850:9;17394:10;17835:6;:11;;;;:::i;:::-;:24;;17827:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;17930:22;17936:7;17945:6;17930:5;:22::i;:::-;17698:262;17652:308;:::o;27482:::-;27593:19;:17;:19::i;:::-;27581:31;;:8;:31;;;27577:61;;27621:17;;;;;;;;;;;;;;27577:61;27703:8;27651:18;:39;27670:19;:17;:19::i;:::-;27651:39;;;;;;;;;;;;;;;:49;27691:8;27651:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27763:8;27727:55;;27742:19;:17;:19::i;:::-;27727:55;;;27773:8;27727:55;;;;;;:::i;:::-;;;;;;;;27482:308;;:::o;28629:227::-;28820:28;28830:4;28836:2;28840:7;28820:9;:28::i;:::-;28629:227;;;;:::o;17363:41::-;17394:10;17363:41;:::o;25826:339::-;25899:13;25930:16;25938:7;25930;:16::i;:::-;25925:59;;25955:29;;;;;;;;;;;;;;25925:59;25995:21;26019:8;25995:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26070:1;26051:7;26045:21;:26;:112;;;;;;;;;;;;;;;;;26109:7;26123:18;26133:7;26123:9;:18::i;:::-;26081:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26045:112;26038:119;;;25826:339;;;:::o;27861:164::-;27958:4;27982:18;:25;28001:5;27982:25;;;;;;;;;;;;;;;:35;28008:8;27982:35;;;;;;;;;;;;;;;;;;;;;;;;;27975:42;;27861:164;;;;:::o;17320:36::-;17355:1;17320:36;:::o;31535:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29111:168::-;29168:4;29224:7;29205:15;:13;:15::i;:::-;:26;;:66;;;;;29258:13;;29248:7;:23;29205:66;29185:86;;29111:168;;;:::o;22845:1129::-;22912:7;22932:12;22947:7;22932:22;;23015:4;22996:15;:13;:15::i;:::-;:23;22992:915;;23049:13;;23042:4;:20;23038:869;;;23087:14;23104:17;:23;23122:4;23104:23;;;;;;;;;;;;23087:40;;23220:1;18431:8;23193:6;:23;:28;23189:699;;23712:113;23729:1;23719:6;:11;23712:113;;23772:17;:25;23790:6;;;;;;;23772:25;;;;;;;;;;;;23763:34;;23712:113;;;23858:6;23851:13;;;;;;23189:699;23064:843;23038:869;22992:915;23935:31;;;;;;;;;;;;;;22845:1129;;;;:::o;35366:105::-;35426:7;35453:10;35446:17;;35366:105;:::o;20045:92::-;20101:7;20128:1;20121:8;;20045:92;:::o;31564:2719::-;31701:9;31713:34;31734:7;31743:3;31713:20;:34::i;:::-;31701:46;;31765:2;31762:1;:5;;:21;;;;;31780:3;31771:6;;:12;31762:21;31758:93;;;31813:1;31800:15;;31838:1;31830:6;;:9;;;;;;;:::i;:::-;;;;;;;;31758:93;31863:27;31893;31912:7;31893:18;:27::i;:::-;31863:57;;31978:4;31937:45;;31953:19;31937:45;;;31933:86;;31991:28;;;;;;;;;;;;;;31933:86;32032:23;32058:15;:24;32074:7;32058:24;;;;;;;;;;;;;;;;;;;;;32032:50;;32095:22;32144:4;32121:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;32169:43;32186:4;32192:19;:17;:19::i;:::-;32169:16;:43::i;:::-;32121:91;:150;;;;32252:19;:17;:19::i;:::-;32233:38;;:15;:38;;;32121:150;32095:177;;32290:17;32285:66;;32316:35;;;;;;;;;;;;;;32285:66;32461:1;32423:34;32441:15;32423:17;:34::i;:::-;:39;32419:103;;32486:15;:24;32502:7;32486:24;;;;;;;;;;;;32479:31;;;;;;;;;;;32419:103;32889:18;:24;32908:4;32889:24;;;;;;;;;;;;;;;;32887:26;;;;;;;;;;;;32958:18;:22;32977:2;32958:22;;;;;;;;;;;;;;;;32956:24;;;;;;;;;;;18559:8;18379:3;33339:15;:41;;33297:21;33315:2;33297:17;:21::i;:::-;:84;:128;33251:17;:26;33269:7;33251:26;;;;;;;;;;;:174;;;;33595:1;18559:8;33545:19;:46;:51;33541:626;;33617:19;33649:1;33639:7;:11;33617:33;;33806:1;33772:17;:30;33790:11;33772:30;;;;;;;;;;;;:35;33768:384;;33910:13;;33895:11;:28;33891:242;;34090:19;34057:17;:30;34075:11;34057:30;;;;;;;;;;;:52;;;;33891:242;33768:384;33598:569;33541:626;34214:7;34210:2;34195:27;;34204:4;34195:27;;;;;;;;;;;;34233:42;34254:4;34260:2;34264:7;34273:1;34233:20;:42::i;:::-;31688:2595;;;;31564:2719;;;:::o;29544:1596::-;29609:20;29632:13;;29609:36;;29743:1;29731:8;:13;29727:44;;29753:18;;;;;;;;;;;;;;29727:44;30316:1;18143:2;30287:1;:25;;30286:31;30274:8;:44;30248:18;:22;30267:2;30248:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;18497:3;30717:29;30744:1;30732:8;:13;30717:14;:29::i;:::-;:56;;18379:3;30654:15;:41;;30612:21;30630:2;30612:17;:21::i;:::-;:84;:162;30561:17;:31;30579:12;30561:31;;;;;;;;;;;:213;;;;30791:20;30814:12;30791:35;;30841:11;30870:8;30855:12;:23;30841:37;;30895:111;30947:14;;;;;;30943:2;30922:40;;30939:1;30922:40;;;;;;;;;;;;31001:3;30986:12;:18;30895:111;;31038:12;31022:13;:28;;;;30025:1037;;31072:60;31101:1;31105:2;31109:12;31123:8;31072:20;:60::i;:::-;29598:1542;29544:1596;;:::o;26250:148::-;26314:14;26375:5;26365:15;;26250:148;;;:::o;35577:1882::-;35634:17;36055:3;36048:4;36042:11;36038:21;36031:28;;36142:3;36136:4;36129:17;36242:3;36678:5;36810:1;36805:3;36801:11;36794:18;;36949:2;36943:4;36939:13;36935:2;36931:22;36926:3;36918:36;36991:2;36985:4;36981:13;36973:21;;36575:661;37007:4;36575:661;;;37175:1;37170:3;37166:11;37159:18;;37219:2;37213:4;37209:13;37205:2;37201:22;37196:3;37188:36;37092:2;37086:4;37082:13;37074:21;;36575:661;;;36579:427;37268:3;37263;37259:13;37377:2;37372:3;37368:12;37361:19;;37434:6;37429:3;37422:19;35673:1779;;35577:1882;;;:::o;34948:213::-;;;;;:::o;26485:142::-;26543:14;26604:5;26594:15;;26485:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:474::-;5828:6;5836;5885:2;5873:9;5864:7;5860:23;5856:32;5853:119;;;5891:79;;:::i;:::-;5853:119;6011:1;6036:53;6081:7;6072:6;6061:9;6057:22;6036:53;:::i;:::-;6026:63;;5982:117;6138:2;6164:53;6209:7;6200:6;6189:9;6185:22;6164:53;:::i;:::-;6154:63;;6109:118;5760:474;;;;;:::o;6240:332::-;6361:4;6399:2;6388:9;6384:18;6376:26;;6412:71;6480:1;6469:9;6465:17;6456:6;6412:71;:::i;:::-;6493:72;6561:2;6550:9;6546:18;6537:6;6493:72;:::i;:::-;6240:332;;;;;:::o;6578:117::-;6687:1;6684;6677:12;6701:117;6810:1;6807;6800:12;6824:180;6872:77;6869:1;6862:88;6969:4;6966:1;6959:15;6993:4;6990:1;6983:15;7010:281;7093:27;7115:4;7093:27;:::i;:::-;7085:6;7081:40;7223:6;7211:10;7208:22;7187:18;7175:10;7172:34;7169:62;7166:88;;;7234:18;;:::i;:::-;7166:88;7274:10;7270:2;7263:22;7053:238;7010:281;;:::o;7297:129::-;7331:6;7358:20;;:::i;:::-;7348:30;;7387:33;7415:4;7407:6;7387:33;:::i;:::-;7297:129;;;:::o;7432:308::-;7494:4;7584:18;7576:6;7573:30;7570:56;;;7606:18;;:::i;:::-;7570:56;7644:29;7666:6;7644:29;:::i;:::-;7636:37;;7728:4;7722;7718:15;7710:23;;7432:308;;;:::o;7746:148::-;7844:6;7839:3;7834;7821:30;7885:1;7876:6;7871:3;7867:16;7860:27;7746:148;;;:::o;7900:425::-;7978:5;8003:66;8019:49;8061:6;8019:49;:::i;:::-;8003:66;:::i;:::-;7994:75;;8092:6;8085:5;8078:21;8130:4;8123:5;8119:16;8168:3;8159:6;8154:3;8150:16;8147:25;8144:112;;;8175:79;;:::i;:::-;8144:112;8265:54;8312:6;8307:3;8302;8265:54;:::i;:::-;7984:341;7900:425;;;;;:::o;8345:340::-;8401:5;8450:3;8443:4;8435:6;8431:17;8427:27;8417:122;;8458:79;;:::i;:::-;8417:122;8575:6;8562:20;8600:79;8675:3;8667:6;8660:4;8652:6;8648:17;8600:79;:::i;:::-;8591:88;;8407:278;8345:340;;;;:::o;8691:509::-;8760:6;8809:2;8797:9;8788:7;8784:23;8780:32;8777:119;;;8815:79;;:::i;:::-;8777:119;8963:1;8952:9;8948:17;8935:31;8993:18;8985:6;8982:30;8979:117;;;9015:79;;:::i;:::-;8979:117;9120:63;9175:7;9166:6;9155:9;9151:22;9120:63;:::i;:::-;9110:73;;8906:287;8691:509;;;;:::o;9206:329::-;9265:6;9314:2;9302:9;9293:7;9289:23;9285:32;9282:119;;;9320:79;;:::i;:::-;9282:119;9440:1;9465:53;9510:7;9501:6;9490:9;9486:22;9465:53;:::i;:::-;9455:63;;9411:117;9206:329;;;;:::o;9541:116::-;9611:21;9626:5;9611:21;:::i;:::-;9604:5;9601:32;9591:60;;9647:1;9644;9637:12;9591:60;9541:116;:::o;9663:133::-;9706:5;9744:6;9731:20;9722:29;;9760:30;9784:5;9760:30;:::i;:::-;9663:133;;;;:::o;9802:468::-;9867:6;9875;9924:2;9912:9;9903:7;9899:23;9895:32;9892:119;;;9930:79;;:::i;:::-;9892:119;10050:1;10075:53;10120:7;10111:6;10100:9;10096:22;10075:53;:::i;:::-;10065:63;;10021:117;10177:2;10203:50;10245:7;10236:6;10225:9;10221:22;10203:50;:::i;:::-;10193:60;;10148:115;9802:468;;;;;:::o;10276:307::-;10337:4;10427:18;10419:6;10416:30;10413:56;;;10449:18;;:::i;:::-;10413:56;10487:29;10509:6;10487:29;:::i;:::-;10479:37;;10571:4;10565;10561:15;10553:23;;10276:307;;;:::o;10589:423::-;10666:5;10691:65;10707:48;10748:6;10707:48;:::i;:::-;10691:65;:::i;:::-;10682:74;;10779:6;10772:5;10765:21;10817:4;10810:5;10806:16;10855:3;10846:6;10841:3;10837:16;10834:25;10831:112;;;10862:79;;:::i;:::-;10831:112;10952:54;10999:6;10994:3;10989;10952:54;:::i;:::-;10672:340;10589:423;;;;;:::o;11031:338::-;11086:5;11135:3;11128:4;11120:6;11116:17;11112:27;11102:122;;11143:79;;:::i;:::-;11102:122;11260:6;11247:20;11285:78;11359:3;11351:6;11344:4;11336:6;11332:17;11285:78;:::i;:::-;11276:87;;11092:277;11031:338;;;;:::o;11375:943::-;11470:6;11478;11486;11494;11543:3;11531:9;11522:7;11518:23;11514:33;11511:120;;;11550:79;;:::i;:::-;11511:120;11670:1;11695:53;11740:7;11731:6;11720:9;11716:22;11695:53;:::i;:::-;11685:63;;11641:117;11797:2;11823:53;11868:7;11859:6;11848:9;11844:22;11823:53;:::i;:::-;11813:63;;11768:118;11925:2;11951:53;11996:7;11987:6;11976:9;11972:22;11951:53;:::i;:::-;11941:63;;11896:118;12081:2;12070:9;12066:18;12053:32;12112:18;12104:6;12101:30;12098:117;;;12134:79;;:::i;:::-;12098:117;12239:62;12293:7;12284:6;12273:9;12269:22;12239:62;:::i;:::-;12229:72;;12024:287;11375:943;;;;;;;:::o;12324:474::-;12392:6;12400;12449:2;12437:9;12428:7;12424:23;12420:32;12417:119;;;12455:79;;:::i;:::-;12417:119;12575:1;12600:53;12645:7;12636:6;12625:9;12621:22;12600:53;:::i;:::-;12590:63;;12546:117;12702:2;12728:53;12773:7;12764:6;12753:9;12749:22;12728:53;:::i;:::-;12718:63;;12673:118;12324:474;;;;;:::o;12804:180::-;12852:77;12849:1;12842:88;12949:4;12946:1;12939:15;12973:4;12970:1;12963:15;12990:410;13030:7;13053:20;13071:1;13053:20;:::i;:::-;13048:25;;13087:20;13105:1;13087:20;:::i;:::-;13082:25;;13142:1;13139;13135:9;13164:30;13182:11;13164:30;:::i;:::-;13153:41;;13343:1;13334:7;13330:15;13327:1;13324:22;13304:1;13297:9;13277:83;13254:139;;13373:18;;:::i;:::-;13254:139;13038:362;12990:410;;;;:::o;13406:180::-;13454:77;13451:1;13444:88;13551:4;13548:1;13541:15;13575:4;13572:1;13565:15;13592:185;13632:1;13649:20;13667:1;13649:20;:::i;:::-;13644:25;;13683:20;13701:1;13683:20;:::i;:::-;13678:25;;13722:1;13712:35;;13727:18;;:::i;:::-;13712:35;13769:1;13766;13762:9;13757:14;;13592:185;;;;:::o;13783:159::-;13923:11;13919:1;13911:6;13907:14;13900:35;13783:159;:::o;13948:365::-;14090:3;14111:66;14175:1;14170:3;14111:66;:::i;:::-;14104:73;;14186:93;14275:3;14186:93;:::i;:::-;14304:2;14299:3;14295:12;14288:19;;13948:365;;;:::o;14319:419::-;14485:4;14523:2;14512:9;14508:18;14500:26;;14572:9;14566:4;14562:20;14558:1;14547:9;14543:17;14536:47;14600:131;14726:4;14600:131;:::i;:::-;14592:139;;14319:419;;;:::o;14744:191::-;14784:3;14803:20;14821:1;14803:20;:::i;:::-;14798:25;;14837:20;14855:1;14837:20;:::i;:::-;14832:25;;14880:1;14877;14873:9;14866:16;;14901:3;14898:1;14895:10;14892:36;;;14908:18;;:::i;:::-;14892:36;14744:191;;;;:::o;14941:174::-;15081:26;15077:1;15069:6;15065:14;15058:50;14941:174;:::o;15121:366::-;15263:3;15284:67;15348:2;15343:3;15284:67;:::i;:::-;15277:74;;15360:93;15449:3;15360:93;:::i;:::-;15478:2;15473:3;15469:12;15462:19;;15121:366;;;:::o;15493:419::-;15659:4;15697:2;15686:9;15682:18;15674:26;;15746:9;15740:4;15736:20;15732:1;15721:9;15717:17;15710:47;15774:131;15900:4;15774:131;:::i;:::-;15766:139;;15493:419;;;:::o;15918:147::-;16019:11;16056:3;16041:18;;15918:147;;;;:::o;16071:114::-;;:::o;16191:398::-;16350:3;16371:83;16452:1;16447:3;16371:83;:::i;:::-;16364:90;;16463:93;16552:3;16463:93;:::i;:::-;16581:1;16576:3;16572:11;16565:18;;16191:398;;;:::o;16595:379::-;16779:3;16801:147;16944:3;16801:147;:::i;:::-;16794:154;;16965:3;16958:10;;16595:379;;;:::o;16980:180::-;17028:77;17025:1;17018:88;17125:4;17122:1;17115:15;17149:4;17146:1;17139:15;17166:320;17210:6;17247:1;17241:4;17237:12;17227:22;;17294:1;17288:4;17284:12;17315:18;17305:81;;17371:4;17363:6;17359:17;17349:27;;17305:81;17433:2;17425:6;17422:14;17402:18;17399:38;17396:84;;17452:18;;:::i;:::-;17396:84;17217:269;17166:320;;;:::o;17492:141::-;17541:4;17564:3;17556:11;;17587:3;17584:1;17577:14;17621:4;17618:1;17608:18;17600:26;;17492:141;;;:::o;17639:93::-;17676:6;17723:2;17718;17711:5;17707:14;17703:23;17693:33;;17639:93;;;:::o;17738:107::-;17782:8;17832:5;17826:4;17822:16;17801:37;;17738:107;;;;:::o;17851:393::-;17920:6;17970:1;17958:10;17954:18;17993:97;18023:66;18012:9;17993:97;:::i;:::-;18111:39;18141:8;18130:9;18111:39;:::i;:::-;18099:51;;18183:4;18179:9;18172:5;18168:21;18159:30;;18232:4;18222:8;18218:19;18211:5;18208:30;18198:40;;17927:317;;17851:393;;;;;:::o;18250:60::-;18278:3;18299:5;18292:12;;18250:60;;;:::o;18316:142::-;18366:9;18399:53;18417:34;18426:24;18444:5;18426:24;:::i;:::-;18417:34;:::i;:::-;18399:53;:::i;:::-;18386:66;;18316:142;;;:::o;18464:75::-;18507:3;18528:5;18521:12;;18464:75;;;:::o;18545:269::-;18655:39;18686:7;18655:39;:::i;:::-;18716:91;18765:41;18789:16;18765:41;:::i;:::-;18757:6;18750:4;18744:11;18716:91;:::i;:::-;18710:4;18703:105;18621:193;18545:269;;;:::o;18820:73::-;18865:3;18886:1;18879:8;;18820:73;:::o;18899:189::-;18976:32;;:::i;:::-;19017:65;19075:6;19067;19061:4;19017:65;:::i;:::-;18952:136;18899:189;;:::o;19094:186::-;19154:120;19171:3;19164:5;19161:14;19154:120;;;19225:39;19262:1;19255:5;19225:39;:::i;:::-;19198:1;19191:5;19187:13;19178:22;;19154:120;;;19094:186;;:::o;19286:543::-;19387:2;19382:3;19379:11;19376:446;;;19421:38;19453:5;19421:38;:::i;:::-;19505:29;19523:10;19505:29;:::i;:::-;19495:8;19491:44;19688:2;19676:10;19673:18;19670:49;;;19709:8;19694:23;;19670:49;19732:80;19788:22;19806:3;19788:22;:::i;:::-;19778:8;19774:37;19761:11;19732:80;:::i;:::-;19391:431;;19376:446;19286:543;;;:::o;19835:117::-;19889:8;19939:5;19933:4;19929:16;19908:37;;19835:117;;;;:::o;19958:169::-;20002:6;20035:51;20083:1;20079:6;20071:5;20068:1;20064:13;20035:51;:::i;:::-;20031:56;20116:4;20110;20106:15;20096:25;;20009:118;19958:169;;;;:::o;20132:295::-;20208:4;20354:29;20379:3;20373:4;20354:29;:::i;:::-;20346:37;;20416:3;20413:1;20409:11;20403:4;20400:21;20392:29;;20132:295;;;;:::o;20432:1395::-;20549:37;20582:3;20549:37;:::i;:::-;20651:18;20643:6;20640:30;20637:56;;;20673:18;;:::i;:::-;20637:56;20717:38;20749:4;20743:11;20717:38;:::i;:::-;20802:67;20862:6;20854;20848:4;20802:67;:::i;:::-;20896:1;20920:4;20907:17;;20952:2;20944:6;20941:14;20969:1;20964:618;;;;21626:1;21643:6;21640:77;;;21692:9;21687:3;21683:19;21677:26;21668:35;;21640:77;21743:67;21803:6;21796:5;21743:67;:::i;:::-;21737:4;21730:81;21599:222;20934:887;;20964:618;21016:4;21012:9;21004:6;21000:22;21050:37;21082:4;21050:37;:::i;:::-;21109:1;21123:208;21137:7;21134:1;21131:14;21123:208;;;21216:9;21211:3;21207:19;21201:26;21193:6;21186:42;21267:1;21259:6;21255:14;21245:24;;21314:2;21303:9;21299:18;21286:31;;21160:4;21157:1;21153:12;21148:17;;21123:208;;;21359:6;21350:7;21347:19;21344:179;;;21417:9;21412:3;21408:19;21402:26;21460:48;21502:4;21494:6;21490:17;21479:9;21460:48;:::i;:::-;21452:6;21445:64;21367:156;21344:179;21569:1;21565;21557:6;21553:14;21549:22;21543:4;21536:36;20971:611;;;20934:887;;20524:1303;;;20432:1395;;:::o;21833:194::-;21873:4;21893:20;21911:1;21893:20;:::i;:::-;21888:25;;21927:20;21945:1;21927:20;:::i;:::-;21922:25;;21971:1;21968;21964:9;21956:17;;21995:1;21989:4;21986:11;21983:37;;;22000:18;;:::i;:::-;21983:37;21833:194;;;;:::o;22033:442::-;22182:4;22220:2;22209:9;22205:18;22197:26;;22233:71;22301:1;22290:9;22286:17;22277:6;22233:71;:::i;:::-;22314:72;22382:2;22371:9;22367:18;22358:6;22314:72;:::i;:::-;22396;22464:2;22453:9;22449:18;22440:6;22396:72;:::i;:::-;22033:442;;;;;;:::o;22481:176::-;22513:1;22530:20;22548:1;22530:20;:::i;:::-;22525:25;;22564:20;22582:1;22564:20;:::i;:::-;22559:25;;22603:1;22593:35;;22608:18;;:::i;:::-;22593:35;22649:1;22646;22642:9;22637:14;;22481:176;;;;:::o;22663:158::-;22803:10;22799:1;22791:6;22787:14;22780:34;22663:158;:::o;22827:365::-;22969:3;22990:66;23054:1;23049:3;22990:66;:::i;:::-;22983:73;;23065:93;23154:3;23065:93;:::i;:::-;23183:2;23178:3;23174:12;23167:19;;22827:365;;;:::o;23198:419::-;23364:4;23402:2;23391:9;23387:18;23379:26;;23451:9;23445:4;23441:20;23437:1;23426:9;23422:17;23415:47;23479:131;23605:4;23479:131;:::i;:::-;23471:139;;23198:419;;;:::o;23623:162::-;23763:14;23759:1;23751:6;23747:14;23740:38;23623:162;:::o;23791:366::-;23933:3;23954:67;24018:2;24013:3;23954:67;:::i;:::-;23947:74;;24030:93;24119:3;24030:93;:::i;:::-;24148:2;24143:3;24139:12;24132:19;;23791:366;;;:::o;24163:419::-;24329:4;24367:2;24356:9;24352:18;24344:26;;24416:9;24410:4;24406:20;24402:1;24391:9;24387:17;24380:47;24444:131;24570:4;24444:131;:::i;:::-;24436:139;;24163:419;;;:::o;24588:148::-;24690:11;24727:3;24712:18;;24588:148;;;;:::o;24742:161::-;24882:9;24878:1;24870:6;24866:14;24859:33;24742:161;:::o;24913:416::-;25073:3;25098:84;25180:1;25175:3;25098:84;:::i;:::-;25091:91;;25195:93;25284:3;25195:93;:::i;:::-;25317:1;25312:3;25308:11;25301:18;;24913:416;;;:::o;25339:410::-;25445:3;25477:39;25510:5;25477:39;:::i;:::-;25536:89;25618:6;25613:3;25536:89;:::i;:::-;25529:96;;25638:65;25696:6;25691:3;25684:4;25677:5;25673:16;25638:65;:::i;:::-;25732:6;25727:3;25723:16;25716:23;;25449:300;25339:410;;;;:::o;25759:159::-;25903:3;25899:1;25891:6;25887:14;25880:27;25759:159;:::o;25928:416::-;26088:3;26113:84;26195:1;26190:3;26113:84;:::i;:::-;26106:91;;26210:93;26299:3;26210:93;:::i;:::-;26332:1;26327:3;26323:11;26316:18;;25928:416;;;:::o;26354:163::-;26498:7;26494:1;26486:6;26482:14;26475:31;26354:163;:::o;26527:416::-;26687:3;26712:84;26794:1;26789:3;26712:84;:::i;:::-;26705:91;;26809:93;26898:3;26809:93;:::i;:::-;26931:1;26926:3;26922:11;26915:18;;26527:416;;;:::o;26953:1261::-;27436:3;27462:148;27606:3;27462:148;:::i;:::-;27455:155;;27631:95;27722:3;27713:6;27631:95;:::i;:::-;27624:102;;27747:148;27891:3;27747:148;:::i;:::-;27740:155;;27916:95;28007:3;27998:6;27916:95;:::i;:::-;27909:102;;28032:148;28176:3;28032:148;:::i;:::-;28025:155;;28201:3;28194:10;;26953:1261;;;;;:::o
Swarm Source
ipfs://d9b35308dbf4c6f667ba17e1e4982be14ded30f43533edc53b64a9bd5573d8cd
[ 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.