Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 135 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 16620712 | 700 days ago | IN | 0 ETH | 0.00148726 | ||||
Set Approval For... | 15117708 | 918 days ago | IN | 0 ETH | 0.00080076 | ||||
Set Approval For... | 15089976 | 922 days ago | IN | 0 ETH | 0.0010228 | ||||
Withdraw | 15073567 | 924 days ago | IN | 0 ETH | 0.00040822 | ||||
Set Approval For... | 15062511 | 926 days ago | IN | 0 ETH | 0.00058449 | ||||
Set Approval For... | 15056168 | 927 days ago | IN | 0 ETH | 0.00071357 | ||||
Mint | 15056074 | 927 days ago | IN | 0 ETH | 0.00024346 | ||||
Set Only Whiteli... | 15043702 | 929 days ago | IN | 0 ETH | 0.00083813 | ||||
Mint | 15040096 | 930 days ago | IN | 0 ETH | 0.0053918 | ||||
Set Approval For... | 15039462 | 930 days ago | IN | 0 ETH | 0.00120813 | ||||
Mint | 15037816 | 930 days ago | IN | 0 ETH | 0.00258138 | ||||
Mint | 15037815 | 930 days ago | IN | 0 ETH | 0.00325557 | ||||
Mint | 15037787 | 930 days ago | IN | 0 ETH | 0.00259346 | ||||
Mint | 15037785 | 930 days ago | IN | 0 ETH | 0.0033535 | ||||
Set Approval For... | 15036330 | 931 days ago | IN | 0 ETH | 0.00234183 | ||||
Mint | 15035818 | 931 days ago | IN | 0 ETH | 0.00083358 | ||||
Mint | 15035750 | 931 days ago | IN | 0 ETH | 0.00238896 | ||||
Transfer From | 15035376 | 931 days ago | IN | 0 ETH | 0.00825652 | ||||
Set Approval For... | 15035197 | 931 days ago | IN | 0 ETH | 0.00521912 | ||||
Mint | 15035151 | 931 days ago | IN | 0 ETH | 0.01448376 | ||||
Mint | 15035137 | 931 days ago | IN | 0 ETH | 0.00663406 | ||||
Mint | 15035130 | 931 days ago | IN | 0 ETH | 0.00574895 | ||||
Mint | 15035118 | 931 days ago | IN | 0 ETH | 0.01128735 | ||||
Transfer | 15034702 | 931 days ago | IN | 0 ETH | 0.00194561 | ||||
Mint | 15034382 | 931 days ago | IN | 0 ETH | 0.00338564 |
Loading...
Loading
Contract Name:
HungryBullsContract
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-28 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 - _burnCounter - _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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @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 == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(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 number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & 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); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev 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 ApprovalToCurrentOwner(); 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); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // 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; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // 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); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. 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 Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | 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, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @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) } } } // File: contracts/HungryBullsContract.sol pragma solidity >=0.7.0 <0.9.0; contract HungryBullsContract is ERC721A, Ownable { //using Strings for uint256; string public baseURI = ""; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.08 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 50; uint256 public nftPerAddressLimit = 50; bool public paused = false; bool public revealed = false; bool public onlyWhitelisted = false; bytes32 public merkleRoot; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor() ERC721A("HungryBulls", "HBL") { setNotRevealedURI("https://gateway.pinata.cloud/ipfs/QmRLGdmFvViJPMC1YbB3WpdCSzyWW3FcXiShbsDFdR5FHb/"); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // //when presale is enabled function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable { require(!paused, "the contract is paused"); require(onlyWhitelisted, "Can call it in presale"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { //require(isWhitelisted(msg.sender), "user is not whitelisted"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid Proof"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } _safeMint(msg.sender, _mintAmount); addressMintedBalance[msg.sender] = addressMintedBalance[msg.sender] + _mintAmount; // for (uint256 i = 1; i <= _mintAmount; i++) { // addressMintedBalance[msg.sender]++; // _safeMint(msg.sender, supply + i); // } } //when presale is not enabled function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); require(!onlyWhitelisted, "Cant call it in presale"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount, "insufficient funds"); } _safeMint(msg.sender, _mintAmount); addressMintedBalance[msg.sender] = addressMintedBalance[msg.sender] + _mintAmount; // for (uint256 i = 1; i <= _mintAmount; i++) { // addressMintedBalance[msg.sender]++; // _safeMint(msg.sender, supply + i); // } } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if(revealed == false) { return notRevealedUri; } string memory myBaseURI = _baseURI(); return bytes(myBaseURI).length != 0 ? string(abi.encodePacked(myBaseURI, _toString(tokenId), baseExtension)) : ''; } //only owner function setMerkleRoot(bytes32 _hash) public onlyOwner { merkleRoot = _hash; } function reveal(bool _state) public onlyOwner { revealed = _state; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600990805190602001906200002b929190620003a3565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000079929190620003a3565b5067011c37937e080000600c55612710600d556032600e556032600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff021916908315150217905550348015620000f457600080fd5b506040518060400160405280600b81526020017f48756e67727942756c6c730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f48424c0000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000179929190620003a3565b50806003908051906020019062000192929190620003a3565b50620001a3620001fb60201b60201c565b6000819055505050620001cb620001bf6200020060201b60201c565b6200020860201b60201c565b620001f56040518060800160405280605181526020016200468160519139620002ce60201b60201c565b6200053b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002de6200020060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003046200037960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200035d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000354906200047a565b60405180910390fd5b80600b908051906020019062000375929190620003a3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003b190620004ad565b90600052602060002090601f016020900481019282620003d5576000855562000421565b82601f10620003f057805160ff191683800117855562000421565b8280016001018555821562000421579182015b828111156200042057825182559160200191906001019062000403565b5b50905062000430919062000434565b5090565b5b808211156200044f57600081600090555060010162000435565b5090565b6000620004626020836200049c565b91506200046f8262000512565b602082019050919050565b60006020820190508181036000830152620004958162000453565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004c657607f821691505b60208210811415620004dd57620004dc620004e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614136806200054b6000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063ba4e5c49116100b6578063d2cab0561161007a578063d2cab056146108c5578063d5abeb01146108e1578063da3ef23f1461090c578063e985e9c514610935578063f2c4ce1e14610972578063f2fde38b1461099b5761025c565b8063ba4e5c49146107cc578063ba7d2c7614610809578063c668286214610834578063c87b56dd1461085f578063d0eb26b01461089c5761025c565b8063940cd05b11610108578063940cd05b146106df57806395d89b41146107085780639c70b51214610733578063a0712d681461075e578063a22cb4651461077a578063b88d4fde146107a35761025c565b806370a082311461060e578063715018a61461064b5780637cb64759146106625780637f00c7a61461068b5780638da5cb5b146106b45761025c565b806323b872dd116101dd57806344a0d68a116101a157806344a0d68a146104fe578063518302271461052757806355f804b3146105525780635c975abb1461057b5780636352211e146105a65780636c0360eb146105e35761025c565b806323b872dd146104415780632eb4a7ab1461046a5780633c952764146104955780633ccfd60b146104be57806342842e0e146104d55761025c565b8063095ea7b311610224578063095ea7b31461035a57806313faede61461038357806318160ddd146103ae57806318cae269146103d9578063239c70ae146104165761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c7578063081812fc146102f2578063081c8c441461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906133bb565b6109c4565b6040516102959190613894565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613361565b610a56565b005b3480156102d357600080fd5b506102dc610aef565b6040516102e991906138ca565b60405180910390f35b3480156102fe57600080fd5b506103196004803603810190610314919061345e565b610b81565b604051610326919061382d565b60405180910390f35b34801561033b57600080fd5b50610344610bfd565b60405161035191906138ca565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613321565b610c8b565b005b34801561038f57600080fd5b50610398610e32565b6040516103a59190613a4c565b60405180910390f35b3480156103ba57600080fd5b506103c3610e38565b6040516103d09190613a4c565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061319e565b610e4f565b60405161040d9190613a4c565b60405180910390f35b34801561042257600080fd5b5061042b610e67565b6040516104389190613a4c565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061320b565b610e6d565b005b34801561047657600080fd5b5061047f610e7d565b60405161048c91906138af565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613361565b610e83565b005b3480156104ca57600080fd5b506104d3610f1c565b005b3480156104e157600080fd5b506104fc60048036038101906104f7919061320b565b610fe7565b005b34801561050a57600080fd5b506105256004803603810190610520919061345e565b611007565b005b34801561053357600080fd5b5061053c61108d565b6040516105499190613894565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613415565b6110a0565b005b34801561058757600080fd5b50610590611136565b60405161059d9190613894565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061345e565b611149565b6040516105da919061382d565b60405180910390f35b3480156105ef57600080fd5b506105f861115b565b60405161060591906138ca565b60405180910390f35b34801561061a57600080fd5b506106356004803603810190610630919061319e565b6111e9565b6040516106429190613a4c565b60405180910390f35b34801561065757600080fd5b506106606112a2565b005b34801561066e57600080fd5b506106896004803603810190610684919061338e565b61132a565b005b34801561069757600080fd5b506106b260048036038101906106ad919061345e565b6113b0565b005b3480156106c057600080fd5b506106c9611436565b6040516106d6919061382d565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613361565b611460565b005b34801561071457600080fd5b5061071d6114f9565b60405161072a91906138ca565b60405180910390f35b34801561073f57600080fd5b5061074861158b565b6040516107559190613894565b60405180910390f35b6107786004803603810190610773919061345e565b61159e565b005b34801561078657600080fd5b506107a1600480360381019061079c91906132e1565b611849565b005b3480156107af57600080fd5b506107ca60048036038101906107c5919061325e565b6119c1565b005b3480156107d857600080fd5b506107f360048036038101906107ee919061345e565b611a34565b604051610800919061382d565b60405180910390f35b34801561081557600080fd5b5061081e611a73565b60405161082b9190613a4c565b60405180910390f35b34801561084057600080fd5b50610849611a79565b60405161085691906138ca565b60405180910390f35b34801561086b57600080fd5b506108866004803603810190610881919061345e565b611b07565b60405161089391906138ca565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be919061345e565b611c58565b005b6108df60048036038101906108da919061348b565b611cde565b005b3480156108ed57600080fd5b506108f66120f5565b6040516109039190613a4c565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e9190613415565b6120fb565b005b34801561094157600080fd5b5061095c600480360381019061095791906131cb565b612191565b6040516109699190613894565b60405180910390f35b34801561097e57600080fd5b5061099960048036038101906109949190613415565b612225565b005b3480156109a757600080fd5b506109c260048036038101906109bd919061319e565b6122bb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a5e6123b3565b73ffffffffffffffffffffffffffffffffffffffff16610a7c611436565b73ffffffffffffffffffffffffffffffffffffffff1614610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906139ac565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060028054610afe90613cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a90613cb6565b8015610b775780601f10610b4c57610100808354040283529160200191610b77565b820191906000526020600020905b815481529060010190602001808311610b5a57829003601f168201915b5050505050905090565b6000610b8c826123bb565b610bc2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610c0a90613cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3690613cb6565b8015610c835780601f10610c5857610100808354040283529160200191610c83565b820191906000526020600020905b815481529060010190602001808311610c6657829003601f168201915b505050505081565b6000610c968261241a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1d6124e8565b73ffffffffffffffffffffffffffffffffffffffff1614610d8057610d4981610d446124e8565b612191565b610d7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610e426124f0565b6001546000540303905090565b60136020528060005260406000206000915090505481565b600e5481565b610e788383836124f5565b505050565b60115481565b610e8b6123b3565b73ffffffffffffffffffffffffffffffffffffffff16610ea9611436565b73ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef6906139ac565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b610f246123b3565b73ffffffffffffffffffffffffffffffffffffffff16610f42611436565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906139ac565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fe3573d6000803e3d6000fd5b5050565b611002838383604051806020016040528060008152506119c1565b505050565b61100f6123b3565b73ffffffffffffffffffffffffffffffffffffffff1661102d611436565b73ffffffffffffffffffffffffffffffffffffffff1614611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906139ac565b60405180910390fd5b80600c8190555050565b601060019054906101000a900460ff1681565b6110a86123b3565b73ffffffffffffffffffffffffffffffffffffffff166110c6611436565b73ffffffffffffffffffffffffffffffffffffffff161461111c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611113906139ac565b60405180910390fd5b8060099080519060200190611132929190612f47565b5050565b601060009054906101000a900460ff1681565b60006111548261241a565b9050919050565b6009805461116890613cb6565b80601f016020809104026020016040519081016040528092919081815260200182805461119490613cb6565b80156111e15780601f106111b6576101008083540402835291602001916111e1565b820191906000526020600020905b8154815290600101906020018083116111c457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611251576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112aa6123b3565b73ffffffffffffffffffffffffffffffffffffffff166112c8611436565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611315906139ac565b60405180910390fd5b611328600061289f565b565b6113326123b3565b73ffffffffffffffffffffffffffffffffffffffff16611350611436565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d906139ac565b60405180910390fd5b8060118190555050565b6113b86123b3565b73ffffffffffffffffffffffffffffffffffffffff166113d6611436565b73ffffffffffffffffffffffffffffffffffffffff161461142c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611423906139ac565b60405180910390fd5b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114686123b3565b73ffffffffffffffffffffffffffffffffffffffff16611486611436565b73ffffffffffffffffffffffffffffffffffffffff16146114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d3906139ac565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b60606003805461150890613cb6565b80601f016020809104026020016040519081016040528092919081815260200182805461153490613cb6565b80156115815780601f1061155657610100808354040283529160200191611581565b820191906000526020600020905b81548152906001019060200180831161156457829003601f168201915b5050505050905090565b601060029054906101000a900460ff1681565b601060009054906101000a900460ff16156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e5906139cc565b60405180910390fd5b601060029054906101000a900460ff161561163e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116359061394c565b60405180910390fd5b6000611648610e38565b90506000821161168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613a2c565b60405180910390fd5b600e548211156116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c99061398c565b60405180910390fd5b600d5482826116e19190613b46565b1115611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117199061396c565b60405180910390fd5b61172a611436565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117ad5781600c5461176a9190613b9c565b3410156117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a3906139ec565b60405180910390fd5b5b6117b73383612965565b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118029190613b46565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6118516124e8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118c36124e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119706124e8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b59190613894565b60405180910390a35050565b6119cc8484846124f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a2e576119f784848484612983565b611a2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60128181548110611a4457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b600a8054611a8690613cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab290613cb6565b8015611aff5780601f10611ad457610100808354040283529160200191611aff565b820191906000526020600020905b815481529060010190602001808311611ae257829003601f168201915b505050505081565b6060611b12826123bb565b611b48576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515601060019054906101000a900460ff1615151415611bf657600b8054611b7190613cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9d90613cb6565b8015611bea5780601f10611bbf57610100808354040283529160200191611bea565b820191906000526020600020905b815481529060010190602001808311611bcd57829003601f168201915b50505050509050611c53565b6000611c00612ae3565b9050600081511415611c215760405180602001604052806000815250611c4f565b80611c2b84612b75565b600a604051602001611c3f939291906137fc565b6040516020818303038152906040525b9150505b919050565b611c606123b3565b73ffffffffffffffffffffffffffffffffffffffff16611c7e611436565b73ffffffffffffffffffffffffffffffffffffffff1614611cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccb906139ac565b60405180910390fd5b80600f8190555050565b601060009054906101000a900460ff1615611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d25906139cc565b60405180910390fd5b601060029054906101000a900460ff16611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d74906138ec565b60405180910390fd5b6000611d87610e38565b905060008411611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390613a2c565b60405180910390fd5b600e54841115611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e089061398c565b60405180910390fd5b600d548482611e209190613b46565b1115611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e589061396c565b60405180910390fd5b611e69611436565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120575760011515601060029054906101000a900460ff161515141561200657600033604051602001611eca91906137e1565b604051602081830303815290604052805190602001209050611f30848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483612bcf565b611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690613a0c565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f548682611fc29190613b46565b1115612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa9061392c565b60405180910390fd5b50505b83600c546120149190613b9c565b341015612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204d906139ec565b60405180910390fd5b5b6120613385612965565b83601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120ac9190613b46565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600d5481565b6121036123b3565b73ffffffffffffffffffffffffffffffffffffffff16612121611436565b73ffffffffffffffffffffffffffffffffffffffff1614612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e906139ac565b60405180910390fd5b80600a908051906020019061218d929190612f47565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61222d6123b3565b73ffffffffffffffffffffffffffffffffffffffff1661224b611436565b73ffffffffffffffffffffffffffffffffffffffff16146122a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612298906139ac565b60405180910390fd5b80600b90805190602001906122b7929190612f47565b5050565b6122c36123b3565b73ffffffffffffffffffffffffffffffffffffffff166122e1611436565b73ffffffffffffffffffffffffffffffffffffffff1614612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e906139ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e9061390c565b60405180910390fd5b6123b08161289f565b50565b600033905090565b6000816123c66124f0565b111580156123d5575060005482105b8015612413575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806124296124f0565b116124b1576000548110156124b05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156124ae575b60008114156124a4576004600083600190039350838152602001908152602001600020549050612479565b80925050506124e3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006125008261241a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612567576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125886124e8565b73ffffffffffffffffffffffffffffffffffffffff1614806125b757506125b6856125b16124e8565b612191565b5b806125fc57506125c56124e8565b73ffffffffffffffffffffffffffffffffffffffff166125e484610b81565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612635576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561269c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a98585856001612be6565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6127a686612bec565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561283057600060018401905060006004600083815260200190815260200160002054141561282e57600054811461282d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128988585856001612bf6565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61297f828260405180602001604052806000815250612bfc565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129a96124e8565b8786866040518563ffffffff1660e01b81526004016129cb9493929190613848565b602060405180830381600087803b1580156129e557600080fd5b505af1925050508015612a1657506040513d601f19601f82011682018060405250810190612a1391906133e8565b60015b612a90573d8060008114612a46576040519150601f19603f3d011682016040523d82523d6000602084013e612a4b565b606091505b50600081511415612a88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612af290613cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054612b1e90613cb6565b8015612b6b5780601f10612b4057610100808354040283529160200191612b6b565b820191906000526020600020905b815481529060010190602001808311612b4e57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612bbb57600183039250600a81066030018353600a81049050612b9b565b508181036020830392508083525050919050565b600082612bdc8584612eb1565b1490509392505050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c69576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612ca4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cb16000858386612be6565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612d1660018514612f26565b901b60a042901b612d2686612bec565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612e2a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dda6000878480600101955087612983565b612e10576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612d6b578260005414612e2557600080fd5b612e95565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e2b575b816000819055505050612eab6000858386612bf6565b50505050565b60008082905060005b8451811015612f1b576000858281518110612ed857612ed7613de4565b5b60200260200101519050808311612efa57612ef38382612f30565b9250612f07565b612f048184612f30565b92505b508080612f1390613d19565b915050612eba565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b828054612f5390613cb6565b90600052602060002090601f016020900481019282612f755760008555612fbc565b82601f10612f8e57805160ff1916838001178555612fbc565b82800160010185558215612fbc579182015b82811115612fbb578251825591602001919060010190612fa0565b5b509050612fc99190612fcd565b5090565b5b80821115612fe6576000816000905550600101612fce565b5090565b6000612ffd612ff884613a8c565b613a67565b90508281526020810184848401111561301957613018613e51565b5b613024848285613c74565b509392505050565b600061303f61303a84613abd565b613a67565b90508281526020810184848401111561305b5761305a613e51565b5b613066848285613c74565b509392505050565b60008135905061307d8161408d565b92915050565b60008083601f84011261309957613098613e47565b5b8235905067ffffffffffffffff8111156130b6576130b5613e42565b5b6020830191508360208202830111156130d2576130d1613e4c565b5b9250929050565b6000813590506130e8816140a4565b92915050565b6000813590506130fd816140bb565b92915050565b600081359050613112816140d2565b92915050565b600081519050613127816140d2565b92915050565b600082601f83011261314257613141613e47565b5b8135613152848260208601612fea565b91505092915050565b600082601f8301126131705761316f613e47565b5b813561318084826020860161302c565b91505092915050565b600081359050613198816140e9565b92915050565b6000602082840312156131b4576131b3613e5b565b5b60006131c28482850161306e565b91505092915050565b600080604083850312156131e2576131e1613e5b565b5b60006131f08582860161306e565b92505060206132018582860161306e565b9150509250929050565b60008060006060848603121561322457613223613e5b565b5b60006132328682870161306e565b93505060206132438682870161306e565b925050604061325486828701613189565b9150509250925092565b6000806000806080858703121561327857613277613e5b565b5b60006132868782880161306e565b94505060206132978782880161306e565b93505060406132a887828801613189565b925050606085013567ffffffffffffffff8111156132c9576132c8613e56565b5b6132d58782880161312d565b91505092959194509250565b600080604083850312156132f8576132f7613e5b565b5b60006133068582860161306e565b9250506020613317858286016130d9565b9150509250929050565b6000806040838503121561333857613337613e5b565b5b60006133468582860161306e565b925050602061335785828601613189565b9150509250929050565b60006020828403121561337757613376613e5b565b5b6000613385848285016130d9565b91505092915050565b6000602082840312156133a4576133a3613e5b565b5b60006133b2848285016130ee565b91505092915050565b6000602082840312156133d1576133d0613e5b565b5b60006133df84828501613103565b91505092915050565b6000602082840312156133fe576133fd613e5b565b5b600061340c84828501613118565b91505092915050565b60006020828403121561342b5761342a613e5b565b5b600082013567ffffffffffffffff81111561344957613448613e56565b5b6134558482850161315b565b91505092915050565b60006020828403121561347457613473613e5b565b5b600061348284828501613189565b91505092915050565b6000806000604084860312156134a4576134a3613e5b565b5b60006134b286828701613189565b935050602084013567ffffffffffffffff8111156134d3576134d2613e56565b5b6134df86828701613083565b92509250509250925092565b6134f481613bf6565b82525050565b61350b61350682613bf6565b613d62565b82525050565b61351a81613c08565b82525050565b61352981613c14565b82525050565b600061353a82613b03565b6135448185613b19565b9350613554818560208601613c83565b61355d81613e60565b840191505092915050565b600061357382613b0e565b61357d8185613b2a565b935061358d818560208601613c83565b61359681613e60565b840191505092915050565b60006135ac82613b0e565b6135b68185613b3b565b93506135c6818560208601613c83565b80840191505092915050565b600081546135df81613cb6565b6135e98186613b3b565b94506001821660008114613604576001811461361557613648565b60ff19831686528186019350613648565b61361e85613aee565b60005b8381101561364057815481890152600182019150602081019050613621565b838801955050505b50505092915050565b600061365e601683613b2a565b915061366982613e7e565b602082019050919050565b6000613681602683613b2a565b915061368c82613ea7565b604082019050919050565b60006136a4601c83613b2a565b91506136af82613ef6565b602082019050919050565b60006136c7601783613b2a565b91506136d282613f1f565b602082019050919050565b60006136ea601683613b2a565b91506136f582613f48565b602082019050919050565b600061370d602483613b2a565b915061371882613f71565b604082019050919050565b6000613730602083613b2a565b915061373b82613fc0565b602082019050919050565b6000613753601683613b2a565b915061375e82613fe9565b602082019050919050565b6000613776601283613b2a565b915061378182614012565b602082019050919050565b6000613799600d83613b2a565b91506137a48261403b565b602082019050919050565b60006137bc601b83613b2a565b91506137c782614064565b602082019050919050565b6137db81613c6a565b82525050565b60006137ed82846134fa565b60148201915081905092915050565b600061380882866135a1565b915061381482856135a1565b915061382082846135d2565b9150819050949350505050565b600060208201905061384260008301846134eb565b92915050565b600060808201905061385d60008301876134eb565b61386a60208301866134eb565b61387760408301856137d2565b8181036060830152613889818461352f565b905095945050505050565b60006020820190506138a96000830184613511565b92915050565b60006020820190506138c46000830184613520565b92915050565b600060208201905081810360008301526138e48184613568565b905092915050565b6000602082019050818103600083015261390581613651565b9050919050565b6000602082019050818103600083015261392581613674565b9050919050565b6000602082019050818103600083015261394581613697565b9050919050565b60006020820190508181036000830152613965816136ba565b9050919050565b60006020820190508181036000830152613985816136dd565b9050919050565b600060208201905081810360008301526139a581613700565b9050919050565b600060208201905081810360008301526139c581613723565b9050919050565b600060208201905081810360008301526139e581613746565b9050919050565b60006020820190508181036000830152613a0581613769565b9050919050565b60006020820190508181036000830152613a258161378c565b9050919050565b60006020820190508181036000830152613a45816137af565b9050919050565b6000602082019050613a6160008301846137d2565b92915050565b6000613a71613a82565b9050613a7d8282613ce8565b919050565b6000604051905090565b600067ffffffffffffffff821115613aa757613aa6613e13565b5b613ab082613e60565b9050602081019050919050565b600067ffffffffffffffff821115613ad857613ad7613e13565b5b613ae182613e60565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b5182613c6a565b9150613b5c83613c6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9157613b90613d86565b5b828201905092915050565b6000613ba782613c6a565b9150613bb283613c6a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613beb57613bea613d86565b5b828202905092915050565b6000613c0182613c4a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ca1578082015181840152602081019050613c86565b83811115613cb0576000848401525b50505050565b60006002820490506001821680613cce57607f821691505b60208210811415613ce257613ce1613db5565b5b50919050565b613cf182613e60565b810181811067ffffffffffffffff82111715613d1057613d0f613e13565b5b80604052505050565b6000613d2482613c6a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5757613d56613d86565b5b600182019050919050565b6000613d6d82613d74565b9050919050565b6000613d7f82613e71565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f43616e2063616c6c20697420696e2070726573616c6500000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f43616e742063616c6c20697420696e2070726573616c65000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61409681613bf6565b81146140a157600080fd5b50565b6140ad81613c08565b81146140b857600080fd5b50565b6140c481613c14565b81146140cf57600080fd5b50565b6140db81613c1e565b81146140e657600080fd5b50565b6140f281613c6a565b81146140fd57600080fd5b5056fea264697066735822122086f8368fe5be2a44e2376a855c15849288b187a1230e9690e6b62350b80bc45d64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d524c47646d467656694a504d43315962423357706443537a79575733466358695368627344466452354648622f
Deployed Bytecode
0x60806040526004361061025c5760003560e01c806370a0823111610144578063ba4e5c49116100b6578063d2cab0561161007a578063d2cab056146108c5578063d5abeb01146108e1578063da3ef23f1461090c578063e985e9c514610935578063f2c4ce1e14610972578063f2fde38b1461099b5761025c565b8063ba4e5c49146107cc578063ba7d2c7614610809578063c668286214610834578063c87b56dd1461085f578063d0eb26b01461089c5761025c565b8063940cd05b11610108578063940cd05b146106df57806395d89b41146107085780639c70b51214610733578063a0712d681461075e578063a22cb4651461077a578063b88d4fde146107a35761025c565b806370a082311461060e578063715018a61461064b5780637cb64759146106625780637f00c7a61461068b5780638da5cb5b146106b45761025c565b806323b872dd116101dd57806344a0d68a116101a157806344a0d68a146104fe578063518302271461052757806355f804b3146105525780635c975abb1461057b5780636352211e146105a65780636c0360eb146105e35761025c565b806323b872dd146104415780632eb4a7ab1461046a5780633c952764146104955780633ccfd60b146104be57806342842e0e146104d55761025c565b8063095ea7b311610224578063095ea7b31461035a57806313faede61461038357806318160ddd146103ae57806318cae269146103d9578063239c70ae146104165761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c7578063081812fc146102f2578063081c8c441461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906133bb565b6109c4565b6040516102959190613894565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613361565b610a56565b005b3480156102d357600080fd5b506102dc610aef565b6040516102e991906138ca565b60405180910390f35b3480156102fe57600080fd5b506103196004803603810190610314919061345e565b610b81565b604051610326919061382d565b60405180910390f35b34801561033b57600080fd5b50610344610bfd565b60405161035191906138ca565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613321565b610c8b565b005b34801561038f57600080fd5b50610398610e32565b6040516103a59190613a4c565b60405180910390f35b3480156103ba57600080fd5b506103c3610e38565b6040516103d09190613a4c565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061319e565b610e4f565b60405161040d9190613a4c565b60405180910390f35b34801561042257600080fd5b5061042b610e67565b6040516104389190613a4c565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061320b565b610e6d565b005b34801561047657600080fd5b5061047f610e7d565b60405161048c91906138af565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613361565b610e83565b005b3480156104ca57600080fd5b506104d3610f1c565b005b3480156104e157600080fd5b506104fc60048036038101906104f7919061320b565b610fe7565b005b34801561050a57600080fd5b506105256004803603810190610520919061345e565b611007565b005b34801561053357600080fd5b5061053c61108d565b6040516105499190613894565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613415565b6110a0565b005b34801561058757600080fd5b50610590611136565b60405161059d9190613894565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061345e565b611149565b6040516105da919061382d565b60405180910390f35b3480156105ef57600080fd5b506105f861115b565b60405161060591906138ca565b60405180910390f35b34801561061a57600080fd5b506106356004803603810190610630919061319e565b6111e9565b6040516106429190613a4c565b60405180910390f35b34801561065757600080fd5b506106606112a2565b005b34801561066e57600080fd5b506106896004803603810190610684919061338e565b61132a565b005b34801561069757600080fd5b506106b260048036038101906106ad919061345e565b6113b0565b005b3480156106c057600080fd5b506106c9611436565b6040516106d6919061382d565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613361565b611460565b005b34801561071457600080fd5b5061071d6114f9565b60405161072a91906138ca565b60405180910390f35b34801561073f57600080fd5b5061074861158b565b6040516107559190613894565b60405180910390f35b6107786004803603810190610773919061345e565b61159e565b005b34801561078657600080fd5b506107a1600480360381019061079c91906132e1565b611849565b005b3480156107af57600080fd5b506107ca60048036038101906107c5919061325e565b6119c1565b005b3480156107d857600080fd5b506107f360048036038101906107ee919061345e565b611a34565b604051610800919061382d565b60405180910390f35b34801561081557600080fd5b5061081e611a73565b60405161082b9190613a4c565b60405180910390f35b34801561084057600080fd5b50610849611a79565b60405161085691906138ca565b60405180910390f35b34801561086b57600080fd5b506108866004803603810190610881919061345e565b611b07565b60405161089391906138ca565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be919061345e565b611c58565b005b6108df60048036038101906108da919061348b565b611cde565b005b3480156108ed57600080fd5b506108f66120f5565b6040516109039190613a4c565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e9190613415565b6120fb565b005b34801561094157600080fd5b5061095c600480360381019061095791906131cb565b612191565b6040516109699190613894565b60405180910390f35b34801561097e57600080fd5b5061099960048036038101906109949190613415565b612225565b005b3480156109a757600080fd5b506109c260048036038101906109bd919061319e565b6122bb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a5e6123b3565b73ffffffffffffffffffffffffffffffffffffffff16610a7c611436565b73ffffffffffffffffffffffffffffffffffffffff1614610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906139ac565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060028054610afe90613cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a90613cb6565b8015610b775780601f10610b4c57610100808354040283529160200191610b77565b820191906000526020600020905b815481529060010190602001808311610b5a57829003601f168201915b5050505050905090565b6000610b8c826123bb565b610bc2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610c0a90613cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3690613cb6565b8015610c835780601f10610c5857610100808354040283529160200191610c83565b820191906000526020600020905b815481529060010190602001808311610c6657829003601f168201915b505050505081565b6000610c968261241a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1d6124e8565b73ffffffffffffffffffffffffffffffffffffffff1614610d8057610d4981610d446124e8565b612191565b610d7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610e426124f0565b6001546000540303905090565b60136020528060005260406000206000915090505481565b600e5481565b610e788383836124f5565b505050565b60115481565b610e8b6123b3565b73ffffffffffffffffffffffffffffffffffffffff16610ea9611436565b73ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef6906139ac565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b610f246123b3565b73ffffffffffffffffffffffffffffffffffffffff16610f42611436565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906139ac565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fe3573d6000803e3d6000fd5b5050565b611002838383604051806020016040528060008152506119c1565b505050565b61100f6123b3565b73ffffffffffffffffffffffffffffffffffffffff1661102d611436565b73ffffffffffffffffffffffffffffffffffffffff1614611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906139ac565b60405180910390fd5b80600c8190555050565b601060019054906101000a900460ff1681565b6110a86123b3565b73ffffffffffffffffffffffffffffffffffffffff166110c6611436565b73ffffffffffffffffffffffffffffffffffffffff161461111c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611113906139ac565b60405180910390fd5b8060099080519060200190611132929190612f47565b5050565b601060009054906101000a900460ff1681565b60006111548261241a565b9050919050565b6009805461116890613cb6565b80601f016020809104026020016040519081016040528092919081815260200182805461119490613cb6565b80156111e15780601f106111b6576101008083540402835291602001916111e1565b820191906000526020600020905b8154815290600101906020018083116111c457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611251576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112aa6123b3565b73ffffffffffffffffffffffffffffffffffffffff166112c8611436565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611315906139ac565b60405180910390fd5b611328600061289f565b565b6113326123b3565b73ffffffffffffffffffffffffffffffffffffffff16611350611436565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d906139ac565b60405180910390fd5b8060118190555050565b6113b86123b3565b73ffffffffffffffffffffffffffffffffffffffff166113d6611436565b73ffffffffffffffffffffffffffffffffffffffff161461142c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611423906139ac565b60405180910390fd5b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114686123b3565b73ffffffffffffffffffffffffffffffffffffffff16611486611436565b73ffffffffffffffffffffffffffffffffffffffff16146114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d3906139ac565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b60606003805461150890613cb6565b80601f016020809104026020016040519081016040528092919081815260200182805461153490613cb6565b80156115815780601f1061155657610100808354040283529160200191611581565b820191906000526020600020905b81548152906001019060200180831161156457829003601f168201915b5050505050905090565b601060029054906101000a900460ff1681565b601060009054906101000a900460ff16156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e5906139cc565b60405180910390fd5b601060029054906101000a900460ff161561163e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116359061394c565b60405180910390fd5b6000611648610e38565b90506000821161168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613a2c565b60405180910390fd5b600e548211156116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c99061398c565b60405180910390fd5b600d5482826116e19190613b46565b1115611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117199061396c565b60405180910390fd5b61172a611436565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117ad5781600c5461176a9190613b9c565b3410156117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a3906139ec565b60405180910390fd5b5b6117b73383612965565b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118029190613b46565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6118516124e8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118c36124e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119706124e8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b59190613894565b60405180910390a35050565b6119cc8484846124f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a2e576119f784848484612983565b611a2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60128181548110611a4457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b600a8054611a8690613cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab290613cb6565b8015611aff5780601f10611ad457610100808354040283529160200191611aff565b820191906000526020600020905b815481529060010190602001808311611ae257829003601f168201915b505050505081565b6060611b12826123bb565b611b48576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515601060019054906101000a900460ff1615151415611bf657600b8054611b7190613cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9d90613cb6565b8015611bea5780601f10611bbf57610100808354040283529160200191611bea565b820191906000526020600020905b815481529060010190602001808311611bcd57829003601f168201915b50505050509050611c53565b6000611c00612ae3565b9050600081511415611c215760405180602001604052806000815250611c4f565b80611c2b84612b75565b600a604051602001611c3f939291906137fc565b6040516020818303038152906040525b9150505b919050565b611c606123b3565b73ffffffffffffffffffffffffffffffffffffffff16611c7e611436565b73ffffffffffffffffffffffffffffffffffffffff1614611cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccb906139ac565b60405180910390fd5b80600f8190555050565b601060009054906101000a900460ff1615611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d25906139cc565b60405180910390fd5b601060029054906101000a900460ff16611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d74906138ec565b60405180910390fd5b6000611d87610e38565b905060008411611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390613a2c565b60405180910390fd5b600e54841115611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e089061398c565b60405180910390fd5b600d548482611e209190613b46565b1115611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e589061396c565b60405180910390fd5b611e69611436565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120575760011515601060029054906101000a900460ff161515141561200657600033604051602001611eca91906137e1565b604051602081830303815290604052805190602001209050611f30848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483612bcf565b611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690613a0c565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f548682611fc29190613b46565b1115612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa9061392c565b60405180910390fd5b50505b83600c546120149190613b9c565b341015612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204d906139ec565b60405180910390fd5b5b6120613385612965565b83601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120ac9190613b46565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600d5481565b6121036123b3565b73ffffffffffffffffffffffffffffffffffffffff16612121611436565b73ffffffffffffffffffffffffffffffffffffffff1614612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e906139ac565b60405180910390fd5b80600a908051906020019061218d929190612f47565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61222d6123b3565b73ffffffffffffffffffffffffffffffffffffffff1661224b611436565b73ffffffffffffffffffffffffffffffffffffffff16146122a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612298906139ac565b60405180910390fd5b80600b90805190602001906122b7929190612f47565b5050565b6122c36123b3565b73ffffffffffffffffffffffffffffffffffffffff166122e1611436565b73ffffffffffffffffffffffffffffffffffffffff1614612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e906139ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e9061390c565b60405180910390fd5b6123b08161289f565b50565b600033905090565b6000816123c66124f0565b111580156123d5575060005482105b8015612413575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806124296124f0565b116124b1576000548110156124b05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156124ae575b60008114156124a4576004600083600190039350838152602001908152602001600020549050612479565b80925050506124e3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006125008261241a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612567576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125886124e8565b73ffffffffffffffffffffffffffffffffffffffff1614806125b757506125b6856125b16124e8565b612191565b5b806125fc57506125c56124e8565b73ffffffffffffffffffffffffffffffffffffffff166125e484610b81565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612635576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561269c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a98585856001612be6565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6127a686612bec565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561283057600060018401905060006004600083815260200190815260200160002054141561282e57600054811461282d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128988585856001612bf6565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61297f828260405180602001604052806000815250612bfc565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129a96124e8565b8786866040518563ffffffff1660e01b81526004016129cb9493929190613848565b602060405180830381600087803b1580156129e557600080fd5b505af1925050508015612a1657506040513d601f19601f82011682018060405250810190612a1391906133e8565b60015b612a90573d8060008114612a46576040519150601f19603f3d011682016040523d82523d6000602084013e612a4b565b606091505b50600081511415612a88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612af290613cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054612b1e90613cb6565b8015612b6b5780601f10612b4057610100808354040283529160200191612b6b565b820191906000526020600020905b815481529060010190602001808311612b4e57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612bbb57600183039250600a81066030018353600a81049050612b9b565b508181036020830392508083525050919050565b600082612bdc8584612eb1565b1490509392505050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c69576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612ca4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cb16000858386612be6565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612d1660018514612f26565b901b60a042901b612d2686612bec565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612e2a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dda6000878480600101955087612983565b612e10576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612d6b578260005414612e2557600080fd5b612e95565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e2b575b816000819055505050612eab6000858386612bf6565b50505050565b60008082905060005b8451811015612f1b576000858281518110612ed857612ed7613de4565b5b60200260200101519050808311612efa57612ef38382612f30565b9250612f07565b612f048184612f30565b92505b508080612f1390613d19565b915050612eba565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b828054612f5390613cb6565b90600052602060002090601f016020900481019282612f755760008555612fbc565b82601f10612f8e57805160ff1916838001178555612fbc565b82800160010185558215612fbc579182015b82811115612fbb578251825591602001919060010190612fa0565b5b509050612fc99190612fcd565b5090565b5b80821115612fe6576000816000905550600101612fce565b5090565b6000612ffd612ff884613a8c565b613a67565b90508281526020810184848401111561301957613018613e51565b5b613024848285613c74565b509392505050565b600061303f61303a84613abd565b613a67565b90508281526020810184848401111561305b5761305a613e51565b5b613066848285613c74565b509392505050565b60008135905061307d8161408d565b92915050565b60008083601f84011261309957613098613e47565b5b8235905067ffffffffffffffff8111156130b6576130b5613e42565b5b6020830191508360208202830111156130d2576130d1613e4c565b5b9250929050565b6000813590506130e8816140a4565b92915050565b6000813590506130fd816140bb565b92915050565b600081359050613112816140d2565b92915050565b600081519050613127816140d2565b92915050565b600082601f83011261314257613141613e47565b5b8135613152848260208601612fea565b91505092915050565b600082601f8301126131705761316f613e47565b5b813561318084826020860161302c565b91505092915050565b600081359050613198816140e9565b92915050565b6000602082840312156131b4576131b3613e5b565b5b60006131c28482850161306e565b91505092915050565b600080604083850312156131e2576131e1613e5b565b5b60006131f08582860161306e565b92505060206132018582860161306e565b9150509250929050565b60008060006060848603121561322457613223613e5b565b5b60006132328682870161306e565b93505060206132438682870161306e565b925050604061325486828701613189565b9150509250925092565b6000806000806080858703121561327857613277613e5b565b5b60006132868782880161306e565b94505060206132978782880161306e565b93505060406132a887828801613189565b925050606085013567ffffffffffffffff8111156132c9576132c8613e56565b5b6132d58782880161312d565b91505092959194509250565b600080604083850312156132f8576132f7613e5b565b5b60006133068582860161306e565b9250506020613317858286016130d9565b9150509250929050565b6000806040838503121561333857613337613e5b565b5b60006133468582860161306e565b925050602061335785828601613189565b9150509250929050565b60006020828403121561337757613376613e5b565b5b6000613385848285016130d9565b91505092915050565b6000602082840312156133a4576133a3613e5b565b5b60006133b2848285016130ee565b91505092915050565b6000602082840312156133d1576133d0613e5b565b5b60006133df84828501613103565b91505092915050565b6000602082840312156133fe576133fd613e5b565b5b600061340c84828501613118565b91505092915050565b60006020828403121561342b5761342a613e5b565b5b600082013567ffffffffffffffff81111561344957613448613e56565b5b6134558482850161315b565b91505092915050565b60006020828403121561347457613473613e5b565b5b600061348284828501613189565b91505092915050565b6000806000604084860312156134a4576134a3613e5b565b5b60006134b286828701613189565b935050602084013567ffffffffffffffff8111156134d3576134d2613e56565b5b6134df86828701613083565b92509250509250925092565b6134f481613bf6565b82525050565b61350b61350682613bf6565b613d62565b82525050565b61351a81613c08565b82525050565b61352981613c14565b82525050565b600061353a82613b03565b6135448185613b19565b9350613554818560208601613c83565b61355d81613e60565b840191505092915050565b600061357382613b0e565b61357d8185613b2a565b935061358d818560208601613c83565b61359681613e60565b840191505092915050565b60006135ac82613b0e565b6135b68185613b3b565b93506135c6818560208601613c83565b80840191505092915050565b600081546135df81613cb6565b6135e98186613b3b565b94506001821660008114613604576001811461361557613648565b60ff19831686528186019350613648565b61361e85613aee565b60005b8381101561364057815481890152600182019150602081019050613621565b838801955050505b50505092915050565b600061365e601683613b2a565b915061366982613e7e565b602082019050919050565b6000613681602683613b2a565b915061368c82613ea7565b604082019050919050565b60006136a4601c83613b2a565b91506136af82613ef6565b602082019050919050565b60006136c7601783613b2a565b91506136d282613f1f565b602082019050919050565b60006136ea601683613b2a565b91506136f582613f48565b602082019050919050565b600061370d602483613b2a565b915061371882613f71565b604082019050919050565b6000613730602083613b2a565b915061373b82613fc0565b602082019050919050565b6000613753601683613b2a565b915061375e82613fe9565b602082019050919050565b6000613776601283613b2a565b915061378182614012565b602082019050919050565b6000613799600d83613b2a565b91506137a48261403b565b602082019050919050565b60006137bc601b83613b2a565b91506137c782614064565b602082019050919050565b6137db81613c6a565b82525050565b60006137ed82846134fa565b60148201915081905092915050565b600061380882866135a1565b915061381482856135a1565b915061382082846135d2565b9150819050949350505050565b600060208201905061384260008301846134eb565b92915050565b600060808201905061385d60008301876134eb565b61386a60208301866134eb565b61387760408301856137d2565b8181036060830152613889818461352f565b905095945050505050565b60006020820190506138a96000830184613511565b92915050565b60006020820190506138c46000830184613520565b92915050565b600060208201905081810360008301526138e48184613568565b905092915050565b6000602082019050818103600083015261390581613651565b9050919050565b6000602082019050818103600083015261392581613674565b9050919050565b6000602082019050818103600083015261394581613697565b9050919050565b60006020820190508181036000830152613965816136ba565b9050919050565b60006020820190508181036000830152613985816136dd565b9050919050565b600060208201905081810360008301526139a581613700565b9050919050565b600060208201905081810360008301526139c581613723565b9050919050565b600060208201905081810360008301526139e581613746565b9050919050565b60006020820190508181036000830152613a0581613769565b9050919050565b60006020820190508181036000830152613a258161378c565b9050919050565b60006020820190508181036000830152613a45816137af565b9050919050565b6000602082019050613a6160008301846137d2565b92915050565b6000613a71613a82565b9050613a7d8282613ce8565b919050565b6000604051905090565b600067ffffffffffffffff821115613aa757613aa6613e13565b5b613ab082613e60565b9050602081019050919050565b600067ffffffffffffffff821115613ad857613ad7613e13565b5b613ae182613e60565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b5182613c6a565b9150613b5c83613c6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9157613b90613d86565b5b828201905092915050565b6000613ba782613c6a565b9150613bb283613c6a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613beb57613bea613d86565b5b828202905092915050565b6000613c0182613c4a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ca1578082015181840152602081019050613c86565b83811115613cb0576000848401525b50505050565b60006002820490506001821680613cce57607f821691505b60208210811415613ce257613ce1613db5565b5b50919050565b613cf182613e60565b810181811067ffffffffffffffff82111715613d1057613d0f613e13565b5b80604052505050565b6000613d2482613c6a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5757613d56613d86565b5b600182019050919050565b6000613d6d82613d74565b9050919050565b6000613d7f82613e71565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f43616e2063616c6c20697420696e2070726573616c6500000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f43616e742063616c6c20697420696e2070726573616c65000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61409681613bf6565b81146140a157600080fd5b50565b6140ad81613c08565b81146140b857600080fd5b50565b6140c481613c14565b81146140cf57600080fd5b50565b6140db81613c1e565b81146140e657600080fd5b50565b6140f281613c6a565b81146140fd57600080fd5b5056fea264697066735822122086f8368fe5be2a44e2376a855c15849288b187a1230e9690e6b62350b80bc45d64736f6c63430008070033
Deployed Bytecode Sourcemap
44285:4775:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18922:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48732:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23935:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26003:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44446:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25463:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44479:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17976:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44810:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44553:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26889:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44738:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48813:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48916:141;;;;;;;;;;;;;:::i;:::-;;27130:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48164:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44665:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48372:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44634:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23724:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44373:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19601:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5032:103;;;;;;;;;;;;;:::i;:::-;;47874:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48250:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4381:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47966:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24104:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44698:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46598:829;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26279:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27386:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44768:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44591:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44404:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47433:419;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48052:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45192:1367;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44516:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48476:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26658:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48606:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18922:615;19007:4;19322:10;19307:25;;:11;:25;;;;:102;;;;19399:10;19384:25;;:11;:25;;;;19307:102;:179;;;;19476:10;19461:25;;:11;:25;;;;19307:179;19287:199;;18922:615;;;:::o;48732:73::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48793:6:::1;48784;;:15;;;;;;;;;;;;;;;;;;48732:73:::0;:::o;23935:100::-;23989:13;24022:5;24015:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23935:100;:::o;26003:204::-;26071:7;26096:16;26104:7;26096;:16::i;:::-;26091:64;;26121:34;;;;;;;;;;;;;;26091:64;26175:15;:24;26191:7;26175:24;;;;;;;;;;;;;;;;;;;;;26168:31;;26003:204;;;:::o;44446:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25463:474::-;25536:13;25568:27;25587:7;25568:18;:27::i;:::-;25536:61;;25618:5;25612:11;;:2;:11;;;25608:48;;;25632:24;;;;;;;;;;;;;;25608:48;25696:5;25673:28;;:19;:17;:19::i;:::-;:28;;;25669:175;;25721:44;25738:5;25745:19;:17;:19::i;:::-;25721:16;:44::i;:::-;25716:128;;25793:35;;;;;;;;;;;;;;25716:128;25669:175;25883:2;25856:15;:24;25872:7;25856:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25921:7;25917:2;25901:28;;25910:5;25901:28;;;;;;;;;;;;25525:412;25463:474;;:::o;44479:32::-;;;;:::o;17976:315::-;18029:7;18257:15;:13;:15::i;:::-;18242:12;;18226:13;;:28;:46;18219:53;;17976:315;:::o;44810:55::-;;;;;;;;;;;;;;;;;:::o;44553:33::-;;;;:::o;26889:170::-;27023:28;27033:4;27039:2;27043:7;27023:9;:28::i;:::-;26889:170;;;:::o;44738:25::-;;;;:::o;48813:95::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48896:6:::1;48878:15;;:24;;;;;;;;;;;;;;;;;;48813:95:::0;:::o;48916:141::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48964:15:::1;48982:21;48964:39;;49022:10;49014:28;;:37;49043:7;49014:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48953:104;48916:141::o:0;27130:185::-;27268:39;27285:4;27291:2;27295:7;27268:39;;;;;;;;;;;;:16;:39::i;:::-;27130:185;;;:::o;48164:80::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48230:8:::1;48223:4;:15;;;;48164:80:::0;:::o;44665:28::-;;;;;;;;;;;;;:::o;48372:98::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48453:11:::1;48443:7;:21;;;;;;;;;;;;:::i;:::-;;48372:98:::0;:::o;44634:26::-;;;;;;;;;;;;;:::o;23724:144::-;23788:7;23831:27;23850:7;23831:18;:27::i;:::-;23808:52;;23724:144;;;:::o;44373:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19601:224::-;19665:7;19706:1;19689:19;;:5;:19;;;19685:60;;;19717:28;;;;;;;;;;;;;;19685:60;14940:13;19763:18;:25;19782:5;19763:25;;;;;;;;;;;;;;;;:54;19756:61;;19601:224;;;:::o;5032:103::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:30:::1;5124:1;5097:18;:30::i;:::-;5032:103::o:0;47874:86::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47949:5:::1;47936:10;:18;;;;47874:86:::0;:::o;48250:116::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48343:17:::1;48327:13;:33;;;;48250:116:::0;:::o;4381:87::-;4427:7;4454:6;;;;;;;;;;;4447:13;;4381:87;:::o;47966:78::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48032:6:::1;48021:8;;:17;;;;;;;;;;;;;;;;;;47966:78:::0;:::o;24104:104::-;24160:13;24193:7;24186:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24104:104;:::o;44698:35::-;;;;;;;;;;;;;:::o;46598:829::-;46664:6;;;;;;;;;;;46663:7;46655:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;46713:15;;;;;;;;;;;46712:16;46704:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;46763:14;46780:13;:11;:13::i;:::-;46763:30;;46822:1;46808:11;:15;46800:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46885:13;;46870:11;:28;;46862:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;46978:9;;46963:11;46954:6;:20;;;;:::i;:::-;:33;;46946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47041:7;:5;:7::i;:::-;47027:21;;:10;:21;;;47023:108;;47089:11;47082:4;;:18;;;;:::i;:::-;47069:9;:31;;47061:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47023:108;47139:34;47149:10;47161:11;47139:9;:34::i;:::-;47250:11;47215:20;:32;47236:10;47215:32;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;47180:20;:32;47201:10;47180:32;;;;;;;;;;;;;;;:81;;;;46648:779;46598:829;:::o;26279:308::-;26390:19;:17;:19::i;:::-;26378:31;;:8;:31;;;26374:61;;;26418:17;;;;;;;;;;;;;;26374:61;26500:8;26448:18;:39;26467:19;:17;:19::i;:::-;26448:39;;;;;;;;;;;;;;;:49;26488:8;26448:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26560:8;26524:55;;26539:19;:17;:19::i;:::-;26524:55;;;26570:8;26524:55;;;;;;:::i;:::-;;;;;;;;26279:308;;:::o;27386:396::-;27553:28;27563:4;27569:2;27573:7;27553:9;:28::i;:::-;27614:1;27596:2;:14;;;:19;27592:183;;27635:56;27666:4;27672:2;27676:7;27685:5;27635:30;:56::i;:::-;27630:145;;27719:40;;;;;;;;;;;;;;27630:145;27592:183;27386:396;;;;:::o;44768:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44591:38::-;;;;:::o;44404:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47433:419::-;47506:13;47537:16;47545:7;47537;:16::i;:::-;47532:59;;47562:29;;;;;;;;;;;;;;47532:59;47619:5;47607:17;;:8;;;;;;;;;;;:17;;;47604:68;;;47646:14;47639:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47604:68;47684:23;47710:10;:8;:10::i;:::-;47684:36;;47765:1;47744:9;47738:23;:28;;:106;;;;;;;;;;;;;;;;;47793:9;47804:18;47814:7;47804:9;:18::i;:::-;47824:13;47776:62;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47738:106;47731:113;;;47433:419;;;;:::o;48052:104::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48144:6:::1;48123:18;:27;;;;48052:104:::0;:::o;45192:1367::-;45300:6;;;;;;;;;;;45299:7;45291:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;45348:15;;;;;;;;;;;45340:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;45397:14;45414:13;:11;:13::i;:::-;45397:30;;45456:1;45442:11;:15;45434:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45519:13;;45504:11;:28;;45496:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45612:9;;45597:11;45588:6;:20;;;;:::i;:::-;:33;;45580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45675:7;:5;:7::i;:::-;45661:21;;:10;:21;;;45657:606;;45717:4;45698:23;;:15;;;;;;;;;;;:23;;;45695:488;;;45830:12;45872:10;45855:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;45845:39;;;;;;45830:54;;45907:50;45926:12;;45907:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45940:10;;45952:4;45907:18;:50::i;:::-;45899:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45990:24;46017:20;:32;46038:10;46017:32;;;;;;;;;;;;;;;;45990:59;;46106:18;;46091:11;46072:16;:30;;;;:::i;:::-;:52;;46064:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;45723:460;;45695:488;46221:11;46214:4;;:18;;;;:::i;:::-;46201:9;:31;;46193:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45657:606;46271:34;46281:10;46293:11;46271:9;:34::i;:::-;46382:11;46347:20;:32;46368:10;46347:32;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;46312:20;:32;46333:10;46312:32;;;;;;;;;;;;;;;:81;;;;45284:1275;45192:1367;;;:::o;44516:32::-;;;;:::o;48476:122::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48575:17:::1;48559:13;:33;;;;;;;;;;;;:::i;:::-;;48476:122:::0;:::o;26658:164::-;26755:4;26779:18;:25;26798:5;26779:25;;;;;;;;;;;;;;;:35;26805:8;26779:35;;;;;;;;;;;;;;;;;;;;;;;;;26772:42;;26658:164;;;;:::o;48606:120::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48705:15:::1;48688:14;:32;;;;;;;;;;;;:::i;:::-;;48606:120:::0;:::o;5290:201::-;4612:12;:10;:12::i;:::-;4601:23;;:7;:5;:7::i;:::-;:23;;;4593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5399:1:::1;5379:22;;:8;:22;;;;5371:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5455:28;5474:8;5455:18;:28::i;:::-;5290:201:::0;:::o;3105:98::-;3158:7;3185:10;3178:17;;3105:98;:::o;28037:273::-;28094:4;28150:7;28131:15;:13;:15::i;:::-;:26;;:66;;;;;28184:13;;28174:7;:23;28131:66;:152;;;;;28282:1;15710:8;28235:17;:26;28253:7;28235:26;;;;;;;;;;;;:43;:48;28131:152;28111:172;;28037:273;;;:::o;21239:1129::-;21306:7;21326:12;21341:7;21326:22;;21409:4;21390:15;:13;:15::i;:::-;:23;21386:915;;21443:13;;21436:4;:20;21432:869;;;21481:14;21498:17;:23;21516:4;21498:23;;;;;;;;;;;;21481:40;;21614:1;15710:8;21587:6;:23;:28;21583:699;;;22106:113;22123:1;22113:6;:11;22106:113;;;22166:17;:25;22184:6;;;;;;;22166:25;;;;;;;;;;;;22157:34;;22106:113;;;22252:6;22245:13;;;;;;21583:699;21458:843;21432:869;21386:915;22329:31;;;;;;;;;;;;;;21239:1129;;;;:::o;42019:105::-;42079:7;42106:10;42099:17;;42019:105;:::o;17499:92::-;17555:7;17499:92;:::o;33276:2515::-;33391:27;33421;33440:7;33421:18;:27::i;:::-;33391:57;;33506:4;33465:45;;33481:19;33465:45;;;33461:86;;33519:28;;;;;;;;;;;;;;33461:86;33560:22;33609:4;33586:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33630:43;33647:4;33653:19;:17;:19::i;:::-;33630:16;:43::i;:::-;33586:87;:147;;;;33714:19;:17;:19::i;:::-;33690:43;;:20;33702:7;33690:11;:20::i;:::-;:43;;;33586:147;33560:174;;33752:17;33747:66;;33778:35;;;;;;;;;;;;;;33747:66;33842:1;33828:16;;:2;:16;;;33824:52;;;33853:23;;;;;;;;;;;;;;33824:52;33889:43;33911:4;33917:2;33921:7;33930:1;33889:21;:43::i;:::-;34005:15;:24;34021:7;34005:24;;;;;;;;;;;;33998:31;;;;;;;;;;;34397:18;:24;34416:4;34397:24;;;;;;;;;;;;;;;;34395:26;;;;;;;;;;;;34466:18;:22;34485:2;34466:22;;;;;;;;;;;;;;;;34464:24;;;;;;;;;;;15992:8;15594:3;34847:15;:41;;34805:21;34823:2;34805:17;:21::i;:::-;:84;:128;34759:17;:26;34777:7;34759:26;;;;;;;;;;;:174;;;;35103:1;15992:8;35053:19;:46;:51;35049:626;;;35125:19;35157:1;35147:7;:11;35125:33;;35314:1;35280:17;:30;35298:11;35280:30;;;;;;;;;;;;:35;35276:384;;;35418:13;;35403:11;:28;35399:242;;35598:19;35565:17;:30;35583:11;35565:30;;;;;;;;;;;:52;;;;35399:242;35276:384;35106:569;35049:626;35722:7;35718:2;35703:27;;35712:4;35703:27;;;;;;;;;;;;35741:42;35762:4;35768:2;35772:7;35781:1;35741:20;:42::i;:::-;33380:2411;;33276:2515;;;:::o;5651:191::-;5725:16;5744:6;;;;;;;;;;;5725:25;;5770:8;5761:6;;:17;;;;;;;;;;;;;;;;;;5825:8;5794:40;;5815:8;5794:40;;;;;;;;;;;;5714:128;5651:191;:::o;28394:104::-;28463:27;28473:2;28477:8;28463:27;;;;;;;;;;;;:9;:27::i;:::-;28394:104;;:::o;39488:716::-;39651:4;39697:2;39672:45;;;39718:19;:17;:19::i;:::-;39739:4;39745:7;39754:5;39672:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39668:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39972:1;39955:6;:13;:18;39951:235;;;40001:40;;;;;;;;;;;;;;39951:235;40144:6;40138:13;40129:6;40125:2;40121:15;40114:38;39668:529;39841:54;;;39831:64;;;:6;:64;;;;39824:71;;;39488:716;;;;;;:::o;45052:102::-;45112:13;45141:7;45134:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45052:102;:::o;42230:1959::-;42287:17;42708:3;42701:4;42695:11;42691:21;42684:28;;42799:3;42793:4;42786:17;42905:3;43362:5;43492:1;43487:3;43483:11;43476:18;;43629:2;43623:4;43619:13;43615:2;43611:22;43606:3;43598:36;43670:2;43664:4;43660:13;43652:21;;43253:682;43689:4;43253:682;;;43864:1;43859:3;43855:11;43848:18;;43915:2;43909:4;43905:13;43901:2;43897:22;43892:3;43884:36;43785:2;43779:4;43775:13;43767:21;;43253:682;;;43257:431;43986:3;43981;43977:13;44101:2;44096:3;44092:12;44085:19;;44164:6;44159:3;44152:19;42326:1856;;42230:1959;;;:::o;960:190::-;1085:4;1138;1109:25;1122:5;1129:4;1109:12;:25::i;:::-;:33;1102:40;;960:190;;;;;:::o;40852:159::-;;;;;:::o;25024:148::-;25088:14;25149:5;25139:15;;25024:148;;;:::o;41670:158::-;;;;;:::o;28871:2236::-;28994:20;29017:13;;28994:36;;29059:1;29045:16;;:2;:16;;;29041:48;;;29070:19;;;;;;;;;;;;;;29041:48;29116:1;29104:8;:13;29100:44;;;29126:18;;;;;;;;;;;;;;29100:44;29157:61;29187:1;29191:2;29195:12;29209:8;29157:21;:61::i;:::-;29761:1;15077:2;29732:1;:25;;29731:31;29719:8;:44;29693:18;:22;29712:2;29693:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;15857:3;30162:29;30189:1;30177:8;:13;30162:14;:29::i;:::-;:56;;15594:3;30099:15;:41;;30057:21;30075:2;30057:17;:21::i;:::-;:84;:162;30006:17;:31;30024:12;30006:31;;;;;;;;;;;:213;;;;30236:20;30259:12;30236:35;;30286:11;30315:8;30300:12;:23;30286:37;;30362:1;30344:2;:14;;;:19;30340:635;;30384:313;30440:12;30436:2;30415:38;;30432:1;30415:38;;;;;;;;;;;;30481:69;30520:1;30524:2;30528:14;;;;;;30544:5;30481:30;:69::i;:::-;30476:174;;30586:40;;;;;;;;;;;;;;30476:174;30692:3;30677:12;:18;30384:313;;30778:12;30761:13;;:29;30757:43;;30792:8;;;30757:43;30340:635;;;30841:119;30897:14;;;;;;30893:2;30872:40;;30889:1;30872:40;;;;;;;;;;;;30955:3;30940:12;:18;30841:119;;30340:635;31005:12;30989:13;:28;;;;29470:1559;;31039:60;31068:1;31072:2;31076:12;31090:8;31039:20;:60::i;:::-;28983:2124;28871:2236;;;:::o;1512:675::-;1595:7;1615:20;1638:4;1615:27;;1658:9;1653:497;1677:5;:12;1673:1;:16;1653:497;;;1711:20;1734:5;1740:1;1734:8;;;;;;;;:::i;:::-;;;;;;;;1711:31;;1777:12;1761;:28;1757:382;;1904:42;1919:12;1933;1904:14;:42::i;:::-;1889:57;;1757:382;;;2081:42;2096:12;2110;2081:14;:42::i;:::-;2066:57;;1757:382;1696:454;1691:3;;;;;:::i;:::-;;;;1653:497;;;;2167:12;2160:19;;;1512:675;;;;:::o;25259:142::-;25317:14;25378:5;25368:15;;25259:142;;;:::o;2195:224::-;2263:13;2326:1;2320:4;2313:15;2355:1;2349:4;2342:15;2396:4;2390;2380:21;2371:30;;2195:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:329::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;6685:329;;;;:::o;7020:327::-;7078:6;7127:2;7115:9;7106:7;7102:23;7098:32;7095:119;;;7133:79;;:::i;:::-;7095:119;7253:1;7278:52;7322:7;7313:6;7302:9;7298:22;7278:52;:::i;:::-;7268:62;;7224:116;7020:327;;;;:::o;7353:349::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7597:1;7622:63;7677:7;7668:6;7657:9;7653:22;7622:63;:::i;:::-;7612:73;;7568:127;7353:349;;;;:::o;7708:509::-;7777:6;7826:2;7814:9;7805:7;7801:23;7797:32;7794:119;;;7832:79;;:::i;:::-;7794:119;7980:1;7969:9;7965:17;7952:31;8010:18;8002:6;7999:30;7996:117;;;8032:79;;:::i;:::-;7996:117;8137:63;8192:7;8183:6;8172:9;8168:22;8137:63;:::i;:::-;8127:73;;7923:287;7708:509;;;;:::o;8223:329::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:53;8527:7;8518:6;8507:9;8503:22;8482:53;:::i;:::-;8472:63;;8428:117;8223:329;;;;:::o;8558:704::-;8653:6;8661;8669;8718:2;8706:9;8697:7;8693:23;8689:32;8686:119;;;8724:79;;:::i;:::-;8686:119;8844:1;8869:53;8914:7;8905:6;8894:9;8890:22;8869:53;:::i;:::-;8859:63;;8815:117;8999:2;8988:9;8984:18;8971:32;9030:18;9022:6;9019:30;9016:117;;;9052:79;;:::i;:::-;9016:117;9165:80;9237:7;9228:6;9217:9;9213:22;9165:80;:::i;:::-;9147:98;;;;8942:313;8558:704;;;;;:::o;9268:118::-;9355:24;9373:5;9355:24;:::i;:::-;9350:3;9343:37;9268:118;;:::o;9392:157::-;9497:45;9517:24;9535:5;9517:24;:::i;:::-;9497:45;:::i;:::-;9492:3;9485:58;9392:157;;:::o;9555:109::-;9636:21;9651:5;9636:21;:::i;:::-;9631:3;9624:34;9555:109;;:::o;9670:118::-;9757:24;9775:5;9757:24;:::i;:::-;9752:3;9745:37;9670:118;;:::o;9794:360::-;9880:3;9908:38;9940:5;9908:38;:::i;:::-;9962:70;10025:6;10020:3;9962:70;:::i;:::-;9955:77;;10041:52;10086:6;10081:3;10074:4;10067:5;10063:16;10041:52;:::i;:::-;10118:29;10140:6;10118:29;:::i;:::-;10113:3;10109:39;10102:46;;9884:270;9794:360;;;;:::o;10160:364::-;10248:3;10276:39;10309:5;10276:39;:::i;:::-;10331:71;10395:6;10390:3;10331:71;:::i;:::-;10324:78;;10411:52;10456:6;10451:3;10444:4;10437:5;10433:16;10411:52;:::i;:::-;10488:29;10510:6;10488:29;:::i;:::-;10483:3;10479:39;10472:46;;10252:272;10160:364;;;;:::o;10530:377::-;10636:3;10664:39;10697:5;10664:39;:::i;:::-;10719:89;10801:6;10796:3;10719:89;:::i;:::-;10712:96;;10817:52;10862:6;10857:3;10850:4;10843:5;10839:16;10817:52;:::i;:::-;10894:6;10889:3;10885:16;10878:23;;10640:267;10530:377;;;;:::o;10937:845::-;11040:3;11077:5;11071:12;11106:36;11132:9;11106:36;:::i;:::-;11158:89;11240:6;11235:3;11158:89;:::i;:::-;11151:96;;11278:1;11267:9;11263:17;11294:1;11289:137;;;;11440:1;11435:341;;;;11256:520;;11289:137;11373:4;11369:9;11358;11354:25;11349:3;11342:38;11409:6;11404:3;11400:16;11393:23;;11289:137;;11435:341;11502:38;11534:5;11502:38;:::i;:::-;11562:1;11576:154;11590:6;11587:1;11584:13;11576:154;;;11664:7;11658:14;11654:1;11649:3;11645:11;11638:35;11714:1;11705:7;11701:15;11690:26;;11612:4;11609:1;11605:12;11600:17;;11576:154;;;11759:6;11754:3;11750:16;11743:23;;11442:334;;11256:520;;11044:738;;10937:845;;;;:::o;11788:366::-;11930:3;11951:67;12015:2;12010:3;11951:67;:::i;:::-;11944:74;;12027:93;12116:3;12027:93;:::i;:::-;12145:2;12140:3;12136:12;12129:19;;11788:366;;;:::o;12160:::-;12302:3;12323:67;12387:2;12382:3;12323:67;:::i;:::-;12316:74;;12399:93;12488:3;12399:93;:::i;:::-;12517:2;12512:3;12508:12;12501:19;;12160:366;;;:::o;12532:::-;12674:3;12695:67;12759:2;12754:3;12695:67;:::i;:::-;12688:74;;12771:93;12860:3;12771:93;:::i;:::-;12889:2;12884:3;12880:12;12873:19;;12532:366;;;:::o;12904:::-;13046:3;13067:67;13131:2;13126:3;13067:67;:::i;:::-;13060:74;;13143:93;13232:3;13143:93;:::i;:::-;13261:2;13256:3;13252:12;13245:19;;12904:366;;;:::o;13276:::-;13418:3;13439:67;13503:2;13498:3;13439:67;:::i;:::-;13432:74;;13515:93;13604:3;13515:93;:::i;:::-;13633:2;13628:3;13624:12;13617:19;;13276:366;;;:::o;13648:::-;13790:3;13811:67;13875:2;13870:3;13811:67;:::i;:::-;13804:74;;13887:93;13976:3;13887:93;:::i;:::-;14005:2;14000:3;13996:12;13989:19;;13648:366;;;:::o;14020:::-;14162:3;14183:67;14247:2;14242:3;14183:67;:::i;:::-;14176:74;;14259:93;14348:3;14259:93;:::i;:::-;14377:2;14372:3;14368:12;14361:19;;14020:366;;;:::o;14392:::-;14534:3;14555:67;14619:2;14614:3;14555:67;:::i;:::-;14548:74;;14631:93;14720:3;14631:93;:::i;:::-;14749:2;14744:3;14740:12;14733:19;;14392:366;;;:::o;14764:::-;14906:3;14927:67;14991:2;14986:3;14927:67;:::i;:::-;14920:74;;15003:93;15092:3;15003:93;:::i;:::-;15121:2;15116:3;15112:12;15105:19;;14764:366;;;:::o;15136:::-;15278:3;15299:67;15363:2;15358:3;15299:67;:::i;:::-;15292:74;;15375:93;15464:3;15375:93;:::i;:::-;15493:2;15488:3;15484:12;15477:19;;15136:366;;;:::o;15508:::-;15650:3;15671:67;15735:2;15730:3;15671:67;:::i;:::-;15664:74;;15747:93;15836:3;15747:93;:::i;:::-;15865:2;15860:3;15856:12;15849:19;;15508:366;;;:::o;15880:118::-;15967:24;15985:5;15967:24;:::i;:::-;15962:3;15955:37;15880:118;;:::o;16004:256::-;16116:3;16131:75;16202:3;16193:6;16131:75;:::i;:::-;16231:2;16226:3;16222:12;16215:19;;16251:3;16244:10;;16004:256;;;;:::o;16266:589::-;16491:3;16513:95;16604:3;16595:6;16513:95;:::i;:::-;16506:102;;16625:95;16716:3;16707:6;16625:95;:::i;:::-;16618:102;;16737:92;16825:3;16816:6;16737:92;:::i;:::-;16730:99;;16846:3;16839:10;;16266:589;;;;;;:::o;16861:222::-;16954:4;16992:2;16981:9;16977:18;16969:26;;17005:71;17073:1;17062:9;17058:17;17049:6;17005:71;:::i;:::-;16861:222;;;;:::o;17089:640::-;17284:4;17322:3;17311:9;17307:19;17299:27;;17336:71;17404:1;17393:9;17389:17;17380:6;17336:71;:::i;:::-;17417:72;17485:2;17474:9;17470:18;17461:6;17417:72;:::i;:::-;17499;17567:2;17556:9;17552:18;17543:6;17499:72;:::i;:::-;17618:9;17612:4;17608:20;17603:2;17592:9;17588:18;17581:48;17646:76;17717:4;17708:6;17646:76;:::i;:::-;17638:84;;17089:640;;;;;;;:::o;17735:210::-;17822:4;17860:2;17849:9;17845:18;17837:26;;17873:65;17935:1;17924:9;17920:17;17911:6;17873:65;:::i;:::-;17735:210;;;;:::o;17951:222::-;18044:4;18082:2;18071:9;18067:18;18059:26;;18095:71;18163:1;18152:9;18148:17;18139:6;18095:71;:::i;:::-;17951:222;;;;:::o;18179:313::-;18292:4;18330:2;18319:9;18315:18;18307:26;;18379:9;18373:4;18369:20;18365:1;18354:9;18350:17;18343:47;18407:78;18480:4;18471:6;18407:78;:::i;:::-;18399:86;;18179:313;;;;:::o;18498:419::-;18664:4;18702:2;18691:9;18687:18;18679:26;;18751:9;18745:4;18741:20;18737:1;18726:9;18722:17;18715:47;18779:131;18905:4;18779:131;:::i;:::-;18771:139;;18498:419;;;:::o;18923:::-;19089:4;19127:2;19116:9;19112:18;19104:26;;19176:9;19170:4;19166:20;19162:1;19151:9;19147:17;19140:47;19204:131;19330:4;19204:131;:::i;:::-;19196:139;;18923:419;;;:::o;19348:::-;19514:4;19552:2;19541:9;19537:18;19529:26;;19601:9;19595:4;19591:20;19587:1;19576:9;19572:17;19565:47;19629:131;19755:4;19629:131;:::i;:::-;19621:139;;19348:419;;;:::o;19773:::-;19939:4;19977:2;19966:9;19962:18;19954:26;;20026:9;20020:4;20016:20;20012:1;20001:9;19997:17;19990:47;20054:131;20180:4;20054:131;:::i;:::-;20046:139;;19773:419;;;:::o;20198:::-;20364:4;20402:2;20391:9;20387:18;20379:26;;20451:9;20445:4;20441:20;20437:1;20426:9;20422:17;20415:47;20479:131;20605:4;20479:131;:::i;:::-;20471:139;;20198:419;;;:::o;20623:::-;20789:4;20827:2;20816:9;20812:18;20804:26;;20876:9;20870:4;20866:20;20862:1;20851:9;20847:17;20840:47;20904:131;21030:4;20904:131;:::i;:::-;20896:139;;20623:419;;;:::o;21048:::-;21214:4;21252:2;21241:9;21237:18;21229:26;;21301:9;21295:4;21291:20;21287:1;21276:9;21272:17;21265:47;21329:131;21455:4;21329:131;:::i;:::-;21321:139;;21048:419;;;:::o;21473:::-;21639:4;21677:2;21666:9;21662:18;21654:26;;21726:9;21720:4;21716:20;21712:1;21701:9;21697:17;21690:47;21754:131;21880:4;21754:131;:::i;:::-;21746:139;;21473:419;;;:::o;21898:::-;22064:4;22102:2;22091:9;22087:18;22079:26;;22151:9;22145:4;22141:20;22137:1;22126:9;22122:17;22115:47;22179:131;22305:4;22179:131;:::i;:::-;22171:139;;21898:419;;;:::o;22323:::-;22489:4;22527:2;22516:9;22512:18;22504:26;;22576:9;22570:4;22566:20;22562:1;22551:9;22547:17;22540:47;22604:131;22730:4;22604:131;:::i;:::-;22596:139;;22323:419;;;:::o;22748:::-;22914:4;22952:2;22941:9;22937:18;22929:26;;23001:9;22995:4;22991:20;22987:1;22976:9;22972:17;22965:47;23029:131;23155:4;23029:131;:::i;:::-;23021:139;;22748:419;;;:::o;23173:222::-;23266:4;23304:2;23293:9;23289:18;23281:26;;23317:71;23385:1;23374:9;23370:17;23361:6;23317:71;:::i;:::-;23173:222;;;;:::o;23401:129::-;23435:6;23462:20;;:::i;:::-;23452:30;;23491:33;23519:4;23511:6;23491:33;:::i;:::-;23401:129;;;:::o;23536:75::-;23569:6;23602:2;23596:9;23586:19;;23536:75;:::o;23617:307::-;23678:4;23768:18;23760:6;23757:30;23754:56;;;23790:18;;:::i;:::-;23754:56;23828:29;23850:6;23828:29;:::i;:::-;23820:37;;23912:4;23906;23902:15;23894:23;;23617:307;;;:::o;23930:308::-;23992:4;24082:18;24074:6;24071:30;24068:56;;;24104:18;;:::i;:::-;24068:56;24142:29;24164:6;24142:29;:::i;:::-;24134:37;;24226:4;24220;24216:15;24208:23;;23930:308;;;:::o;24244:141::-;24293:4;24316:3;24308:11;;24339:3;24336:1;24329:14;24373:4;24370:1;24360:18;24352:26;;24244:141;;;:::o;24391:98::-;24442:6;24476:5;24470:12;24460:22;;24391:98;;;:::o;24495:99::-;24547:6;24581:5;24575:12;24565:22;;24495:99;;;:::o;24600:168::-;24683:11;24717:6;24712:3;24705:19;24757:4;24752:3;24748:14;24733:29;;24600:168;;;;:::o;24774:169::-;24858:11;24892:6;24887:3;24880:19;24932:4;24927:3;24923:14;24908:29;;24774:169;;;;:::o;24949:148::-;25051:11;25088:3;25073:18;;24949:148;;;;:::o;25103:305::-;25143:3;25162:20;25180:1;25162:20;:::i;:::-;25157:25;;25196:20;25214:1;25196:20;:::i;:::-;25191:25;;25350:1;25282:66;25278:74;25275:1;25272:81;25269:107;;;25356:18;;:::i;:::-;25269:107;25400:1;25397;25393:9;25386:16;;25103:305;;;;:::o;25414:348::-;25454:7;25477:20;25495:1;25477:20;:::i;:::-;25472:25;;25511:20;25529:1;25511:20;:::i;:::-;25506:25;;25699:1;25631:66;25627:74;25624:1;25621:81;25616:1;25609:9;25602:17;25598:105;25595:131;;;25706:18;;:::i;:::-;25595:131;25754:1;25751;25747:9;25736:20;;25414:348;;;;:::o;25768:96::-;25805:7;25834:24;25852:5;25834:24;:::i;:::-;25823:35;;25768:96;;;:::o;25870:90::-;25904:7;25947:5;25940:13;25933:21;25922:32;;25870:90;;;:::o;25966:77::-;26003:7;26032:5;26021:16;;25966:77;;;:::o;26049:149::-;26085:7;26125:66;26118:5;26114:78;26103:89;;26049:149;;;:::o;26204:126::-;26241:7;26281:42;26274:5;26270:54;26259:65;;26204:126;;;:::o;26336:77::-;26373:7;26402:5;26391:16;;26336:77;;;:::o;26419:154::-;26503:6;26498:3;26493;26480:30;26565:1;26556:6;26551:3;26547:16;26540:27;26419:154;;;:::o;26579:307::-;26647:1;26657:113;26671:6;26668:1;26665:13;26657:113;;;26756:1;26751:3;26747:11;26741:18;26737:1;26732:3;26728:11;26721:39;26693:2;26690:1;26686:10;26681:15;;26657:113;;;26788:6;26785:1;26782:13;26779:101;;;26868:1;26859:6;26854:3;26850:16;26843:27;26779:101;26628:258;26579:307;;;:::o;26892:320::-;26936:6;26973:1;26967:4;26963:12;26953:22;;27020:1;27014:4;27010:12;27041:18;27031:81;;27097:4;27089:6;27085:17;27075:27;;27031:81;27159:2;27151:6;27148:14;27128:18;27125:38;27122:84;;;27178:18;;:::i;:::-;27122:84;26943:269;26892:320;;;:::o;27218:281::-;27301:27;27323:4;27301:27;:::i;:::-;27293:6;27289:40;27431:6;27419:10;27416:22;27395:18;27383:10;27380:34;27377:62;27374:88;;;27442:18;;:::i;:::-;27374:88;27482:10;27478:2;27471:22;27261:238;27218:281;;:::o;27505:233::-;27544:3;27567:24;27585:5;27567:24;:::i;:::-;27558:33;;27613:66;27606:5;27603:77;27600:103;;;27683:18;;:::i;:::-;27600:103;27730:1;27723:5;27719:13;27712:20;;27505:233;;;:::o;27744:100::-;27783:7;27812:26;27832:5;27812:26;:::i;:::-;27801:37;;27744:100;;;:::o;27850:94::-;27889:7;27918:20;27932:5;27918:20;:::i;:::-;27907:31;;27850:94;;;:::o;27950:180::-;27998:77;27995:1;27988:88;28095:4;28092:1;28085:15;28119:4;28116:1;28109:15;28136:180;28184:77;28181:1;28174:88;28281:4;28278:1;28271:15;28305:4;28302:1;28295:15;28322:180;28370:77;28367:1;28360:88;28467:4;28464:1;28457:15;28491:4;28488:1;28481:15;28508:180;28556:77;28553:1;28546:88;28653:4;28650:1;28643:15;28677:4;28674:1;28667:15;28694:117;28803:1;28800;28793:12;28817:117;28926:1;28923;28916:12;28940:117;29049:1;29046;29039:12;29063:117;29172:1;29169;29162:12;29186:117;29295:1;29292;29285:12;29309:117;29418:1;29415;29408:12;29432:102;29473:6;29524:2;29520:7;29515:2;29508:5;29504:14;29500:28;29490:38;;29432:102;;;:::o;29540:94::-;29573:8;29621:5;29617:2;29613:14;29592:35;;29540:94;;;:::o;29640:172::-;29780:24;29776:1;29768:6;29764:14;29757:48;29640:172;:::o;29818:225::-;29958:34;29954:1;29946:6;29942:14;29935:58;30027:8;30022:2;30014:6;30010:15;30003:33;29818:225;:::o;30049:178::-;30189:30;30185:1;30177:6;30173:14;30166:54;30049:178;:::o;30233:173::-;30373:25;30369:1;30361:6;30357:14;30350:49;30233:173;:::o;30412:172::-;30552:24;30548:1;30540:6;30536:14;30529:48;30412:172;:::o;30590:223::-;30730:34;30726:1;30718:6;30714:14;30707:58;30799:6;30794:2;30786:6;30782:15;30775:31;30590:223;:::o;30819:182::-;30959:34;30955:1;30947:6;30943:14;30936:58;30819:182;:::o;31007:172::-;31147:24;31143:1;31135:6;31131:14;31124:48;31007:172;:::o;31185:168::-;31325:20;31321:1;31313:6;31309:14;31302:44;31185:168;:::o;31359:163::-;31499:15;31495:1;31487:6;31483:14;31476:39;31359:163;:::o;31528:177::-;31668:29;31664:1;31656:6;31652:14;31645:53;31528:177;:::o;31711:122::-;31784:24;31802:5;31784:24;:::i;:::-;31777:5;31774:35;31764:63;;31823:1;31820;31813:12;31764:63;31711:122;:::o;31839:116::-;31909:21;31924:5;31909:21;:::i;:::-;31902:5;31899:32;31889:60;;31945:1;31942;31935:12;31889:60;31839:116;:::o;31961:122::-;32034:24;32052:5;32034:24;:::i;:::-;32027:5;32024:35;32014:63;;32073:1;32070;32063:12;32014:63;31961:122;:::o;32089:120::-;32161:23;32178:5;32161:23;:::i;:::-;32154:5;32151:34;32141:62;;32199:1;32196;32189:12;32141:62;32089:120;:::o;32215:122::-;32288:24;32306:5;32288:24;:::i;:::-;32281:5;32278:35;32268:63;;32327:1;32324;32317:12;32268:63;32215:122;:::o
Swarm Source
ipfs://86f8368fe5be2a44e2376a855c15849288b187a1230e9690e6b62350b80bc45d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.