Overview
TokenID
514
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AsacNFT
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* SPDX-License-Identifier: MIT [] [][][][][] [] [[][][][][]] [][] [][] [][] [][] [][]] [[][] [][][] [][] [][][] [][] [][] [][ ][] [][][][][]] [][ ][] [][] [][] [][] [[][][][][] [][] [][] [][] [][][][][][] [][] [][][][][][] [][] [][] [][] [][] [][] [][] [][] [][] [][]] [[][] [][] [][] [][][][][] [][] [][] [[][][][][]] * Generated by Cyberscape Labs * Email [email protected] for your NFT launch needs */ pragma solidity ^0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; /*////////////////////////////////////// CUSTOM ERRORS //////////////////////////////////////*/ /// @notice Thrown when completing transaction will exceed collection supply error ExceededMintSupply(); /// @notice Thrown when transaction sender is not on whitelist error NotOnMintList(); /// @notice Thrown when the attempted sale is not actve error SaleNotActive(); /// @notice Thrown when the message value is less than the required amount error ValueTooLow(); /// @notice Thrown when the amount minted exceeds max allowed per txn error MintingTooMany(); /// @notice Thrown when the input address is 0 error ZeroAddress(); /// @notice Thrown when input data does not equal what was required error InvalidData(); /// @notice Thrown when input arrays for a function are not the same length error NonEqualArrays(); /** @title Anti Social Anime Club NFT @author @0x_digitalnomad with Cyberscape Labs */ contract AsacNFT is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; /*////////////////////////////////////// STATE VARIABLES //////////////////////////////////////*/ enum MintStatus { CLOSED, PRESALE, PUBLIC, SOLDOUT } MintStatus public mintStatus = MintStatus.CLOSED; uint256 public collectionSize; uint256 public maxAvailableSupply; uint256 public reserveSupply; uint256 public maxPerTxn; uint256 public claimable; uint256 public OGPrice = 0.06 ether; uint256 public presalePrice = 0.07 ether; uint256 public salePrice = 0.09 ether; uint256 private devMintCount; uint256 private mintData; string private baseURI; string private unrevealedURI; bool public revealed = false; bool public claimEnabled = false; mapping(address => bool) private whiteList; mapping(address => bool) private OGList; mapping(address => uint256) private claimList; bytes32 public merkleRoot = 0xabdfb9ba2690ab68ec73f7a8567586413293817709a77d893cf14d357aee0e8a; address private devWallet; /*////////////////////////////////////// EVENTS //////////////////////////////////////*/ event ChangeBaseURI(string _baseURI); event UpdateSaleState(string _sale); event Mint(address _minter, uint256 _amount, string _type); /*////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////*/ constructor( uint collectionSize_, uint reserveSupply_, uint maxTxn_, uint mintData_, address devWallet_, address[] memory ogList_, address[] memory claimList_, uint256[] memory amount_ ) ERC721A("Anti Social Anime Club", "ASAC") { collectionSize = collectionSize_; reserveSupply = reserveSupply_; maxPerTxn = maxTxn_; mintData = mintData_; devWallet = devWallet_; if(claimList_.length != amount_.length) revert NonEqualArrays(); for(uint i = 0; i < claimList_.length; i++) { claimList[claimList_[i]] = amount_[i]; claimable += amount_[i]; } for(uint i = 0; i < ogList_.length; i++) { OGList[ogList_[i]] = true; } maxAvailableSupply = collectionSize - reserveSupply - claimable; } /*////////////////////////////////////// MODIFIERS //////////////////////////////////////*/ modifier callerIsUser() { require(tx.origin == msg.sender, "Caller is another contract"); _; } /*////////////////////////////////////// MINTING FUNCTIONS //////////////////////////////////////*/ /** Dev mint function to reserve a supply for giveaways, collaborations, and marketing @param _address The address to mint to @param _amount The amount to mint */ function devMint(address _address, uint256 _amount) external onlyOwner { if (_address == address(0)) revert ZeroAddress(); if (_amount + totalSupply() > collectionSize) revert ExceededMintSupply(); if (reserveSupply > 0) { if (_amount > reserveSupply) { maxAvailableSupply += reserveSupply; reserveSupply = 0; } else { maxAvailableSupply += _amount; reserveSupply -= _amount; } if (maxAvailableSupply > collectionSize) { maxAvailableSupply = collectionSize; reserveSupply = 0; } } _safeMint(_address, _amount); emit Mint(_address, _amount, "Dev"); } /** Presale mint function using merkle proofs @param _proof An array of bytes representing the merkle proof for the sender's address @param _amount The amount to mint */ function mintPresale(bytes32[] memory _proof, uint256 _amount) external payable callerIsUser nonReentrant { if (mintStatus != MintStatus.PRESALE) revert SaleNotActive(); if (_amount > maxPerTxn) revert MintingTooMany(); if (_amount + totalSupply() > maxAvailableSupply) revert ExceededMintSupply(); if (!MerkleProof.verify(_proof, merkleRoot, keccak256(abi.encodePacked(msg.sender)))) revert NotOnMintList(); if (OGList[msg.sender]) { if (msg.value != OGPrice * _amount) revert ValueTooLow(); _safeMint(msg.sender, _amount); emit Mint(msg.sender, _amount, "OG"); } else { if (msg.value != presalePrice * _amount) revert ValueTooLow(); _safeMint(msg.sender, _amount); emit Mint(msg.sender, _amount, "Presale"); } } /** Public minting function and presale backup @param _amount The amount to mint @param _data Private data required to mint */ function mint(uint256 _amount, uint256 _data) external payable callerIsUser nonReentrant { if (mintStatus != MintStatus.PRESALE && mintStatus != MintStatus.PUBLIC) revert SaleNotActive(); if (_data != mintData) revert InvalidData(); if (_amount > maxPerTxn) revert MintingTooMany(); if (_amount + totalSupply() > maxAvailableSupply) revert ExceededMintSupply(); if (mintStatus == MintStatus.PRESALE) { if (OGList[msg.sender]) { if (msg.value != OGPrice * _amount) revert ValueTooLow(); _safeMint(msg.sender, _amount); emit Mint(msg.sender, _amount, "OG"); } else { if (!whiteList[msg.sender]) revert NotOnMintList(); if (msg.value != presalePrice * _amount) revert ValueTooLow(); _safeMint(msg.sender, _amount); emit Mint(msg.sender, _amount, "Presale"); } } else if (mintStatus == MintStatus.PUBLIC){ if (msg.value != salePrice * _amount) revert ValueTooLow(); _safeMint(msg.sender, _amount); emit Mint(msg.sender, _amount, "Public"); } } /** Claim tokens up to amount provided in claimList @param _amount The amount to claim */ function claim(uint256 _amount) external callerIsUser nonReentrant { if (claimEnabled == false) revert SaleNotActive(); if (claimList[msg.sender] < 1) revert NotOnMintList(); if (_amount > claimList[msg.sender]) revert MintingTooMany(); if (_amount + totalSupply() > maxAvailableSupply) revert ExceededMintSupply(); claimList[msg.sender] -= _amount; claimable -= _amount; _safeMint(msg.sender, _amount); emit Mint(msg.sender, _amount, "Free Claim"); } /*////////////////////////////////////// SETTERS //////////////////////////////////////*/ /** Set the URI for preview image prior to reveal */ function setUnrevealedURI(string calldata _unrevealedURI) external onlyOwner { unrevealedURI = _unrevealedURI; } /** Set the base URI for all tokens post reveal */ function setBaseURI(string calldata _tokenBaseURI) external onlyOwner { baseURI = _tokenBaseURI; emit ChangeBaseURI(_tokenBaseURI); } /** Update the price for the public sale or presale. @param _saleType Either "presale" for presalePrice or "public" for salePrice @param _price The new price in gwei */ function setPrice(string calldata _saleType, uint256 _price) external onlyOwner { if (keccak256(abi.encodePacked(_saleType)) == keccak256(abi.encodePacked("presale"))) { presalePrice = _price; } else if (keccak256(abi.encodePacked(_saleType)) == keccak256(abi.encodePacked("public"))) { salePrice = _price; } else if (keccak256(abi.encodePacked(_saleType)) == keccak256(abi.encodePacked("OG"))) { OGPrice = _price; }else { revert InvalidData(); } } function setMaxTxn(uint256 _max) external onlyOwner { maxPerTxn = _max; } function setMintData(uint256 _data) external onlyOwner { mintData = _data; } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } /*////////////////////////////////////// GETTERS //////////////////////////////////////*/ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); if (revealed == false) { return unrevealedURI; } else { return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), '.json')) : ''; } } function getMintStatus() external view returns(string memory) { if (mintStatus == MintStatus.CLOSED) { return "Closed"; } else if (mintStatus == MintStatus.PRESALE){ return "Presale"; } else if (mintStatus == MintStatus.PUBLIC) { return "Public Sale"; } else { //mintStatus == MintStatus.SoldOut return "Sold Out"; } } function getWhiteList(address _addr) external view returns(bool) { return whiteList[_addr]; } function getOGList(address _addr) external view returns(bool) { return OGList[_addr]; } function getClaimList(address _addr) external view returns(uint256) { return claimList[_addr]; } /*////////////////////////////////////// MISC //////////////////////////////////////*/ function addToWhiteList(string calldata _listType, address[] calldata _addresses) external onlyOwner { if (keccak256(abi.encodePacked(_listType)) == keccak256(abi.encodePacked("OG"))) { for (uint i = 0; i < _addresses.length; i++) { OGList[_addresses[i]] = true; } } else if (keccak256(abi.encodePacked(_listType)) == keccak256(abi.encodePacked("presale"))) { for (uint i = 0; i < _addresses.length; i++) { whiteList[_addresses[i]] = true; } } else { revert InvalidData(); } } function removeFromWhiteList(string calldata _listType, address[] calldata _addresses) external onlyOwner { if (keccak256(abi.encodePacked(_listType)) == keccak256(abi.encodePacked("OG"))) { for (uint i = 0; i < _addresses.length; i++) { OGList[_addresses[i]] = false; } } else if (keccak256(abi.encodePacked(_listType)) == keccak256(abi.encodePacked("presale"))) { for (uint i = 0; i < _addresses.length; i++) { whiteList[_addresses[i]] = false; } } else { revert InvalidData(); } } function addToClaimList(address[] calldata _addresses, uint256[] calldata _amounts) external onlyOwner { if (_addresses.length != _amounts.length) revert NonEqualArrays(); for (uint i = 0; i < _addresses.length; i++) { claimList[_addresses[i]] = _amounts[i]; } } function removeFromClaimList(address[] calldata _addresses) external onlyOwner { for (uint i = 0; i < _addresses.length; i++) { claimList[_addresses[i]] = 0; } } function reveal() external onlyOwner { revealed = !revealed; } function activateClaim() external onlyOwner { claimEnabled = !claimEnabled; if(maxAvailableSupply + claimable <= collectionSize) { maxAvailableSupply += claimable; } else { maxAvailableSupply = collectionSize; } } function closeSale() external onlyOwner { if (totalSupply() == collectionSize) { mintStatus = MintStatus.SOLDOUT; emit UpdateSaleState("Sold Out"); } else { mintStatus = MintStatus.CLOSED; emit UpdateSaleState("Closed"); } } function startPresale() external onlyOwner { mintStatus = MintStatus.PRESALE; emit UpdateSaleState("Presale"); } function startPublicSale() external onlyOwner { mintStatus = MintStatus.PUBLIC; emit UpdateSaleState("Public"); } function withdrawl() external onlyOwner { uint totalBalance = address(this).balance; payable(devWallet).transfer(totalBalance * 58 / 1000); payable(msg.sender).transfer(totalBalance * 942 / 1000); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // 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) } } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"reserveSupply_","type":"uint256"},{"internalType":"uint256","name":"maxTxn_","type":"uint256"},{"internalType":"uint256","name":"mintData_","type":"uint256"},{"internalType":"address","name":"devWallet_","type":"address"},{"internalType":"address[]","name":"ogList_","type":"address[]"},{"internalType":"address[]","name":"claimList_","type":"address[]"},{"internalType":"uint256[]","name":"amount_","type":"uint256[]"}],"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":"ExceededMintSupply","type":"error"},{"inputs":[],"name":"InvalidData","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintingTooMany","type":"error"},{"inputs":[],"name":"NonEqualArrays","type":"error"},{"inputs":[],"name":"NotOnMintList","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleNotActive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"ValueTooLow","type":"error"},{"inputs":[],"name":"ZeroAddress","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":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"ChangeBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"_type","type":"string"}],"name":"Mint","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_sale","type":"string"}],"name":"UpdateSaleState","type":"event"},{"inputs":[],"name":"OGPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"addToClaimList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_listType","type":"string"},{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getClaimList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintStatus","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getOGList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxAvailableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","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":"_amount","type":"uint256"},{"internalType":"uint256","name":"_data","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum AsacNFT.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromClaimList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_listType","type":"string"},{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_data","type":"uint256"}],"name":"setMintData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_saleType","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealedURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawl","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a805460ff1916905566d529ae9e86000060105566f8b0a10e47000060115567013fbe85edc900006012556017805461ffff191690557fabdfb9ba2690ab68ec73f7a8567586413293817709a77d893cf14d357aee0e8a601b553480156200006c57600080fd5b5060405162003beb38038062003beb8339810160408190526200008f916200052f565b604080518082018252601681527f416e746920536f6369616c20416e696d6520436c7562000000000000000000006020808301918252835180850190945260048452634153414360e01b908401528151919291620000f0916002916200031f565b508051620001069060039060208401906200031f565b505060008055506200011833620002cd565b6001600955600b889055600d879055600e8690556014859055601c80546001600160a01b0319166001600160a01b03861617905580518251146200016f57604051630822028f60e11b815260040160405180910390fd5b60005b82518110156200022957818181518110620001915762000191620005fb565b6020026020010151601a6000858481518110620001b257620001b2620005fb565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550818181518110620001f357620001f3620005fb565b6020026020010151600f60008282546200020e919062000627565b90915550819050620002208162000642565b91505062000172565b5060005b83518110156200029957600160196000868481518110620002525762000252620005fb565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580620002908162000642565b9150506200022d565b50600f54600d54600b54620002af91906200065e565b620002bb91906200065e565b600c5550620006b49650505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200032d9062000678565b90600052602060002090601f0160209004810192826200035157600085556200039c565b82601f106200036c57805160ff19168380011785556200039c565b828001600101855582156200039c579182015b828111156200039c5782518255916020019190600101906200037f565b50620003aa929150620003ae565b5090565b5b80821115620003aa5760008155600101620003af565b80516001600160a01b0381168114620003dd57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004235762000423620003e2565b604052919050565b60006001600160401b03821115620004475762000447620003e2565b5060051b60200190565b600082601f8301126200046357600080fd5b815160206200047c62000476836200042b565b620003f8565b82815260059290921b840181019181810190868411156200049c57600080fd5b8286015b84811015620004c257620004b481620003c5565b8352918301918301620004a0565b509695505050505050565b600082601f830112620004df57600080fd5b81516020620004f262000476836200042b565b82815260059290921b840181019181810190868411156200051257600080fd5b8286015b84811015620004c2578051835291830191830162000516565b600080600080600080600080610100898b0312156200054d57600080fd5b885197506020890151965060408901519550606089015194506200057460808a01620003c5565b60a08a01519094506001600160401b03808211156200059257600080fd5b620005a08c838d0162000451565b945060c08b0151915080821115620005b757600080fd5b620005c58c838d0162000451565b935060e08b0151915080821115620005dc57600080fd5b50620005eb8b828c01620004cd565b9150509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156200063d576200063d62000611565b500190565b60006001820162000657576200065762000611565b5060010190565b60008282101562000673576200067362000611565b500390565b600181811c908216806200068d57607f821691505b602082108103620006ae57634e487b7160e01b600052602260045260246000fd5b50919050565b61352780620006c46000396000f3fe6080604052600436106103195760003560e01c80635799b243116101ab578063a22cb465116100f7578063c87b56dd11610095578063f2fde38b1161006f578063f2fde38b14610918578063f51f96dd14610938578063fc588c041461094e578063fe2c7fee1461096e57600080fd5b8063c87b56dd1461089a578063e985e9c5146108ba578063ee55efee1461090357600080fd5b8063af38d757116100d1578063af38d75714610824578063b0f4cdcf1461083a578063b88d4fde1461085a578063c495cdfa1461087a57600080fd5b8063a22cb465146107dc578063a475b5dd146107fc578063ad7f1ea11461081157600080fd5b80637cb6475911610164578063941ada0e1161013e578063941ada0e1461075257806395d89b41146107675780639da3f8fd1461077c5780639dfe9d68146107a357600080fd5b80637cb64759146106ff57806382e78a891461071f5780638da5cb5b1461073457600080fd5b80635799b24314610634578063627804af146106545780636352211e1461067457806370a0823114610694578063715018a6146106b457806378d40025146106c957600080fd5b806322e011921161026a5780633aedfb8b1161022357806345c0f533116101fd57806345c0f533146105c457806351830227146105da57806355f804b3146105f4578063574830761461061457600080fd5b80633aedfb8b146105795780633cb519941461058e57806342842e0e146105a457600080fd5b806322e01192146104c457806323b872dd146104e45780632866ed21146105045780632eb4a7ab14610523578063356150e914610539578063379607f51461055957600080fd5b8063095ea7b3116102d757806312406f61116102b157806312406f611461046c57806315f91c181461048257806318160ddd146104985780631b2ef1ca146104b157600080fd5b8063095ea7b3146103fe5780630c1c972a1461041e5780630f2964fd1461043357600080fd5b80620e7fa81461031e57806301ffc9a71461034757806303d41eb61461037757806304c98b2b1461038d57806306fdde03146103a4578063081812fc146103c6575b600080fd5b34801561032a57600080fd5b5061033460115481565b6040519081526020015b60405180910390f35b34801561035357600080fd5b50610367610362366004612aeb565b61098e565b604051901515815260200161033e565b34801561038357600080fd5b50610334600d5481565b34801561039957600080fd5b506103a26109e0565b005b3480156103b057600080fd5b506103b9610a46565b60405161033e9190612b67565b3480156103d257600080fd5b506103e66103e1366004612b7a565b610ad8565b6040516001600160a01b03909116815260200161033e565b34801561040a57600080fd5b506103a2610419366004612baa565b610b1c565b34801561042a57600080fd5b506103a2610ba9565b34801561043f57600080fd5b5061036761044e366004612bd4565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561047857600080fd5b5061033460105481565b34801561048e57600080fd5b50610334600c5481565b3480156104a457600080fd5b5060015460005403610334565b6103a26104bf366004612bef565b610bfc565b3480156104d057600080fd5b506103a26104df366004612c59565b610ebb565b3480156104f057600080fd5b506103a26104ff366004612ca4565b61101b565b34801561051057600080fd5b5060175461036790610100900460ff1681565b34801561052f57600080fd5b50610334601b5481565b34801561054557600080fd5b506103a2610554366004612d24565b611026565b34801561056557600080fd5b506103a2610574366004612b7a565b6110f2565b34801561058557600080fd5b506103a2611292565b34801561059a57600080fd5b50610334600e5481565b3480156105b057600080fd5b506103a26105bf366004612ca4565b611357565b3480156105d057600080fd5b50610334600b5481565b3480156105e657600080fd5b506017546103679060ff1681565b34801561060057600080fd5b506103a261060f366004612d8f565b611372565b34801561062057600080fd5b506103a261062f366004612dd0565b6113e6565b34801561064057600080fd5b506103a261064f366004612dd0565b6115af565b34801561066057600080fd5b506103a261066f366004612baa565b61176c565b34801561068057600080fd5b506103e661068f366004612b7a565b6118c4565b3480156106a057600080fd5b506103346106af366004612bd4565b6118d6565b3480156106c057600080fd5b506103a2611924565b3480156106d557600080fd5b506103346106e4366004612bd4565b6001600160a01b03166000908152601a602052604090205490565b34801561070b57600080fd5b506103a261071a366004612b7a565b61195a565b34801561072b57600080fd5b506103a2611989565b34801561074057600080fd5b506008546001600160a01b03166103e6565b34801561075e57600080fd5b506103b9611a0d565b34801561077357600080fd5b506103b9611af5565b34801561078857600080fd5b50600a546107969060ff1681565b60405161033e9190612e1f565b3480156107af57600080fd5b506103676107be366004612bd4565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156107e857600080fd5b506103a26107f7366004612e47565b611b04565b34801561080857600080fd5b506103a2611b99565b6103a261081f366004612ec9565b611bd7565b34801561083057600080fd5b50610334600f5481565b34801561084657600080fd5b506103a2610855366004612f74565b611dcd565b34801561086657600080fd5b506103a2610875366004612fa9565b611e5b565b34801561088657600080fd5b506103a2610895366004612b7a565b611ea6565b3480156108a657600080fd5b506103b96108b5366004612b7a565b611ed5565b3480156108c657600080fd5b506103676108d5366004613068565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561090f57600080fd5b506103a261202e565b34801561092457600080fd5b506103a2610933366004612bd4565b6120f0565b34801561094457600080fd5b5061033460125481565b34801561095a57600080fd5b506103a2610969366004612b7a565b61218b565b34801561097a57600080fd5b506103a2610989366004612d8f565b6121ba565b60006001600160e01b031982166380ac58cd60e01b14806109bf57506001600160e01b03198216635b5e139f60e01b145b806109da57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610a135760405162461bcd60e51b8152600401610a0a9061309b565b60405180910390fd5b600a805460ff191660011790556040516000805160206134d283398151915290610a3c906130d0565b60405180910390a1565b606060028054610a55906130f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a81906130f7565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b5050505050905090565b6000610ae3826121f0565b610b00576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b27826118c4565b9050806001600160a01b0316836001600160a01b031603610b5b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b7b5750610b7981336108d5565b155b15610b99576040516367d9dca160e11b815260040160405180910390fd5b610ba483838361221b565b505050565b6008546001600160a01b03163314610bd35760405162461bcd60e51b8152600401610a0a9061309b565b600a805460ff191660021790556040516000805160206134d283398151915290610a3c90613131565b323314610c1b5760405162461bcd60e51b8152600401610a0a90613157565b600260095403610c3d5760405162461bcd60e51b8152600401610a0a9061318e565b60026009556001600a5460ff166003811115610c5b57610c5b612e09565b14158015610c8057506002600a5460ff166003811115610c7d57610c7d612e09565b14155b15610c9e5760405163b7b2409760e01b815260040160405180910390fd5b6014548114610cc057604051635cb045db60e01b815260040160405180910390fd5b600e54821115610ce357604051633e29b4fb60e11b815260040160405180910390fd5b600c5460015460005403610cf790846131db565b1115610d165760405163192d175560e01b815260040160405180910390fd5b6001600a5460ff166003811115610d2f57610d2f612e09565b03610e35573360009081526019602052604090205460ff1615610daf5781601054610d5a91906131f3565b3414610d7957604051635321e1df60e01b815260040160405180910390fd5b610d833383612277565b6000805160206134b28339815191523383604051610da2929190613212565b60405180910390a1610eb2565b3360009081526018602052604090205460ff16610ddf57604051631aa679f960e21b815260040160405180910390fd5b81601154610ded91906131f3565b3414610e0c57604051635321e1df60e01b815260040160405180910390fd5b610e163383612277565b6000805160206134b28339815191523383604051610da2929190613245565b6002600a5460ff166003811115610e4e57610e4e612e09565b03610eb25781601254610e6191906131f3565b3414610e8057604051635321e1df60e01b815260040160405180910390fd5b610e8a3383612277565b6000805160206134b28339815191523383604051610ea9929190613282565b60405180910390a15b50506001600955565b6008546001600160a01b03163314610ee55760405162461bcd60e51b8152600401610a0a9061309b565b6040516670726573616c6560c81b6020820152602701604051602081830303815290604052805190602001208383604051602001610f249291906132be565b6040516020818303038152906040528051906020012003610f46576011555050565b604051657075626c696360d01b6020820152602601604051602081830303815290604052805190602001208383604051602001610f849291906132be565b6040516020818303038152906040528051906020012003610fa6576012555050565b604051614f4760f01b6020820152602201604051602081830303815290604052805190602001208383604051602001610fe09291906132be565b6040516020818303038152906040528051906020012003611002576010555050565b604051635cb045db60e01b815260040160405180910390fd5b610ba4838383612291565b6008546001600160a01b031633146110505760405162461bcd60e51b8152600401610a0a9061309b565b82811461107057604051630822028f60e11b815260040160405180910390fd5b60005b838110156110eb5782828281811061108d5761108d6132ce565b90506020020135601a60008787858181106110aa576110aa6132ce565b90506020020160208101906110bf9190612bd4565b6001600160a01b03168152602081019190915260400160002055806110e3816132e4565b915050611073565b5050505050565b3233146111115760405162461bcd60e51b8152600401610a0a90613157565b6002600954036111335760405162461bcd60e51b8152600401610a0a9061318e565b6002600955601754610100900460ff1615156000036111655760405163b7b2409760e01b815260040160405180910390fd5b336000908152601a60205260409020546001111561119657604051631aa679f960e21b815260040160405180910390fd5b336000908152601a60205260409020548111156111c657604051633e29b4fb60e11b815260040160405180910390fd5b600c54600154600054036111da90836131db565b11156111f95760405163192d175560e01b815260040160405180910390fd5b336000908152601a6020526040812080548392906112189084906132fd565b9250508190555080600f600082825461123191906132fd565b9091555061124190503382612277565b60408051338152602081018390526060818301819052600a90820152694672656520436c61696d60b01b608082015290516000805160206134b28339815191529181900360a00190a1506001600955565b6008546001600160a01b031633146112bc5760405162461bcd60e51b8152600401610a0a9061309b565b601c5447906001600160a01b03166108fc6103e86112db84603a6131f3565b6112e5919061332a565b6040518115909202916000818181858888f1935050505015801561130d573d6000803e3d6000fd5b50336108fc6103e8611321846103ae6131f3565b61132b919061332a565b6040518115909202916000818181858888f19350505050158015611353573d6000803e3d6000fd5b5050565b610ba483838360405180602001604052806000815250611e5b565b6008546001600160a01b0316331461139c5760405162461bcd60e51b8152600401610a0a9061309b565b6113a860158383612a3c565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376782826040516113da92919061333e565b60405180910390a15050565b6008546001600160a01b031633146114105760405162461bcd60e51b8152600401610a0a9061309b565b604051614f4760f01b602082015260220160405160208183030381529060405280519060200120848460405160200161144a9291906132be565b60405160208183030381529060405280519060200120036114dd5760005b818110156114d757600160196000858585818110611488576114886132ce565b905060200201602081019061149d9190612bd4565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806114cf816132e4565b915050611468565b506115a9565b6040516670726573616c6560c81b602082015260270160405160208183030381529060405280519060200120848460405160200161151c9291906132be565b60405160208183030381529060405280519060200120036110025760005b818110156114d75760016018600085858581811061155a5761155a6132ce565b905060200201602081019061156f9190612bd4565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806115a1816132e4565b91505061153a565b50505050565b6008546001600160a01b031633146115d95760405162461bcd60e51b8152600401610a0a9061309b565b604051614f4760f01b60208201526022016040516020818303038152906040528051906020012084846040516020016116139291906132be565b60405160208183030381529060405280519060200120036116a05760005b818110156114d757600060196000858585818110611651576116516132ce565b90506020020160208101906116669190612bd4565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611698816132e4565b915050611631565b6040516670726573616c6560c81b60208201526027016040516020818303038152906040528051906020012084846040516020016116df9291906132be565b60405160208183030381529060405280519060200120036110025760005b818110156114d75760006018600085858581811061171d5761171d6132ce565b90506020020160208101906117329190612bd4565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611764816132e4565b9150506116fd565b6008546001600160a01b031633146117965760405162461bcd60e51b8152600401610a0a9061309b565b6001600160a01b0382166117bd5760405163d92e233d60e01b815260040160405180910390fd5b600b54600154600054036117d190836131db565b11156117f05760405163192d175560e01b815260040160405180910390fd5b600d541561186e57600d5481111561182557600d54600c600082825461181691906131db565b90915550506000600d55611856565b80600c600082825461183791906131db565b9250508190555080600d600082825461185091906132fd565b90915550505b600b54600c54111561186e57600b54600c556000600d555b6118788282612277565b604080516001600160a01b0384168152602081018390526060918101829052600391810191909152622232bb60e91b60808201526000805160206134b28339815191529060a0016113da565b60006118cf8261247c565b5192915050565b60006001600160a01b0382166118ff576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461194e5760405162461bcd60e51b8152600401610a0a9061309b565b6119586000612596565b565b6008546001600160a01b031633146119845760405162461bcd60e51b8152600401610a0a9061309b565b601b55565b6008546001600160a01b031633146119b35760405162461bcd60e51b8152600401610a0a9061309b565b6017805461ff001981166101009182900460ff1615909102179055600b54600f54600c546119e191906131db565b11611a0557600f54600c60008282546119fa91906131db565b909155506119589050565b600b54600c55565b60606000600a5460ff166003811115611a2857611a28612e09565b03611a4e575060408051808201909152600681526510db1bdcd95960d21b602082015290565b6001600a5460ff166003811115611a6757611a67612e09565b03611a8e575060408051808201909152600781526650726573616c6560c81b602082015290565b6002600a5460ff166003811115611aa757611aa7612e09565b03611ad2575060408051808201909152600b81526a5075626c69632053616c6560a81b602082015290565b5060408051808201909152600881526714dbdb190813dd5d60c21b602082015290565b606060038054610a55906130f7565b336001600160a01b03831603611b2d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611bc35760405162461bcd60e51b8152600401610a0a9061309b565b6017805460ff19811660ff90911615179055565b323314611bf65760405162461bcd60e51b8152600401610a0a90613157565b600260095403611c185760405162461bcd60e51b8152600401610a0a9061318e565b60026009556001600a5460ff166003811115611c3657611c36612e09565b14611c545760405163b7b2409760e01b815260040160405180910390fd5b600e54811115611c7757604051633e29b4fb60e11b815260040160405180910390fd5b600c5460015460005403611c8b90836131db565b1115611caa5760405163192d175560e01b815260040160405180910390fd5b601b546040516bffffffffffffffffffffffff193360601b166020820152611cec918491603401604051602081830303815290604052805190602001206125e8565b611d0957604051631aa679f960e21b815260040160405180910390fd5b3360009081526019602052604090205460ff1615611d775780601054611d2f91906131f3565b3414611d4e57604051635321e1df60e01b815260040160405180910390fd5b611d583382612277565b6000805160206134b28339815191523382604051610da2929190613212565b80601154611d8591906131f3565b3414611da457604051635321e1df60e01b815260040160405180910390fd5b611dae3382612277565b6000805160206134b28339815191523382604051610ea9929190613245565b6008546001600160a01b03163314611df75760405162461bcd60e51b8152600401610a0a9061309b565b60005b81811015610ba4576000601a6000858585818110611e1a57611e1a6132ce565b9050602002016020810190611e2f9190612bd4565b6001600160a01b0316815260208101919091526040016000205580611e53816132e4565b915050611dfa565b611e66848484612291565b6001600160a01b0383163b15158015611e885750611e86848484846125fe565b155b156115a9576040516368d2bf6b60e11b815260040160405180910390fd5b6008546001600160a01b03163314611ed05760405162461bcd60e51b8152600401610a0a9061309b565b601455565b6060611ee0826121f0565b611f2c5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610a0a565b60175460ff161515600003611fcd5760168054611f48906130f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f74906130f7565b8015611fc15780601f10611f9657610100808354040283529160200191611fc1565b820191906000526020600020905b815481529060010190602001808311611fa457829003601f168201915b50505050509050919050565b600060158054611fdc906130f7565b905011611ff857604051806020016040528060008152506109da565b6015612003836126ea565b604051602001612014929190613389565b60405160208183030381529060405292915050565b919050565b6008546001600160a01b031633146120585760405162461bcd60e51b8152600401610a0a9061309b565b600b5460015460005403036120ae57600a805460ff191660031790556040805160208082526008908201526714dbdb190813dd5d60c21b918101919091526000805160206134d283398151915290606001610a3c565b600a805460ff191690556040805160208082526006908201526510db1bdcd95960d21b918101919091526000805160206134d283398151915290606001610a3c565b6008546001600160a01b0316331461211a5760405162461bcd60e51b8152600401610a0a9061309b565b6001600160a01b03811661217f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0a565b61218881612596565b50565b6008546001600160a01b031633146121b55760405162461bcd60e51b8152600401610a0a9061309b565b600e55565b6008546001600160a01b031633146121e45760405162461bcd60e51b8152600401610a0a9061309b565b610ba460168383612a3c565b60008054821080156109da575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6113538282604051806020016040528060008152506127ea565b600061229c8261247c565b9050836001600160a01b031681600001516001600160a01b0316146122d35760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806122f157506122f185336108d5565b8061230c57503361230184610ad8565b6001600160a01b0316145b90508061232c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661235357604051633a954ecd60e21b815260040160405180910390fd5b61235f6000848761221b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661243357600054821461243357805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110eb565b60408051606081018252600080825260208201819052918101919091528160005481101561257d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061257b5780516001600160a01b031615612512579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612576579392505050565b612512565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826125f585846127f7565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612633903390899088908890600401613443565b6020604051808303816000875af192505050801561266e575060408051601f3d908101601f1916820190925261266b91810190613480565b60015b6126cc573d80801561269c576040519150601f19603f3d011682016040523d82523d6000602084013e6126a1565b606091505b5080516000036126c4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036127115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561273b5780612725816132e4565b91506127349050600a8361332a565b9150612715565b6000816001600160401b0381111561275557612755612e83565b6040519080825280601f01601f19166020018201604052801561277f576020820181803683370190505b5090505b84156126e2576127946001836132fd565b91506127a1600a8661349d565b6127ac9060306131db565b60f81b8183815181106127c1576127c16132ce565b60200101906001600160f81b031916908160001a9053506127e3600a8661332a565b9450612783565b610ba4838383600161286b565b600081815b8451811015612863576000858281518110612819576128196132ce565b6020026020010151905080831161283f5760008381526020829052604090209250612850565b600081815260208490526040902092505b508061285b816132e4565b9150506127fc565b509392505050565b6000546001600160a01b03851661289457604051622e076360e81b815260040160405180910390fd5b836000036128b55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561296657506001600160a01b0387163b15155b156129ee575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46129b760008884806001019550886125fe565b6129d4576040516368d2bf6b60e11b815260040160405180910390fd5b80820361296c5782600054146129e957600080fd5b612a33565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036129ef575b506000556110eb565b828054612a48906130f7565b90600052602060002090601f016020900481019282612a6a5760008555612ab0565b82601f10612a835782800160ff19823516178555612ab0565b82800160010185558215612ab0579182015b82811115612ab0578235825591602001919060010190612a95565b50612abc929150612ac0565b5090565b5b80821115612abc5760008155600101612ac1565b6001600160e01b03198116811461218857600080fd5b600060208284031215612afd57600080fd5b8135612b0881612ad5565b9392505050565b60005b83811015612b2a578181015183820152602001612b12565b838111156115a95750506000910152565b60008151808452612b53816020860160208601612b0f565b601f01601f19169290920160200192915050565b602081526000612b086020830184612b3b565b600060208284031215612b8c57600080fd5b5035919050565b80356001600160a01b038116811461202957600080fd5b60008060408385031215612bbd57600080fd5b612bc683612b93565b946020939093013593505050565b600060208284031215612be657600080fd5b612b0882612b93565b60008060408385031215612c0257600080fd5b50508035926020909101359150565b60008083601f840112612c2357600080fd5b5081356001600160401b03811115612c3a57600080fd5b602083019150836020828501011115612c5257600080fd5b9250929050565b600080600060408486031215612c6e57600080fd5b83356001600160401b03811115612c8457600080fd5b612c9086828701612c11565b909790965060209590950135949350505050565b600080600060608486031215612cb957600080fd5b612cc284612b93565b9250612cd060208501612b93565b9150604084013590509250925092565b60008083601f840112612cf257600080fd5b5081356001600160401b03811115612d0957600080fd5b6020830191508360208260051b8501011115612c5257600080fd5b60008060008060408587031215612d3a57600080fd5b84356001600160401b0380821115612d5157600080fd5b612d5d88838901612ce0565b90965094506020870135915080821115612d7657600080fd5b50612d8387828801612ce0565b95989497509550505050565b60008060208385031215612da257600080fd5b82356001600160401b03811115612db857600080fd5b612dc485828601612c11565b90969095509350505050565b60008060008060408587031215612de657600080fd5b84356001600160401b0380821115612dfd57600080fd5b612d5d88838901612c11565b634e487b7160e01b600052602160045260246000fd5b6020810160048310612e4157634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215612e5a57600080fd5b612e6383612b93565b915060208301358015158114612e7857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612ec157612ec1612e83565b604052919050565b60008060408385031215612edc57600080fd5b82356001600160401b0380821115612ef357600080fd5b818501915085601f830112612f0757600080fd5b8135602082821115612f1b57612f1b612e83565b8160051b9250612f2c818401612e99565b8281529284018101928181019089851115612f4657600080fd5b948201945b84861015612f6457853582529482019490820190612f4b565b9997909101359750505050505050565b60008060208385031215612f8757600080fd5b82356001600160401b03811115612f9d57600080fd5b612dc485828601612ce0565b60008060008060808587031215612fbf57600080fd5b612fc885612b93565b93506020612fd7818701612b93565b93506040860135925060608601356001600160401b0380821115612ffa57600080fd5b818801915088601f83011261300e57600080fd5b81358181111561302057613020612e83565b613032601f8201601f19168501612e99565b9150808252898482850101111561304857600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561307b57600080fd5b61308483612b93565b915061309260208401612b93565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020815260006109da60208301600781526650726573616c6560c81b602082015260400190565b600181811c9082168061310b57607f821691505b60208210810361312b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020815260006109da6020830160068152655075626c696360d01b602082015260400190565b6020808252601a908201527f43616c6c657220697320616e6f7468657220636f6e7472616374000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156131ee576131ee6131c5565b500190565b600081600019048311821515161561320d5761320d6131c5565b500290565b6001600160a01b039290921682526020820152606060408201819052600290820152614f4760f01b608082015260a00190565b6001600160a01b0383168152602081018290526060604082018190526007908201526650726573616c6560c81b6080820152600060a082016126e2565b6001600160a01b038316815260208101829052606060408201819052600690820152655075626c696360d01b6080820152600060a082016126e2565b8183823760009101908152919050565b634e487b7160e01b600052603260045260246000fd5b6000600182016132f6576132f66131c5565b5060010190565b60008282101561330f5761330f6131c5565b500390565b634e487b7160e01b600052601260045260246000fd5b60008261333957613339613314565b500490565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6000815161337f818560208601612b0f565b9290920192915050565b600080845481600182811c9150808316806133a557607f831692505b602080841082036133c457634e487b7160e01b86526022600452602486fd5b8180156133d857600181146133e957613416565b60ff19861689528489019650613416565b60008b81526020902060005b8681101561340e5781548b8201529085019083016133f5565b505084890196505b50505050505061343a613429828661336d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061347690830184612b3b565b9695505050505050565b60006020828403121561349257600080fd5b8151612b0881612ad5565b6000826134ac576134ac613314565b50069056fe85a66b9141978db9980f7e0ce3b468cebf4f7999f32b23091c5c03e798b1ba7a8ec7990a32a33474d410288c3000e8ea0b63c9f104ef2e5249d0c32964fc6523a2646970667358221220b26fdda61dd48e6ac70305a8baabaf7d13b6c9367e5b90b60926f206646dc81264736f6c634300080d00330000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000062eff2000000000000000000000000054fbfa35dd3128a1eec9d65a4684e96a9410990000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000001820000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000d0b98d3b2849134d0648f0098b3d6f5ebaa961f400000000000000000000000042b9e9b70d43f3d03cdc5a9c1c1754b8cf8dc1dd0000000000000000000000001e63933aca43bf4ac835a7c0eecc1f62cfc8b4c2000000000000000000000000d5abbb6c325c7ae681b13798179105606252c2c70000000000000000000000006d54b51494c43dc1b308ab32d3ccc4f262ba1bb80000000000000000000000005981d9aa1de65bb96fd5b57f4b1e702debc89b910000000000000000000000002ae24e0ef11169676f6bc58828e0a9220d0368d30000000000000000000000008159222f184ecc04f29c8ddae10d5f5e0630fb3a00000000000000000000000067a4f361b43cfd0d9c56e6d065de996ee89052b10000000000000000000000006306be2f288efbbcb1806cff9034160ba1a0502b0000000000000000000000002145a52545da113ee0b1e817b02ea19dbbe72d2100000000000000000000000000000000000000000000000000000000000000ac000000000000000000000000414848190b5c4f68a9d853845ca4079f0779058c0000000000000000000000006bfe032e90d1a766371781666956392df984098d000000000000000000000000cdca9732ff10a2a19f229044d3cdb9f4b0b041890000000000000000000000005430eca56ccd494e61be8212a560225c96f79657000000000000000000000000eb62654910ad5a34bf4627bf458e688f84e661600000000000000000000000001f70949e5cf46caa04607302a9a1829e048c9e6c000000000000000000000000fee339ef6428c94e22bdbee21d85a2be0cf147d9000000000000000000000000223efb5ae67cb8eafbdb5cce3d8bdea6cff5d42800000000000000000000000029aef997fc0a8d7f114311581793e3a22f39cb6000000000000000000000000007a52bc68d9af4cc509462293e103f67a3126154000000000000000000000000eb37fada366cf2f897fa8da4c6e7a89cfd1794df000000000000000000000000bf5ca418430ec7b12d58fa8d32e6ce5fee6057a90000000000000000000000008257e8d24f1960de1ce366f7704c930ccac097160000000000000000000000005fdedc3f3f211f15c8a0c2d8330e2affc49e31570000000000000000000000005220403fbd87c1eb09a1f3a316e656c70b3161d70000000000000000000000006d51241f1ca020ef659f6e94f53708f0cf40ac53000000000000000000000000f949868ad58dbcb6c2f9d8c4881714b594dad8f3000000000000000000000000cc730bd4f85eb3b29e9df0aaba8ee15871c0b1fb0000000000000000000000009fa1f2df17c94ae81f8cd4ab940ee6304fb17f020000000000000000000000006ed304618ada45be5991efeec1f7b4ce1da642f2000000000000000000000000fe7db2f8bdae0640e5d3ae82824e81f442a46175000000000000000000000000e32ffaf86b0b3693c974df9c3c8f8cc79a807737000000000000000000000000a0dcec87df576c1e37df0e2a2010968b8bc362e20000000000000000000000006c5c5caa47d63fa0b4601407a3c3ae44bc1da10d000000000000000000000000d7195db53b9c1a3790d7ea0c3680efccc685072000000000000000000000000054870455505b31fcfda37941c9b692a6c537543e000000000000000000000000ee833db009dc6a47927896ff0807f79a7f52f11b000000000000000000000000b14f5a5f90eaea5c45603601d79d0f93bfeb0c05000000000000000000000000662f86bfe364736a83e0b9c926bfe7ba8196bb5000000000000000000000000063f4c7640038c88e3144ad5780c58a8397181e5e000000000000000000000000239169df480ef85575f2792d6e006a343d0fac110000000000000000000000006a5904d318d2820292876f97e3834c16cd7a16c3000000000000000000000000f5ad3e05624717e87a4c0e40fd9f7c6dd159b759000000000000000000000000c90ef03f6c0cce2895f815926fce44347363e550000000000000000000000000f136ca36415339e7e5866a2dcd80c5ffbbce2b2d00000000000000000000000084905d7c0e7c81ce171438587b33e7dd32703165000000000000000000000000c1d45e78d3fbc43142c1ced44202d11379b9e06d0000000000000000000000003742975f7ec465c70390eb46aeb5221003472d19000000000000000000000000f29d9c40e716394ebd67da78632ac7627eb1e75d0000000000000000000000001bcc3d69705ca4a21de6deeaea82568448fdee6200000000000000000000000007a52bc68d9af4cc509462293e103f67a3126154000000000000000000000000f136ca36415339e7e5866a2dcd80c5ffbbce2b2d000000000000000000000000a91a2e8d7fb0d51acc757617a1c8619cf74d78ea000000000000000000000000511eb9bd2f9ae8ea3f439830b0d9c213419c05c60000000000000000000000009fcc5826e04bad89feb129337d26c7de6f8d94190000000000000000000000005a030b3a852c36bbeda3bad94c6691d72173d48f0000000000000000000000005f70a181c9a7a50cea2716c20d5b76eed96f6eff0000000000000000000000002ee4f1234cdcb3a76f4d332ea5213f1217858ba30000000000000000000000004502490b0a82267fbabe37c9900f78090075c9c9000000000000000000000000abd0234a19b86a29fc696b34e28ed8095e5605330000000000000000000000005a030b3a852c36bbeda3bad94c6691d72173d48f000000000000000000000000511eb9bd2f9ae8ea3f439830b0d9c213419c05c60000000000000000000000000a2a2bfd21360f94f0b10994efc0836402ac9796000000000000000000000000f2f3e2067d96941f5f47add69538419fdfd3a99a0000000000000000000000002ee4f1234cdcb3a76f4d332ea5213f1217858ba300000000000000000000000048de57e262dec8f718ab1a34b0433de0d4e155de000000000000000000000000a1491d0c75478c7ccb0dfabf4fdc842fba0800e7000000000000000000000000001c3daced7871431f70192f645b9355974c3d660000000000000000000000006f479e9e6d8ca31f8c6817f75c594ffba29bb80c000000000000000000000000ae5780488aebebf237097f82214ce817b41015720000000000000000000000006d134d5898bcfa133fb0138ccaad7e0a1c81e0ab0000000000000000000000002d64b59a4c1a60543a141aa165b03ae3d3da807f000000000000000000000000d79c2d8f6b5b34a6acbaa8d5954d656b1948ae240000000000000000000000007e3586164de830d6148d51fd841d1aaa1d47e8de000000000000000000000000c9df52795910a957ae850b1f9425f21d3ecbf009000000000000000000000000234866a34c4ee84bd9499046133b8236b4fb75d70000000000000000000000007706ab7b67f78cc164bb52ca61316bcb23c99be700000000000000000000000090a86196ae043edb0fff53f8d5d5abc94d5491a5000000000000000000000000a2530f581fa7a06d764e069bc52d19a7774ebcb6000000000000000000000000577a74d889ac694255800835f110dc24ed8dc6f6000000000000000000000000c4be359801c617d0293e4ff8f2bd65639565b38300000000000000000000000002dd5c07b6a2124a9d7d5ea8069246564fb71d5800000000000000000000000095482d5ab1c6487e3e32a9303e8a02ecf60aca0d000000000000000000000000391d833a3cc8724d5ee50bb69a1b93618c94a255000000000000000000000000df41953ca009570c433014e254162db96862f61a0000000000000000000000006dcb6d2df8ec2f78b54529b866405cceb11308c800000000000000000000000091d6629e0ba130b0a70b5b153351f24cfe70565700000000000000000000000047b296b08d859be9b6857636404ecf85b4a2e7f1000000000000000000000000ed40907207a9e2057215db4cc9ad2be5d20ce23400000000000000000000000075ae13dbfe411d43499135f1299be95781aaad6d0000000000000000000000000f8185f7124c472f57afdb12798904d3bb2e5193000000000000000000000000e26a3d56c9d44081dc77cf89f2caf45436ba6240000000000000000000000000636fbeb5f21f65ff930962becffe89ef6c5a1ed60000000000000000000000001f6b0e280bce06d60638a42fc4fd448a147ff4ea0000000000000000000000008e4a313814825c6f859ac434c1dc2b42c65bfcc90000000000000000000000000c0f91c3da0b1631a341b292559913f23a07b2060000000000000000000000000d3732f3b39f975ee743eafe77a97b312c4d48010000000000000000000000000f2649f2bfa976365e3749c6f9b86315105d9512000000000000000000000000220b979752f7efe46340d63c236cd7efc3dc3a7e000000000000000000000000b76db90259ff54ec3f9ae993e80352d91e3ea28d0000000000000000000000000c0f91c3da0b1631a341b292559913f23a07b2060000000000000000000000000661043d25ecefe100665844d40b7d15e0748d8d000000000000000000000000dbe2239376c6251ec34c060e9ffaa5634acb328500000000000000000000000027df58e79e6e95317d8fb1cb8dcfee13b9f36b9b00000000000000000000000066b73298fff62ff5222cf0232cde8cc9a07dc175000000000000000000000000e814ad3bedc0d8184a61780d8d6a986c1fccde36000000000000000000000000cbd546dc88a0784485315f925dc038aeb3ba0692000000000000000000000000c2deb4286dcfdc58274fb408957d412f7145fbfd000000000000000000000000864563f18c424778b9586fb25676773515bc2303000000000000000000000000d65b9ecb40451b8a8bcafadcbfd5c3a4bbe1229300000000000000000000000003411916016ff41763f60e18b8a4b19beeb112e0000000000000000000000000281dca6f7733726a0f29e9a90eddd492675b0af50000000000000000000000008c3cbb3755325cab4c32d1f86660c1d2b26b2052000000000000000000000000ff985218b7bfe6159f4a63a2282a895bd0c9b41700000000000000000000000051414175d5e67b6347389db6af7b60a8f10a474d00000000000000000000000087a4e3c8cea364f44ec943bd5832dc4525e0bbe60000000000000000000000001ee888550f702d4b447f51190ebd9940442d67a00000000000000000000000004694d6eabb6b66d4281ff055f47e6398cb86342800000000000000000000000013756406534d1cf5a001a3ed8fb714c076428c550000000000000000000000007da07288b1799b5e32adc6ddabf7c5aacf6e388b000000000000000000000000444ac276dc50a5e30385037845556580de354f3500000000000000000000000093320c373b7c4d80494797125c221ad4b32109860000000000000000000000007a60fd73d182353877c22b6ce007ec6e68c633fb00000000000000000000000022809caab57159e78e68df5f1bfe8a86b3a74e6e000000000000000000000000e8e1d13a8b4e324bf7a59410e786cfc253e74d1f00000000000000000000000050b6285d630532c013a197bd3f2b6c5c034edf3d000000000000000000000000a2fbc1848bd0b86b4bff20bbdc4b0a0b1a9ef23a000000000000000000000000d8682acdb8e3a12eb2b9c9dc434f7d025dddea06000000000000000000000000b2a48f35f34021fe42ae989240f696caee3c208a000000000000000000000000b2a48f35f34021fe42ae989240f696caee3c208a000000000000000000000000b2a48f35f34021fe42ae989240f696caee3c208a0000000000000000000000002c97fb4b6d6a894b90c10c4e2e669ddf0a3dbc44000000000000000000000000a86bd1e29bfdd265652652e1f24639115c30d21600000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d1700000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d1700000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d170000000000000000000000003fe737393da0ac916c1f8562bda4a5c80b68e9340000000000000000000000000edf8c670d400e29a16cde18def78f3fe483fbd8000000000000000000000000643baf029306124c90650661f1008827dc5dfcb5000000000000000000000000e8e1d13a8b4e324bf7a59410e786cfc253e74d1f000000000000000000000000a8e8e61a7f9cbec71264cd8fb10564e24bf0835e0000000000000000000000007cae3fc06af0a8974e34db4dc52e01f373511b2d000000000000000000000000d5abbb6c325c7ae681b13798179105606252c2c70000000000000000000000001791df3b1ec85c412fe4ba2145c850f940d524e300000000000000000000000051fe1776ae013c5805d9c5619517a0ed10545f450000000000000000000000002d940bdb52720f550721e2dfbecffeb26d2d6ecc000000000000000000000000543acd7e8f3f30c69610735fa44b09a412bb419d000000000000000000000000df7a01af227050d6f8e74d791dc677eceee1a998000000000000000000000000a5f9db0420f71dcafe3fb3f99cdc6f43e3be0fde000000000000000000000000d49e42bc273560c087aa3e946e8e7a002d63cd180000000000000000000000006025fb900ccd987be11c0a54eaa13f6ab6734879000000000000000000000000bec7bf7c39a4bd45f1cb1821f3e8e6b148081d200000000000000000000000001bbab71643f3b35ba99db6dc2c0d97fe573fa07b0000000000000000000000009e2306e6337cb92821ff222aef7dbad80b6955ac000000000000000000000000c3f84619bf913fa899a78daabcf1a207a9c011c4000000000000000000000000e38c59b116c8280ba27fbe3edfb63a79b64ed01100000000000000000000000058cc531dc57f693eb8abd0fa0bc07f4cbe3b9ef3000000000000000000000000b141568373b3b1862b9bd684585ce0451a1942e9000000000000000000000000095e92cba0738f951abca7d59e92885308a38b9c00000000000000000000000087d4e46952884c34e69948220adbd82f7caf720000000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d17000000000000000000000000815e2d5b39f7c2152a72b7705dc6bebfa67c795e000000000000000000000000ece5624dd0048835183bcb496565ef7380797228000000000000000000000000ece5624dd0048835183bcb496565ef738079722800000000000000000000000090127a76245cfae1743ecddb59ab4759e76ba46d000000000000000000000000873eea965ca3f4b1fe0eb2126c0bd8a992413979000000000000000000000000fad26eb3f1815f59719bf98be7e2763353d5daa5000000000000000000000000bc09be892ab7f840eb71fbdd77054d7df95f4adc000000000000000000000000ff6c9a9637e321f3056f83d16a06026cd5331174000000000000000000000000815e2d5b39f7c2152a72b7705dc6bebfa67c795e00000000000000000000000008f73b63e3c7e63dc2d3f57390843d3c77ff77b7000000000000000000000000d0b98d3b2849134d0648f0098b3d6f5ebaa961f4000000000000000000000000139fe4d88806e0ab704b107f8ae8ac534a4fe28700000000000000000000000088e795bc5f86cffbd38776479bf7168a4513cd5a00000000000000000000000077d08e047933c72dc1abff8bb85e69fb4d9e69260000000000000000000000006afb0bd5332f174558c174efd4426606edb073cc000000000000000000000000694d8ef0027edb3e335386e2b38166d12f16ef52000000000000000000000000e576c0f771bc3b4e5eabccb425ae533d9e00e95300000000000000000000000020b39e410043bc90a3345a26e84d2d1e7559037c000000000000000000000000bc5557d60383d90b97549a046b9914c29ee67bcc0000000000000000000000004c6bb6f96acb13c5d23cf4b98a5526b9c93cdbc8000000000000000000000000d15c13f3307effd08dcef7a97312555af48ced7400000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000005
Deployed Bytecode
0x6080604052600436106103195760003560e01c80635799b243116101ab578063a22cb465116100f7578063c87b56dd11610095578063f2fde38b1161006f578063f2fde38b14610918578063f51f96dd14610938578063fc588c041461094e578063fe2c7fee1461096e57600080fd5b8063c87b56dd1461089a578063e985e9c5146108ba578063ee55efee1461090357600080fd5b8063af38d757116100d1578063af38d75714610824578063b0f4cdcf1461083a578063b88d4fde1461085a578063c495cdfa1461087a57600080fd5b8063a22cb465146107dc578063a475b5dd146107fc578063ad7f1ea11461081157600080fd5b80637cb6475911610164578063941ada0e1161013e578063941ada0e1461075257806395d89b41146107675780639da3f8fd1461077c5780639dfe9d68146107a357600080fd5b80637cb64759146106ff57806382e78a891461071f5780638da5cb5b1461073457600080fd5b80635799b24314610634578063627804af146106545780636352211e1461067457806370a0823114610694578063715018a6146106b457806378d40025146106c957600080fd5b806322e011921161026a5780633aedfb8b1161022357806345c0f533116101fd57806345c0f533146105c457806351830227146105da57806355f804b3146105f4578063574830761461061457600080fd5b80633aedfb8b146105795780633cb519941461058e57806342842e0e146105a457600080fd5b806322e01192146104c457806323b872dd146104e45780632866ed21146105045780632eb4a7ab14610523578063356150e914610539578063379607f51461055957600080fd5b8063095ea7b3116102d757806312406f61116102b157806312406f611461046c57806315f91c181461048257806318160ddd146104985780631b2ef1ca146104b157600080fd5b8063095ea7b3146103fe5780630c1c972a1461041e5780630f2964fd1461043357600080fd5b80620e7fa81461031e57806301ffc9a71461034757806303d41eb61461037757806304c98b2b1461038d57806306fdde03146103a4578063081812fc146103c6575b600080fd5b34801561032a57600080fd5b5061033460115481565b6040519081526020015b60405180910390f35b34801561035357600080fd5b50610367610362366004612aeb565b61098e565b604051901515815260200161033e565b34801561038357600080fd5b50610334600d5481565b34801561039957600080fd5b506103a26109e0565b005b3480156103b057600080fd5b506103b9610a46565b60405161033e9190612b67565b3480156103d257600080fd5b506103e66103e1366004612b7a565b610ad8565b6040516001600160a01b03909116815260200161033e565b34801561040a57600080fd5b506103a2610419366004612baa565b610b1c565b34801561042a57600080fd5b506103a2610ba9565b34801561043f57600080fd5b5061036761044e366004612bd4565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561047857600080fd5b5061033460105481565b34801561048e57600080fd5b50610334600c5481565b3480156104a457600080fd5b5060015460005403610334565b6103a26104bf366004612bef565b610bfc565b3480156104d057600080fd5b506103a26104df366004612c59565b610ebb565b3480156104f057600080fd5b506103a26104ff366004612ca4565b61101b565b34801561051057600080fd5b5060175461036790610100900460ff1681565b34801561052f57600080fd5b50610334601b5481565b34801561054557600080fd5b506103a2610554366004612d24565b611026565b34801561056557600080fd5b506103a2610574366004612b7a565b6110f2565b34801561058557600080fd5b506103a2611292565b34801561059a57600080fd5b50610334600e5481565b3480156105b057600080fd5b506103a26105bf366004612ca4565b611357565b3480156105d057600080fd5b50610334600b5481565b3480156105e657600080fd5b506017546103679060ff1681565b34801561060057600080fd5b506103a261060f366004612d8f565b611372565b34801561062057600080fd5b506103a261062f366004612dd0565b6113e6565b34801561064057600080fd5b506103a261064f366004612dd0565b6115af565b34801561066057600080fd5b506103a261066f366004612baa565b61176c565b34801561068057600080fd5b506103e661068f366004612b7a565b6118c4565b3480156106a057600080fd5b506103346106af366004612bd4565b6118d6565b3480156106c057600080fd5b506103a2611924565b3480156106d557600080fd5b506103346106e4366004612bd4565b6001600160a01b03166000908152601a602052604090205490565b34801561070b57600080fd5b506103a261071a366004612b7a565b61195a565b34801561072b57600080fd5b506103a2611989565b34801561074057600080fd5b506008546001600160a01b03166103e6565b34801561075e57600080fd5b506103b9611a0d565b34801561077357600080fd5b506103b9611af5565b34801561078857600080fd5b50600a546107969060ff1681565b60405161033e9190612e1f565b3480156107af57600080fd5b506103676107be366004612bd4565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156107e857600080fd5b506103a26107f7366004612e47565b611b04565b34801561080857600080fd5b506103a2611b99565b6103a261081f366004612ec9565b611bd7565b34801561083057600080fd5b50610334600f5481565b34801561084657600080fd5b506103a2610855366004612f74565b611dcd565b34801561086657600080fd5b506103a2610875366004612fa9565b611e5b565b34801561088657600080fd5b506103a2610895366004612b7a565b611ea6565b3480156108a657600080fd5b506103b96108b5366004612b7a565b611ed5565b3480156108c657600080fd5b506103676108d5366004613068565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561090f57600080fd5b506103a261202e565b34801561092457600080fd5b506103a2610933366004612bd4565b6120f0565b34801561094457600080fd5b5061033460125481565b34801561095a57600080fd5b506103a2610969366004612b7a565b61218b565b34801561097a57600080fd5b506103a2610989366004612d8f565b6121ba565b60006001600160e01b031982166380ac58cd60e01b14806109bf57506001600160e01b03198216635b5e139f60e01b145b806109da57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610a135760405162461bcd60e51b8152600401610a0a9061309b565b60405180910390fd5b600a805460ff191660011790556040516000805160206134d283398151915290610a3c906130d0565b60405180910390a1565b606060028054610a55906130f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a81906130f7565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b5050505050905090565b6000610ae3826121f0565b610b00576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b27826118c4565b9050806001600160a01b0316836001600160a01b031603610b5b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b7b5750610b7981336108d5565b155b15610b99576040516367d9dca160e11b815260040160405180910390fd5b610ba483838361221b565b505050565b6008546001600160a01b03163314610bd35760405162461bcd60e51b8152600401610a0a9061309b565b600a805460ff191660021790556040516000805160206134d283398151915290610a3c90613131565b323314610c1b5760405162461bcd60e51b8152600401610a0a90613157565b600260095403610c3d5760405162461bcd60e51b8152600401610a0a9061318e565b60026009556001600a5460ff166003811115610c5b57610c5b612e09565b14158015610c8057506002600a5460ff166003811115610c7d57610c7d612e09565b14155b15610c9e5760405163b7b2409760e01b815260040160405180910390fd5b6014548114610cc057604051635cb045db60e01b815260040160405180910390fd5b600e54821115610ce357604051633e29b4fb60e11b815260040160405180910390fd5b600c5460015460005403610cf790846131db565b1115610d165760405163192d175560e01b815260040160405180910390fd5b6001600a5460ff166003811115610d2f57610d2f612e09565b03610e35573360009081526019602052604090205460ff1615610daf5781601054610d5a91906131f3565b3414610d7957604051635321e1df60e01b815260040160405180910390fd5b610d833383612277565b6000805160206134b28339815191523383604051610da2929190613212565b60405180910390a1610eb2565b3360009081526018602052604090205460ff16610ddf57604051631aa679f960e21b815260040160405180910390fd5b81601154610ded91906131f3565b3414610e0c57604051635321e1df60e01b815260040160405180910390fd5b610e163383612277565b6000805160206134b28339815191523383604051610da2929190613245565b6002600a5460ff166003811115610e4e57610e4e612e09565b03610eb25781601254610e6191906131f3565b3414610e8057604051635321e1df60e01b815260040160405180910390fd5b610e8a3383612277565b6000805160206134b28339815191523383604051610ea9929190613282565b60405180910390a15b50506001600955565b6008546001600160a01b03163314610ee55760405162461bcd60e51b8152600401610a0a9061309b565b6040516670726573616c6560c81b6020820152602701604051602081830303815290604052805190602001208383604051602001610f249291906132be565b6040516020818303038152906040528051906020012003610f46576011555050565b604051657075626c696360d01b6020820152602601604051602081830303815290604052805190602001208383604051602001610f849291906132be565b6040516020818303038152906040528051906020012003610fa6576012555050565b604051614f4760f01b6020820152602201604051602081830303815290604052805190602001208383604051602001610fe09291906132be565b6040516020818303038152906040528051906020012003611002576010555050565b604051635cb045db60e01b815260040160405180910390fd5b610ba4838383612291565b6008546001600160a01b031633146110505760405162461bcd60e51b8152600401610a0a9061309b565b82811461107057604051630822028f60e11b815260040160405180910390fd5b60005b838110156110eb5782828281811061108d5761108d6132ce565b90506020020135601a60008787858181106110aa576110aa6132ce565b90506020020160208101906110bf9190612bd4565b6001600160a01b03168152602081019190915260400160002055806110e3816132e4565b915050611073565b5050505050565b3233146111115760405162461bcd60e51b8152600401610a0a90613157565b6002600954036111335760405162461bcd60e51b8152600401610a0a9061318e565b6002600955601754610100900460ff1615156000036111655760405163b7b2409760e01b815260040160405180910390fd5b336000908152601a60205260409020546001111561119657604051631aa679f960e21b815260040160405180910390fd5b336000908152601a60205260409020548111156111c657604051633e29b4fb60e11b815260040160405180910390fd5b600c54600154600054036111da90836131db565b11156111f95760405163192d175560e01b815260040160405180910390fd5b336000908152601a6020526040812080548392906112189084906132fd565b9250508190555080600f600082825461123191906132fd565b9091555061124190503382612277565b60408051338152602081018390526060818301819052600a90820152694672656520436c61696d60b01b608082015290516000805160206134b28339815191529181900360a00190a1506001600955565b6008546001600160a01b031633146112bc5760405162461bcd60e51b8152600401610a0a9061309b565b601c5447906001600160a01b03166108fc6103e86112db84603a6131f3565b6112e5919061332a565b6040518115909202916000818181858888f1935050505015801561130d573d6000803e3d6000fd5b50336108fc6103e8611321846103ae6131f3565b61132b919061332a565b6040518115909202916000818181858888f19350505050158015611353573d6000803e3d6000fd5b5050565b610ba483838360405180602001604052806000815250611e5b565b6008546001600160a01b0316331461139c5760405162461bcd60e51b8152600401610a0a9061309b565b6113a860158383612a3c565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376782826040516113da92919061333e565b60405180910390a15050565b6008546001600160a01b031633146114105760405162461bcd60e51b8152600401610a0a9061309b565b604051614f4760f01b602082015260220160405160208183030381529060405280519060200120848460405160200161144a9291906132be565b60405160208183030381529060405280519060200120036114dd5760005b818110156114d757600160196000858585818110611488576114886132ce565b905060200201602081019061149d9190612bd4565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806114cf816132e4565b915050611468565b506115a9565b6040516670726573616c6560c81b602082015260270160405160208183030381529060405280519060200120848460405160200161151c9291906132be565b60405160208183030381529060405280519060200120036110025760005b818110156114d75760016018600085858581811061155a5761155a6132ce565b905060200201602081019061156f9190612bd4565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806115a1816132e4565b91505061153a565b50505050565b6008546001600160a01b031633146115d95760405162461bcd60e51b8152600401610a0a9061309b565b604051614f4760f01b60208201526022016040516020818303038152906040528051906020012084846040516020016116139291906132be565b60405160208183030381529060405280519060200120036116a05760005b818110156114d757600060196000858585818110611651576116516132ce565b90506020020160208101906116669190612bd4565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611698816132e4565b915050611631565b6040516670726573616c6560c81b60208201526027016040516020818303038152906040528051906020012084846040516020016116df9291906132be565b60405160208183030381529060405280519060200120036110025760005b818110156114d75760006018600085858581811061171d5761171d6132ce565b90506020020160208101906117329190612bd4565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611764816132e4565b9150506116fd565b6008546001600160a01b031633146117965760405162461bcd60e51b8152600401610a0a9061309b565b6001600160a01b0382166117bd5760405163d92e233d60e01b815260040160405180910390fd5b600b54600154600054036117d190836131db565b11156117f05760405163192d175560e01b815260040160405180910390fd5b600d541561186e57600d5481111561182557600d54600c600082825461181691906131db565b90915550506000600d55611856565b80600c600082825461183791906131db565b9250508190555080600d600082825461185091906132fd565b90915550505b600b54600c54111561186e57600b54600c556000600d555b6118788282612277565b604080516001600160a01b0384168152602081018390526060918101829052600391810191909152622232bb60e91b60808201526000805160206134b28339815191529060a0016113da565b60006118cf8261247c565b5192915050565b60006001600160a01b0382166118ff576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461194e5760405162461bcd60e51b8152600401610a0a9061309b565b6119586000612596565b565b6008546001600160a01b031633146119845760405162461bcd60e51b8152600401610a0a9061309b565b601b55565b6008546001600160a01b031633146119b35760405162461bcd60e51b8152600401610a0a9061309b565b6017805461ff001981166101009182900460ff1615909102179055600b54600f54600c546119e191906131db565b11611a0557600f54600c60008282546119fa91906131db565b909155506119589050565b600b54600c55565b60606000600a5460ff166003811115611a2857611a28612e09565b03611a4e575060408051808201909152600681526510db1bdcd95960d21b602082015290565b6001600a5460ff166003811115611a6757611a67612e09565b03611a8e575060408051808201909152600781526650726573616c6560c81b602082015290565b6002600a5460ff166003811115611aa757611aa7612e09565b03611ad2575060408051808201909152600b81526a5075626c69632053616c6560a81b602082015290565b5060408051808201909152600881526714dbdb190813dd5d60c21b602082015290565b606060038054610a55906130f7565b336001600160a01b03831603611b2d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611bc35760405162461bcd60e51b8152600401610a0a9061309b565b6017805460ff19811660ff90911615179055565b323314611bf65760405162461bcd60e51b8152600401610a0a90613157565b600260095403611c185760405162461bcd60e51b8152600401610a0a9061318e565b60026009556001600a5460ff166003811115611c3657611c36612e09565b14611c545760405163b7b2409760e01b815260040160405180910390fd5b600e54811115611c7757604051633e29b4fb60e11b815260040160405180910390fd5b600c5460015460005403611c8b90836131db565b1115611caa5760405163192d175560e01b815260040160405180910390fd5b601b546040516bffffffffffffffffffffffff193360601b166020820152611cec918491603401604051602081830303815290604052805190602001206125e8565b611d0957604051631aa679f960e21b815260040160405180910390fd5b3360009081526019602052604090205460ff1615611d775780601054611d2f91906131f3565b3414611d4e57604051635321e1df60e01b815260040160405180910390fd5b611d583382612277565b6000805160206134b28339815191523382604051610da2929190613212565b80601154611d8591906131f3565b3414611da457604051635321e1df60e01b815260040160405180910390fd5b611dae3382612277565b6000805160206134b28339815191523382604051610ea9929190613245565b6008546001600160a01b03163314611df75760405162461bcd60e51b8152600401610a0a9061309b565b60005b81811015610ba4576000601a6000858585818110611e1a57611e1a6132ce565b9050602002016020810190611e2f9190612bd4565b6001600160a01b0316815260208101919091526040016000205580611e53816132e4565b915050611dfa565b611e66848484612291565b6001600160a01b0383163b15158015611e885750611e86848484846125fe565b155b156115a9576040516368d2bf6b60e11b815260040160405180910390fd5b6008546001600160a01b03163314611ed05760405162461bcd60e51b8152600401610a0a9061309b565b601455565b6060611ee0826121f0565b611f2c5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610a0a565b60175460ff161515600003611fcd5760168054611f48906130f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f74906130f7565b8015611fc15780601f10611f9657610100808354040283529160200191611fc1565b820191906000526020600020905b815481529060010190602001808311611fa457829003601f168201915b50505050509050919050565b600060158054611fdc906130f7565b905011611ff857604051806020016040528060008152506109da565b6015612003836126ea565b604051602001612014929190613389565b60405160208183030381529060405292915050565b919050565b6008546001600160a01b031633146120585760405162461bcd60e51b8152600401610a0a9061309b565b600b5460015460005403036120ae57600a805460ff191660031790556040805160208082526008908201526714dbdb190813dd5d60c21b918101919091526000805160206134d283398151915290606001610a3c565b600a805460ff191690556040805160208082526006908201526510db1bdcd95960d21b918101919091526000805160206134d283398151915290606001610a3c565b6008546001600160a01b0316331461211a5760405162461bcd60e51b8152600401610a0a9061309b565b6001600160a01b03811661217f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0a565b61218881612596565b50565b6008546001600160a01b031633146121b55760405162461bcd60e51b8152600401610a0a9061309b565b600e55565b6008546001600160a01b031633146121e45760405162461bcd60e51b8152600401610a0a9061309b565b610ba460168383612a3c565b60008054821080156109da575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6113538282604051806020016040528060008152506127ea565b600061229c8261247c565b9050836001600160a01b031681600001516001600160a01b0316146122d35760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806122f157506122f185336108d5565b8061230c57503361230184610ad8565b6001600160a01b0316145b90508061232c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661235357604051633a954ecd60e21b815260040160405180910390fd5b61235f6000848761221b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661243357600054821461243357805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110eb565b60408051606081018252600080825260208201819052918101919091528160005481101561257d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061257b5780516001600160a01b031615612512579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612576579392505050565b612512565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826125f585846127f7565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612633903390899088908890600401613443565b6020604051808303816000875af192505050801561266e575060408051601f3d908101601f1916820190925261266b91810190613480565b60015b6126cc573d80801561269c576040519150601f19603f3d011682016040523d82523d6000602084013e6126a1565b606091505b5080516000036126c4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036127115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561273b5780612725816132e4565b91506127349050600a8361332a565b9150612715565b6000816001600160401b0381111561275557612755612e83565b6040519080825280601f01601f19166020018201604052801561277f576020820181803683370190505b5090505b84156126e2576127946001836132fd565b91506127a1600a8661349d565b6127ac9060306131db565b60f81b8183815181106127c1576127c16132ce565b60200101906001600160f81b031916908160001a9053506127e3600a8661332a565b9450612783565b610ba4838383600161286b565b600081815b8451811015612863576000858281518110612819576128196132ce565b6020026020010151905080831161283f5760008381526020829052604090209250612850565b600081815260208490526040902092505b508061285b816132e4565b9150506127fc565b509392505050565b6000546001600160a01b03851661289457604051622e076360e81b815260040160405180910390fd5b836000036128b55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561296657506001600160a01b0387163b15155b156129ee575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46129b760008884806001019550886125fe565b6129d4576040516368d2bf6b60e11b815260040160405180910390fd5b80820361296c5782600054146129e957600080fd5b612a33565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036129ef575b506000556110eb565b828054612a48906130f7565b90600052602060002090601f016020900481019282612a6a5760008555612ab0565b82601f10612a835782800160ff19823516178555612ab0565b82800160010185558215612ab0579182015b82811115612ab0578235825591602001919060010190612a95565b50612abc929150612ac0565b5090565b5b80821115612abc5760008155600101612ac1565b6001600160e01b03198116811461218857600080fd5b600060208284031215612afd57600080fd5b8135612b0881612ad5565b9392505050565b60005b83811015612b2a578181015183820152602001612b12565b838111156115a95750506000910152565b60008151808452612b53816020860160208601612b0f565b601f01601f19169290920160200192915050565b602081526000612b086020830184612b3b565b600060208284031215612b8c57600080fd5b5035919050565b80356001600160a01b038116811461202957600080fd5b60008060408385031215612bbd57600080fd5b612bc683612b93565b946020939093013593505050565b600060208284031215612be657600080fd5b612b0882612b93565b60008060408385031215612c0257600080fd5b50508035926020909101359150565b60008083601f840112612c2357600080fd5b5081356001600160401b03811115612c3a57600080fd5b602083019150836020828501011115612c5257600080fd5b9250929050565b600080600060408486031215612c6e57600080fd5b83356001600160401b03811115612c8457600080fd5b612c9086828701612c11565b909790965060209590950135949350505050565b600080600060608486031215612cb957600080fd5b612cc284612b93565b9250612cd060208501612b93565b9150604084013590509250925092565b60008083601f840112612cf257600080fd5b5081356001600160401b03811115612d0957600080fd5b6020830191508360208260051b8501011115612c5257600080fd5b60008060008060408587031215612d3a57600080fd5b84356001600160401b0380821115612d5157600080fd5b612d5d88838901612ce0565b90965094506020870135915080821115612d7657600080fd5b50612d8387828801612ce0565b95989497509550505050565b60008060208385031215612da257600080fd5b82356001600160401b03811115612db857600080fd5b612dc485828601612c11565b90969095509350505050565b60008060008060408587031215612de657600080fd5b84356001600160401b0380821115612dfd57600080fd5b612d5d88838901612c11565b634e487b7160e01b600052602160045260246000fd5b6020810160048310612e4157634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215612e5a57600080fd5b612e6383612b93565b915060208301358015158114612e7857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612ec157612ec1612e83565b604052919050565b60008060408385031215612edc57600080fd5b82356001600160401b0380821115612ef357600080fd5b818501915085601f830112612f0757600080fd5b8135602082821115612f1b57612f1b612e83565b8160051b9250612f2c818401612e99565b8281529284018101928181019089851115612f4657600080fd5b948201945b84861015612f6457853582529482019490820190612f4b565b9997909101359750505050505050565b60008060208385031215612f8757600080fd5b82356001600160401b03811115612f9d57600080fd5b612dc485828601612ce0565b60008060008060808587031215612fbf57600080fd5b612fc885612b93565b93506020612fd7818701612b93565b93506040860135925060608601356001600160401b0380821115612ffa57600080fd5b818801915088601f83011261300e57600080fd5b81358181111561302057613020612e83565b613032601f8201601f19168501612e99565b9150808252898482850101111561304857600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561307b57600080fd5b61308483612b93565b915061309260208401612b93565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020815260006109da60208301600781526650726573616c6560c81b602082015260400190565b600181811c9082168061310b57607f821691505b60208210810361312b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020815260006109da6020830160068152655075626c696360d01b602082015260400190565b6020808252601a908201527f43616c6c657220697320616e6f7468657220636f6e7472616374000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156131ee576131ee6131c5565b500190565b600081600019048311821515161561320d5761320d6131c5565b500290565b6001600160a01b039290921682526020820152606060408201819052600290820152614f4760f01b608082015260a00190565b6001600160a01b0383168152602081018290526060604082018190526007908201526650726573616c6560c81b6080820152600060a082016126e2565b6001600160a01b038316815260208101829052606060408201819052600690820152655075626c696360d01b6080820152600060a082016126e2565b8183823760009101908152919050565b634e487b7160e01b600052603260045260246000fd5b6000600182016132f6576132f66131c5565b5060010190565b60008282101561330f5761330f6131c5565b500390565b634e487b7160e01b600052601260045260246000fd5b60008261333957613339613314565b500490565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6000815161337f818560208601612b0f565b9290920192915050565b600080845481600182811c9150808316806133a557607f831692505b602080841082036133c457634e487b7160e01b86526022600452602486fd5b8180156133d857600181146133e957613416565b60ff19861689528489019650613416565b60008b81526020902060005b8681101561340e5781548b8201529085019083016133f5565b505084890196505b50505050505061343a613429828661336d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061347690830184612b3b565b9695505050505050565b60006020828403121561349257600080fd5b8151612b0881612ad5565b6000826134ac576134ac613314565b50069056fe85a66b9141978db9980f7e0ce3b468cebf4f7999f32b23091c5c03e798b1ba7a8ec7990a32a33474d410288c3000e8ea0b63c9f104ef2e5249d0c32964fc6523a2646970667358221220b26fdda61dd48e6ac70305a8baabaf7d13b6c9367e5b90b60926f206646dc81264736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000062eff2000000000000000000000000054fbfa35dd3128a1eec9d65a4684e96a9410990000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000001820000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000d0b98d3b2849134d0648f0098b3d6f5ebaa961f400000000000000000000000042b9e9b70d43f3d03cdc5a9c1c1754b8cf8dc1dd0000000000000000000000001e63933aca43bf4ac835a7c0eecc1f62cfc8b4c2000000000000000000000000d5abbb6c325c7ae681b13798179105606252c2c70000000000000000000000006d54b51494c43dc1b308ab32d3ccc4f262ba1bb80000000000000000000000005981d9aa1de65bb96fd5b57f4b1e702debc89b910000000000000000000000002ae24e0ef11169676f6bc58828e0a9220d0368d30000000000000000000000008159222f184ecc04f29c8ddae10d5f5e0630fb3a00000000000000000000000067a4f361b43cfd0d9c56e6d065de996ee89052b10000000000000000000000006306be2f288efbbcb1806cff9034160ba1a0502b0000000000000000000000002145a52545da113ee0b1e817b02ea19dbbe72d2100000000000000000000000000000000000000000000000000000000000000ac000000000000000000000000414848190b5c4f68a9d853845ca4079f0779058c0000000000000000000000006bfe032e90d1a766371781666956392df984098d000000000000000000000000cdca9732ff10a2a19f229044d3cdb9f4b0b041890000000000000000000000005430eca56ccd494e61be8212a560225c96f79657000000000000000000000000eb62654910ad5a34bf4627bf458e688f84e661600000000000000000000000001f70949e5cf46caa04607302a9a1829e048c9e6c000000000000000000000000fee339ef6428c94e22bdbee21d85a2be0cf147d9000000000000000000000000223efb5ae67cb8eafbdb5cce3d8bdea6cff5d42800000000000000000000000029aef997fc0a8d7f114311581793e3a22f39cb6000000000000000000000000007a52bc68d9af4cc509462293e103f67a3126154000000000000000000000000eb37fada366cf2f897fa8da4c6e7a89cfd1794df000000000000000000000000bf5ca418430ec7b12d58fa8d32e6ce5fee6057a90000000000000000000000008257e8d24f1960de1ce366f7704c930ccac097160000000000000000000000005fdedc3f3f211f15c8a0c2d8330e2affc49e31570000000000000000000000005220403fbd87c1eb09a1f3a316e656c70b3161d70000000000000000000000006d51241f1ca020ef659f6e94f53708f0cf40ac53000000000000000000000000f949868ad58dbcb6c2f9d8c4881714b594dad8f3000000000000000000000000cc730bd4f85eb3b29e9df0aaba8ee15871c0b1fb0000000000000000000000009fa1f2df17c94ae81f8cd4ab940ee6304fb17f020000000000000000000000006ed304618ada45be5991efeec1f7b4ce1da642f2000000000000000000000000fe7db2f8bdae0640e5d3ae82824e81f442a46175000000000000000000000000e32ffaf86b0b3693c974df9c3c8f8cc79a807737000000000000000000000000a0dcec87df576c1e37df0e2a2010968b8bc362e20000000000000000000000006c5c5caa47d63fa0b4601407a3c3ae44bc1da10d000000000000000000000000d7195db53b9c1a3790d7ea0c3680efccc685072000000000000000000000000054870455505b31fcfda37941c9b692a6c537543e000000000000000000000000ee833db009dc6a47927896ff0807f79a7f52f11b000000000000000000000000b14f5a5f90eaea5c45603601d79d0f93bfeb0c05000000000000000000000000662f86bfe364736a83e0b9c926bfe7ba8196bb5000000000000000000000000063f4c7640038c88e3144ad5780c58a8397181e5e000000000000000000000000239169df480ef85575f2792d6e006a343d0fac110000000000000000000000006a5904d318d2820292876f97e3834c16cd7a16c3000000000000000000000000f5ad3e05624717e87a4c0e40fd9f7c6dd159b759000000000000000000000000c90ef03f6c0cce2895f815926fce44347363e550000000000000000000000000f136ca36415339e7e5866a2dcd80c5ffbbce2b2d00000000000000000000000084905d7c0e7c81ce171438587b33e7dd32703165000000000000000000000000c1d45e78d3fbc43142c1ced44202d11379b9e06d0000000000000000000000003742975f7ec465c70390eb46aeb5221003472d19000000000000000000000000f29d9c40e716394ebd67da78632ac7627eb1e75d0000000000000000000000001bcc3d69705ca4a21de6deeaea82568448fdee6200000000000000000000000007a52bc68d9af4cc509462293e103f67a3126154000000000000000000000000f136ca36415339e7e5866a2dcd80c5ffbbce2b2d000000000000000000000000a91a2e8d7fb0d51acc757617a1c8619cf74d78ea000000000000000000000000511eb9bd2f9ae8ea3f439830b0d9c213419c05c60000000000000000000000009fcc5826e04bad89feb129337d26c7de6f8d94190000000000000000000000005a030b3a852c36bbeda3bad94c6691d72173d48f0000000000000000000000005f70a181c9a7a50cea2716c20d5b76eed96f6eff0000000000000000000000002ee4f1234cdcb3a76f4d332ea5213f1217858ba30000000000000000000000004502490b0a82267fbabe37c9900f78090075c9c9000000000000000000000000abd0234a19b86a29fc696b34e28ed8095e5605330000000000000000000000005a030b3a852c36bbeda3bad94c6691d72173d48f000000000000000000000000511eb9bd2f9ae8ea3f439830b0d9c213419c05c60000000000000000000000000a2a2bfd21360f94f0b10994efc0836402ac9796000000000000000000000000f2f3e2067d96941f5f47add69538419fdfd3a99a0000000000000000000000002ee4f1234cdcb3a76f4d332ea5213f1217858ba300000000000000000000000048de57e262dec8f718ab1a34b0433de0d4e155de000000000000000000000000a1491d0c75478c7ccb0dfabf4fdc842fba0800e7000000000000000000000000001c3daced7871431f70192f645b9355974c3d660000000000000000000000006f479e9e6d8ca31f8c6817f75c594ffba29bb80c000000000000000000000000ae5780488aebebf237097f82214ce817b41015720000000000000000000000006d134d5898bcfa133fb0138ccaad7e0a1c81e0ab0000000000000000000000002d64b59a4c1a60543a141aa165b03ae3d3da807f000000000000000000000000d79c2d8f6b5b34a6acbaa8d5954d656b1948ae240000000000000000000000007e3586164de830d6148d51fd841d1aaa1d47e8de000000000000000000000000c9df52795910a957ae850b1f9425f21d3ecbf009000000000000000000000000234866a34c4ee84bd9499046133b8236b4fb75d70000000000000000000000007706ab7b67f78cc164bb52ca61316bcb23c99be700000000000000000000000090a86196ae043edb0fff53f8d5d5abc94d5491a5000000000000000000000000a2530f581fa7a06d764e069bc52d19a7774ebcb6000000000000000000000000577a74d889ac694255800835f110dc24ed8dc6f6000000000000000000000000c4be359801c617d0293e4ff8f2bd65639565b38300000000000000000000000002dd5c07b6a2124a9d7d5ea8069246564fb71d5800000000000000000000000095482d5ab1c6487e3e32a9303e8a02ecf60aca0d000000000000000000000000391d833a3cc8724d5ee50bb69a1b93618c94a255000000000000000000000000df41953ca009570c433014e254162db96862f61a0000000000000000000000006dcb6d2df8ec2f78b54529b866405cceb11308c800000000000000000000000091d6629e0ba130b0a70b5b153351f24cfe70565700000000000000000000000047b296b08d859be9b6857636404ecf85b4a2e7f1000000000000000000000000ed40907207a9e2057215db4cc9ad2be5d20ce23400000000000000000000000075ae13dbfe411d43499135f1299be95781aaad6d0000000000000000000000000f8185f7124c472f57afdb12798904d3bb2e5193000000000000000000000000e26a3d56c9d44081dc77cf89f2caf45436ba6240000000000000000000000000636fbeb5f21f65ff930962becffe89ef6c5a1ed60000000000000000000000001f6b0e280bce06d60638a42fc4fd448a147ff4ea0000000000000000000000008e4a313814825c6f859ac434c1dc2b42c65bfcc90000000000000000000000000c0f91c3da0b1631a341b292559913f23a07b2060000000000000000000000000d3732f3b39f975ee743eafe77a97b312c4d48010000000000000000000000000f2649f2bfa976365e3749c6f9b86315105d9512000000000000000000000000220b979752f7efe46340d63c236cd7efc3dc3a7e000000000000000000000000b76db90259ff54ec3f9ae993e80352d91e3ea28d0000000000000000000000000c0f91c3da0b1631a341b292559913f23a07b2060000000000000000000000000661043d25ecefe100665844d40b7d15e0748d8d000000000000000000000000dbe2239376c6251ec34c060e9ffaa5634acb328500000000000000000000000027df58e79e6e95317d8fb1cb8dcfee13b9f36b9b00000000000000000000000066b73298fff62ff5222cf0232cde8cc9a07dc175000000000000000000000000e814ad3bedc0d8184a61780d8d6a986c1fccde36000000000000000000000000cbd546dc88a0784485315f925dc038aeb3ba0692000000000000000000000000c2deb4286dcfdc58274fb408957d412f7145fbfd000000000000000000000000864563f18c424778b9586fb25676773515bc2303000000000000000000000000d65b9ecb40451b8a8bcafadcbfd5c3a4bbe1229300000000000000000000000003411916016ff41763f60e18b8a4b19beeb112e0000000000000000000000000281dca6f7733726a0f29e9a90eddd492675b0af50000000000000000000000008c3cbb3755325cab4c32d1f86660c1d2b26b2052000000000000000000000000ff985218b7bfe6159f4a63a2282a895bd0c9b41700000000000000000000000051414175d5e67b6347389db6af7b60a8f10a474d00000000000000000000000087a4e3c8cea364f44ec943bd5832dc4525e0bbe60000000000000000000000001ee888550f702d4b447f51190ebd9940442d67a00000000000000000000000004694d6eabb6b66d4281ff055f47e6398cb86342800000000000000000000000013756406534d1cf5a001a3ed8fb714c076428c550000000000000000000000007da07288b1799b5e32adc6ddabf7c5aacf6e388b000000000000000000000000444ac276dc50a5e30385037845556580de354f3500000000000000000000000093320c373b7c4d80494797125c221ad4b32109860000000000000000000000007a60fd73d182353877c22b6ce007ec6e68c633fb00000000000000000000000022809caab57159e78e68df5f1bfe8a86b3a74e6e000000000000000000000000e8e1d13a8b4e324bf7a59410e786cfc253e74d1f00000000000000000000000050b6285d630532c013a197bd3f2b6c5c034edf3d000000000000000000000000a2fbc1848bd0b86b4bff20bbdc4b0a0b1a9ef23a000000000000000000000000d8682acdb8e3a12eb2b9c9dc434f7d025dddea06000000000000000000000000b2a48f35f34021fe42ae989240f696caee3c208a000000000000000000000000b2a48f35f34021fe42ae989240f696caee3c208a000000000000000000000000b2a48f35f34021fe42ae989240f696caee3c208a0000000000000000000000002c97fb4b6d6a894b90c10c4e2e669ddf0a3dbc44000000000000000000000000a86bd1e29bfdd265652652e1f24639115c30d21600000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d1700000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d1700000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d170000000000000000000000003fe737393da0ac916c1f8562bda4a5c80b68e9340000000000000000000000000edf8c670d400e29a16cde18def78f3fe483fbd8000000000000000000000000643baf029306124c90650661f1008827dc5dfcb5000000000000000000000000e8e1d13a8b4e324bf7a59410e786cfc253e74d1f000000000000000000000000a8e8e61a7f9cbec71264cd8fb10564e24bf0835e0000000000000000000000007cae3fc06af0a8974e34db4dc52e01f373511b2d000000000000000000000000d5abbb6c325c7ae681b13798179105606252c2c70000000000000000000000001791df3b1ec85c412fe4ba2145c850f940d524e300000000000000000000000051fe1776ae013c5805d9c5619517a0ed10545f450000000000000000000000002d940bdb52720f550721e2dfbecffeb26d2d6ecc000000000000000000000000543acd7e8f3f30c69610735fa44b09a412bb419d000000000000000000000000df7a01af227050d6f8e74d791dc677eceee1a998000000000000000000000000a5f9db0420f71dcafe3fb3f99cdc6f43e3be0fde000000000000000000000000d49e42bc273560c087aa3e946e8e7a002d63cd180000000000000000000000006025fb900ccd987be11c0a54eaa13f6ab6734879000000000000000000000000bec7bf7c39a4bd45f1cb1821f3e8e6b148081d200000000000000000000000001bbab71643f3b35ba99db6dc2c0d97fe573fa07b0000000000000000000000009e2306e6337cb92821ff222aef7dbad80b6955ac000000000000000000000000c3f84619bf913fa899a78daabcf1a207a9c011c4000000000000000000000000e38c59b116c8280ba27fbe3edfb63a79b64ed01100000000000000000000000058cc531dc57f693eb8abd0fa0bc07f4cbe3b9ef3000000000000000000000000b141568373b3b1862b9bd684585ce0451a1942e9000000000000000000000000095e92cba0738f951abca7d59e92885308a38b9c00000000000000000000000087d4e46952884c34e69948220adbd82f7caf720000000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d17000000000000000000000000815e2d5b39f7c2152a72b7705dc6bebfa67c795e000000000000000000000000ece5624dd0048835183bcb496565ef7380797228000000000000000000000000ece5624dd0048835183bcb496565ef738079722800000000000000000000000090127a76245cfae1743ecddb59ab4759e76ba46d000000000000000000000000873eea965ca3f4b1fe0eb2126c0bd8a992413979000000000000000000000000fad26eb3f1815f59719bf98be7e2763353d5daa5000000000000000000000000bc09be892ab7f840eb71fbdd77054d7df95f4adc000000000000000000000000ff6c9a9637e321f3056f83d16a06026cd5331174000000000000000000000000815e2d5b39f7c2152a72b7705dc6bebfa67c795e00000000000000000000000008f73b63e3c7e63dc2d3f57390843d3c77ff77b7000000000000000000000000d0b98d3b2849134d0648f0098b3d6f5ebaa961f4000000000000000000000000139fe4d88806e0ab704b107f8ae8ac534a4fe28700000000000000000000000088e795bc5f86cffbd38776479bf7168a4513cd5a00000000000000000000000077d08e047933c72dc1abff8bb85e69fb4d9e69260000000000000000000000006afb0bd5332f174558c174efd4426606edb073cc000000000000000000000000694d8ef0027edb3e335386e2b38166d12f16ef52000000000000000000000000e576c0f771bc3b4e5eabccb425ae533d9e00e95300000000000000000000000020b39e410043bc90a3345a26e84d2d1e7559037c000000000000000000000000bc5557d60383d90b97549a046b9914c29ee67bcc0000000000000000000000004c6bb6f96acb13c5d23cf4b98a5526b9c93cdbc8000000000000000000000000d15c13f3307effd08dcef7a97312555af48ced7400000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000005
-----Decoded View---------------
Arg [0] : collectionSize_ (uint256): 5000
Arg [1] : reserveSupply_ (uint256): 75
Arg [2] : maxTxn_ (uint256): 10
Arg [3] : mintData_ (uint256): 6483954
Arg [4] : devWallet_ (address): 0x054FBFa35dD3128A1eEC9d65A4684e96a9410990
Arg [5] : ogList_ (address[]): 0xd0b98D3B2849134d0648F0098B3d6F5eBAa961F4,0x42B9E9b70D43F3D03Cdc5A9c1C1754B8cf8dC1dD,0x1E63933ACa43BF4AC835A7C0eECc1f62cFC8B4c2,0xD5AbBb6C325C7ae681B13798179105606252c2c7,0x6d54B51494c43Dc1b308Ab32d3ccc4F262Ba1Bb8,0x5981d9AA1DE65Bb96Fd5B57F4b1E702DEBc89B91,0x2ae24e0EF11169676f6Bc58828e0a9220d0368d3,0x8159222F184eCc04F29c8dDae10D5f5e0630Fb3a,0x67a4f361b43cFD0d9C56E6d065De996eE89052B1,0x6306BE2F288efbBcb1806cff9034160bA1a0502B,0x2145a52545DA113Ee0b1E817b02ea19DbbE72D21
Arg [6] : claimList_ (address[]): 0x414848190B5c4F68a9D853845Ca4079F0779058C,0x6Bfe032E90d1a766371781666956392Df984098d,0xCdca9732FF10a2A19F229044D3CDB9f4b0B04189,0x5430Eca56CCd494E61BE8212a560225C96f79657,0xeb62654910AD5a34bF4627bF458e688F84e66160,0x1F70949E5cf46Caa04607302a9A1829E048c9E6C,0xfEe339eF6428C94e22bDBEE21d85A2bE0cF147D9,0x223eFB5AE67cb8EaFbDb5CCE3D8bDeA6Cff5D428,0x29aef997fC0a8D7F114311581793E3a22F39Cb60,0x07A52Bc68D9AF4CC509462293E103F67A3126154,0xEB37fAda366cf2F897fA8da4c6e7A89cfD1794dF,0xbf5CA418430ec7b12D58fA8D32e6Ce5fEe6057A9,0x8257e8D24F1960dE1Ce366f7704C930CcaC09716,0x5FDeDC3F3f211F15C8A0c2d8330E2afFC49e3157,0x5220403fBD87c1EB09a1F3A316E656c70b3161D7,0x6D51241F1Ca020Ef659f6e94F53708F0CF40AC53,0xF949868aD58dBcB6c2f9d8C4881714b594Dad8f3,0xcC730Bd4f85Eb3B29E9Df0aABa8EE15871C0b1FB,0x9fA1F2Df17c94AE81F8CD4Ab940eE6304fb17f02,0x6Ed304618aDa45bE5991efeeC1F7B4ce1dA642F2,0xFe7dB2F8bdae0640E5d3Ae82824E81f442A46175,0xe32FfaF86B0B3693C974Df9c3c8f8cc79A807737,0xa0DCEc87Df576C1E37Df0e2A2010968b8bc362E2,0x6c5c5CAA47D63Fa0b4601407A3c3Ae44Bc1Da10D,0xd7195DB53b9C1a3790d7ea0C3680EfCcc6850720,0x54870455505B31FCfDA37941C9b692A6c537543e,0xee833db009dC6a47927896FF0807F79a7F52f11B,0xb14F5a5f90eAeA5C45603601D79D0f93bFeb0c05,0x662F86bFE364736A83e0b9c926BFE7Ba8196bB50,0x63F4c7640038C88E3144AD5780C58a8397181e5e,0x239169DF480ef85575f2792d6E006a343d0FAC11,0x6A5904d318D2820292876f97E3834c16CD7A16c3,0xf5aD3e05624717E87A4C0e40fd9f7c6DD159B759,0xc90Ef03f6c0CCe2895F815926fCe44347363e550,0xF136CA36415339e7e5866A2dcD80c5FfBbce2b2d,0x84905D7C0E7C81ce171438587b33e7dd32703165,0xC1D45E78D3fbc43142c1ced44202d11379B9e06D,0x3742975f7ec465c70390eB46AeB5221003472D19,0xf29D9C40E716394EBD67Da78632Ac7627EB1e75d,0x1BCC3D69705cA4a21de6dEeAEA82568448fDeE62,0x07A52Bc68D9AF4CC509462293E103F67A3126154,0xF136CA36415339e7e5866A2dcD80c5FfBbce2b2d,0xA91A2E8D7fb0D51aCC757617A1c8619Cf74d78eA,0x511Eb9bD2f9ae8EA3f439830B0D9c213419c05c6,0x9fcC5826e04BaD89feb129337D26c7dE6F8D9419,0x5a030b3A852c36bBeDA3baD94C6691d72173d48F,0x5F70A181c9A7a50cEA2716c20d5B76eED96f6EfF,0x2ee4F1234cDcb3a76f4d332EA5213F1217858Ba3,0x4502490B0a82267FbAbe37c9900F78090075C9c9,0xaBD0234a19b86A29FC696B34e28ED8095E560533,0x5a030b3A852c36bBeDA3baD94C6691d72173d48F,0x511Eb9bD2f9ae8EA3f439830B0D9c213419c05c6,0x0a2a2bFd21360F94F0B10994EfC0836402ac9796,0xF2f3e2067d96941f5F47aDd69538419fdfD3A99a,0x2ee4F1234cDcb3a76f4d332EA5213F1217858Ba3,0x48DE57E262DEC8F718aB1A34b0433De0D4E155de,0xA1491D0c75478c7ccB0DfABF4Fdc842fBa0800e7,0x001c3daCED7871431f70192F645B9355974c3d66,0x6f479e9e6d8CA31F8C6817F75C594ffba29bB80C,0xaE5780488aeBeBF237097F82214CE817b4101572,0x6d134D5898bcFA133fB0138cCAaD7e0a1C81e0Ab,0x2D64B59a4c1a60543A141aA165B03aE3D3da807F,0xD79C2D8f6B5b34a6ACbAa8d5954D656B1948aE24,0x7E3586164de830D6148D51FD841d1AAA1d47E8DE,0xc9Df52795910A957Ae850B1F9425f21d3eCBF009,0x234866a34C4EE84bD9499046133b8236B4fB75d7,0x7706Ab7B67f78Cc164Bb52cA61316bcb23C99be7,0x90a86196aE043EDb0fFf53F8D5D5abC94d5491A5,0xA2530f581fA7a06D764e069BC52D19A7774EBcB6,0x577a74D889AC694255800835F110Dc24eD8dC6f6,0xC4be359801c617D0293e4FF8F2Bd65639565B383,0x02Dd5C07B6a2124a9D7D5ea8069246564Fb71d58,0x95482D5aB1C6487E3e32a9303e8a02EcF60aCa0d,0x391d833a3cC8724d5Ee50bb69A1B93618C94A255,0xDf41953cA009570C433014E254162Db96862F61a,0x6DCB6D2Df8eC2F78B54529b866405cceB11308C8,0x91d6629e0ba130B0a70b5b153351F24CFE705657,0x47b296b08D859be9b6857636404ECF85B4A2E7f1,0xED40907207A9E2057215db4CC9aD2bE5d20cE234,0x75Ae13dbfe411d43499135f1299BE95781AAaD6d,0x0f8185F7124c472F57AfdB12798904D3bB2e5193,0xE26A3D56C9d44081dC77cF89f2CaF45436bA6240,0x636FBeb5F21f65fF930962bEcFFE89eF6C5A1ed6,0x1f6b0E280Bce06D60638A42fc4fd448a147ff4ea,0x8E4A313814825c6f859AC434c1dC2B42C65bFcc9,0x0C0F91c3Da0B1631A341B292559913F23a07b206,0x0D3732f3b39F975ee743Eafe77A97b312c4D4801,0x0f2649F2bfa976365E3749C6F9B86315105D9512,0x220b979752F7Efe46340d63C236cD7efC3DC3a7E,0xB76dB90259FF54EC3f9ae993e80352d91E3EA28D,0x0C0F91c3Da0B1631A341B292559913F23a07b206,0x0661043d25ECEfe100665844d40B7D15E0748d8d,0xDBE2239376c6251ec34C060E9Ffaa5634AcB3285,0x27Df58E79e6e95317d8fb1Cb8DcfEe13B9F36b9B,0x66B73298ffF62ff5222Cf0232cdE8cC9a07dC175,0xE814AD3BEdC0D8184a61780d8D6a986c1fCcDE36,0xCBD546DC88A0784485315F925DC038Aeb3BA0692,0xc2deb4286DCFDC58274Fb408957d412f7145FbFD,0x864563F18C424778b9586fB25676773515BC2303,0xD65B9eCB40451b8a8bCaFadcBFd5c3A4bbE12293,0x03411916016ff41763F60e18B8a4b19BeEB112E0,0x281dca6F7733726A0F29E9A90eDDD492675B0AF5,0x8C3CBB3755325cab4c32d1F86660C1d2b26B2052,0xff985218B7BFE6159F4a63a2282A895bd0C9b417,0x51414175d5E67b6347389Db6Af7b60A8F10a474d,0x87a4e3C8ceA364f44Ec943bD5832DC4525E0BBe6,0x1EE888550F702d4B447f51190ebD9940442d67a0,0x4694D6EabB6B66d4281FF055f47e6398cb863428,0x13756406534d1CF5A001A3eD8Fb714C076428c55,0x7Da07288b1799B5E32aDC6ddaBF7C5aaCf6E388B,0x444AC276dC50A5e30385037845556580DE354F35,0x93320c373B7c4d80494797125c221AD4b3210986,0x7A60fd73D182353877C22b6CE007EC6E68c633Fb,0x22809caAB57159e78E68dF5F1bfe8a86b3A74E6e,0xe8e1D13A8b4e324bF7A59410E786Cfc253E74D1F,0x50B6285D630532C013a197BD3F2b6C5c034Edf3d,0xa2FBC1848Bd0B86B4Bff20bBdc4b0A0b1A9Ef23a,0xd8682AcDb8e3a12eB2b9C9Dc434f7D025DDdEa06,0xB2a48f35F34021Fe42Ae989240f696Caee3C208A,0xB2a48f35F34021Fe42Ae989240f696Caee3C208A,0xB2a48f35F34021Fe42Ae989240f696Caee3C208A,0x2C97Fb4b6d6a894B90c10c4e2e669dDf0a3Dbc44,0xA86BD1E29bfDD265652652E1F24639115c30D216,0x67908CE2A562c371163cb303C91CB3A8BC257D17,0x67908CE2A562c371163cb303C91CB3A8BC257D17,0x67908CE2A562c371163cb303C91CB3A8BC257D17,0x3fe737393DA0aC916C1F8562BDA4a5c80B68e934,0x0EDF8c670d400e29A16CDe18deF78f3Fe483fbD8,0x643bAF029306124C90650661F1008827DC5dFcb5,0xe8e1D13A8b4e324bF7A59410E786Cfc253E74D1F,0xA8E8e61a7f9CBEC71264cd8fb10564e24bf0835e,0x7caE3fC06Af0A8974e34db4dc52E01F373511b2D,0xD5AbBb6C325C7ae681B13798179105606252c2c7,0x1791df3b1Ec85c412FE4BA2145c850f940D524e3,0x51fE1776Ae013C5805d9c5619517A0Ed10545F45,0x2D940BDB52720F550721E2dFbeCffeb26d2d6eCC,0x543AcD7E8f3F30c69610735fA44B09A412bb419d,0xdf7a01aF227050D6F8e74D791dC677ECEee1A998,0xa5f9db0420F71DcaFe3FB3F99CdC6f43e3BE0FdE,0xd49E42bc273560C087Aa3E946E8E7a002d63cD18,0x6025fb900ccD987Be11c0a54eaa13F6Ab6734879,0xBeC7Bf7c39a4Bd45F1cb1821F3E8E6b148081D20,0x1bBAb71643f3b35ba99DB6dC2c0d97FE573Fa07B,0x9E2306e6337CB92821FF222AEF7DbAD80b6955Ac,0xc3f84619bF913fA899A78daaBcf1A207a9C011C4,0xe38C59B116c8280ba27FBE3EdFB63A79b64ED011,0x58cc531dC57f693Eb8ABd0FA0bC07f4cbE3b9ef3,0xb141568373B3b1862B9BD684585cE0451A1942E9,0x095E92Cba0738F951ABCa7d59e92885308a38b9C,0x87d4e46952884c34e69948220ADBD82f7caF7200,0x67908CE2A562c371163cb303C91CB3A8BC257D17,0x815e2d5B39F7c2152a72b7705DC6beBfa67c795E,0xeCe5624dD0048835183BCB496565ef7380797228,0xeCe5624dD0048835183BCB496565ef7380797228,0x90127a76245cFaE1743eCddB59AB4759E76BA46D,0x873eea965Ca3F4B1Fe0eb2126c0Bd8A992413979,0xfAD26eb3F1815f59719Bf98be7e2763353D5dAA5,0xBc09be892ab7F840Eb71FbdD77054d7dF95F4adc,0xff6c9A9637E321f3056f83d16A06026Cd5331174,0x815e2d5B39F7c2152a72b7705DC6beBfa67c795E,0x08f73b63e3C7E63DC2D3f57390843d3C77ff77b7,0xd0b98D3B2849134d0648F0098B3d6F5eBAa961F4,0x139fE4d88806E0aB704b107F8AE8aC534A4Fe287,0x88E795bC5f86cffBD38776479bF7168A4513CD5A,0x77d08E047933C72dc1AbFf8bb85E69Fb4D9E6926,0x6AFB0bd5332F174558c174efD4426606edb073cc,0x694d8EF0027eDb3e335386e2b38166d12F16EF52,0xE576C0f771BC3B4E5eabCCb425Ae533D9e00E953,0x20b39E410043Bc90a3345A26E84d2d1E7559037c,0xbC5557D60383d90B97549a046B9914c29ee67bCc,0x4C6bB6f96ACb13C5d23cf4B98a5526B9C93cDbc8,0xd15c13F3307EFfd08dCef7a97312555AF48CEd74
Arg [7] : amount_ (uint256[]): 2,2,10,10,2,10,10,6,4,2,10,6,10,4,4,4,4,6,4,6,4,2,4,10,6,6,10,10,4,4,2,2,10,4,8,6,2,10,2,6,2,8,6,2,2,2,2,4,6,2,2,2,6,4,4,6,10,6,10,2,2,10,2,2,10,10,10,2,10,6,2,6,4,4,32,20,20,8,2,2,4,2,2,2,4,4,20,2,4,2,4,2,2,2,2,2,2,4,2,2,2,2,2,2,4,2,2,2,8,2,2,4,4,2,2,2,2,2,2,2,2,2,4,2,2,2,2,4,2,2,2,2,2,10,2,4,2,4,4,6,4,6,4,4,2,2,2,2,2,2,2,2,4,2,2,20,4,2,6,2,24,6,2,2,4,2,1,1,1,18,10,5
-----Encoded View---------------
366 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [1] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 000000000000000000000000000000000000000000000000000000000062eff2
Arg [4] : 000000000000000000000000054fbfa35dd3128a1eec9d65a4684e96a9410990
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [7] : 0000000000000000000000000000000000000000000000000000000000001820
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [9] : 000000000000000000000000d0b98d3b2849134d0648f0098b3d6f5ebaa961f4
Arg [10] : 00000000000000000000000042b9e9b70d43f3d03cdc5a9c1c1754b8cf8dc1dd
Arg [11] : 0000000000000000000000001e63933aca43bf4ac835a7c0eecc1f62cfc8b4c2
Arg [12] : 000000000000000000000000d5abbb6c325c7ae681b13798179105606252c2c7
Arg [13] : 0000000000000000000000006d54b51494c43dc1b308ab32d3ccc4f262ba1bb8
Arg [14] : 0000000000000000000000005981d9aa1de65bb96fd5b57f4b1e702debc89b91
Arg [15] : 0000000000000000000000002ae24e0ef11169676f6bc58828e0a9220d0368d3
Arg [16] : 0000000000000000000000008159222f184ecc04f29c8ddae10d5f5e0630fb3a
Arg [17] : 00000000000000000000000067a4f361b43cfd0d9c56e6d065de996ee89052b1
Arg [18] : 0000000000000000000000006306be2f288efbbcb1806cff9034160ba1a0502b
Arg [19] : 0000000000000000000000002145a52545da113ee0b1e817b02ea19dbbe72d21
Arg [20] : 00000000000000000000000000000000000000000000000000000000000000ac
Arg [21] : 000000000000000000000000414848190b5c4f68a9d853845ca4079f0779058c
Arg [22] : 0000000000000000000000006bfe032e90d1a766371781666956392df984098d
Arg [23] : 000000000000000000000000cdca9732ff10a2a19f229044d3cdb9f4b0b04189
Arg [24] : 0000000000000000000000005430eca56ccd494e61be8212a560225c96f79657
Arg [25] : 000000000000000000000000eb62654910ad5a34bf4627bf458e688f84e66160
Arg [26] : 0000000000000000000000001f70949e5cf46caa04607302a9a1829e048c9e6c
Arg [27] : 000000000000000000000000fee339ef6428c94e22bdbee21d85a2be0cf147d9
Arg [28] : 000000000000000000000000223efb5ae67cb8eafbdb5cce3d8bdea6cff5d428
Arg [29] : 00000000000000000000000029aef997fc0a8d7f114311581793e3a22f39cb60
Arg [30] : 00000000000000000000000007a52bc68d9af4cc509462293e103f67a3126154
Arg [31] : 000000000000000000000000eb37fada366cf2f897fa8da4c6e7a89cfd1794df
Arg [32] : 000000000000000000000000bf5ca418430ec7b12d58fa8d32e6ce5fee6057a9
Arg [33] : 0000000000000000000000008257e8d24f1960de1ce366f7704c930ccac09716
Arg [34] : 0000000000000000000000005fdedc3f3f211f15c8a0c2d8330e2affc49e3157
Arg [35] : 0000000000000000000000005220403fbd87c1eb09a1f3a316e656c70b3161d7
Arg [36] : 0000000000000000000000006d51241f1ca020ef659f6e94f53708f0cf40ac53
Arg [37] : 000000000000000000000000f949868ad58dbcb6c2f9d8c4881714b594dad8f3
Arg [38] : 000000000000000000000000cc730bd4f85eb3b29e9df0aaba8ee15871c0b1fb
Arg [39] : 0000000000000000000000009fa1f2df17c94ae81f8cd4ab940ee6304fb17f02
Arg [40] : 0000000000000000000000006ed304618ada45be5991efeec1f7b4ce1da642f2
Arg [41] : 000000000000000000000000fe7db2f8bdae0640e5d3ae82824e81f442a46175
Arg [42] : 000000000000000000000000e32ffaf86b0b3693c974df9c3c8f8cc79a807737
Arg [43] : 000000000000000000000000a0dcec87df576c1e37df0e2a2010968b8bc362e2
Arg [44] : 0000000000000000000000006c5c5caa47d63fa0b4601407a3c3ae44bc1da10d
Arg [45] : 000000000000000000000000d7195db53b9c1a3790d7ea0c3680efccc6850720
Arg [46] : 00000000000000000000000054870455505b31fcfda37941c9b692a6c537543e
Arg [47] : 000000000000000000000000ee833db009dc6a47927896ff0807f79a7f52f11b
Arg [48] : 000000000000000000000000b14f5a5f90eaea5c45603601d79d0f93bfeb0c05
Arg [49] : 000000000000000000000000662f86bfe364736a83e0b9c926bfe7ba8196bb50
Arg [50] : 00000000000000000000000063f4c7640038c88e3144ad5780c58a8397181e5e
Arg [51] : 000000000000000000000000239169df480ef85575f2792d6e006a343d0fac11
Arg [52] : 0000000000000000000000006a5904d318d2820292876f97e3834c16cd7a16c3
Arg [53] : 000000000000000000000000f5ad3e05624717e87a4c0e40fd9f7c6dd159b759
Arg [54] : 000000000000000000000000c90ef03f6c0cce2895f815926fce44347363e550
Arg [55] : 000000000000000000000000f136ca36415339e7e5866a2dcd80c5ffbbce2b2d
Arg [56] : 00000000000000000000000084905d7c0e7c81ce171438587b33e7dd32703165
Arg [57] : 000000000000000000000000c1d45e78d3fbc43142c1ced44202d11379b9e06d
Arg [58] : 0000000000000000000000003742975f7ec465c70390eb46aeb5221003472d19
Arg [59] : 000000000000000000000000f29d9c40e716394ebd67da78632ac7627eb1e75d
Arg [60] : 0000000000000000000000001bcc3d69705ca4a21de6deeaea82568448fdee62
Arg [61] : 00000000000000000000000007a52bc68d9af4cc509462293e103f67a3126154
Arg [62] : 000000000000000000000000f136ca36415339e7e5866a2dcd80c5ffbbce2b2d
Arg [63] : 000000000000000000000000a91a2e8d7fb0d51acc757617a1c8619cf74d78ea
Arg [64] : 000000000000000000000000511eb9bd2f9ae8ea3f439830b0d9c213419c05c6
Arg [65] : 0000000000000000000000009fcc5826e04bad89feb129337d26c7de6f8d9419
Arg [66] : 0000000000000000000000005a030b3a852c36bbeda3bad94c6691d72173d48f
Arg [67] : 0000000000000000000000005f70a181c9a7a50cea2716c20d5b76eed96f6eff
Arg [68] : 0000000000000000000000002ee4f1234cdcb3a76f4d332ea5213f1217858ba3
Arg [69] : 0000000000000000000000004502490b0a82267fbabe37c9900f78090075c9c9
Arg [70] : 000000000000000000000000abd0234a19b86a29fc696b34e28ed8095e560533
Arg [71] : 0000000000000000000000005a030b3a852c36bbeda3bad94c6691d72173d48f
Arg [72] : 000000000000000000000000511eb9bd2f9ae8ea3f439830b0d9c213419c05c6
Arg [73] : 0000000000000000000000000a2a2bfd21360f94f0b10994efc0836402ac9796
Arg [74] : 000000000000000000000000f2f3e2067d96941f5f47add69538419fdfd3a99a
Arg [75] : 0000000000000000000000002ee4f1234cdcb3a76f4d332ea5213f1217858ba3
Arg [76] : 00000000000000000000000048de57e262dec8f718ab1a34b0433de0d4e155de
Arg [77] : 000000000000000000000000a1491d0c75478c7ccb0dfabf4fdc842fba0800e7
Arg [78] : 000000000000000000000000001c3daced7871431f70192f645b9355974c3d66
Arg [79] : 0000000000000000000000006f479e9e6d8ca31f8c6817f75c594ffba29bb80c
Arg [80] : 000000000000000000000000ae5780488aebebf237097f82214ce817b4101572
Arg [81] : 0000000000000000000000006d134d5898bcfa133fb0138ccaad7e0a1c81e0ab
Arg [82] : 0000000000000000000000002d64b59a4c1a60543a141aa165b03ae3d3da807f
Arg [83] : 000000000000000000000000d79c2d8f6b5b34a6acbaa8d5954d656b1948ae24
Arg [84] : 0000000000000000000000007e3586164de830d6148d51fd841d1aaa1d47e8de
Arg [85] : 000000000000000000000000c9df52795910a957ae850b1f9425f21d3ecbf009
Arg [86] : 000000000000000000000000234866a34c4ee84bd9499046133b8236b4fb75d7
Arg [87] : 0000000000000000000000007706ab7b67f78cc164bb52ca61316bcb23c99be7
Arg [88] : 00000000000000000000000090a86196ae043edb0fff53f8d5d5abc94d5491a5
Arg [89] : 000000000000000000000000a2530f581fa7a06d764e069bc52d19a7774ebcb6
Arg [90] : 000000000000000000000000577a74d889ac694255800835f110dc24ed8dc6f6
Arg [91] : 000000000000000000000000c4be359801c617d0293e4ff8f2bd65639565b383
Arg [92] : 00000000000000000000000002dd5c07b6a2124a9d7d5ea8069246564fb71d58
Arg [93] : 00000000000000000000000095482d5ab1c6487e3e32a9303e8a02ecf60aca0d
Arg [94] : 000000000000000000000000391d833a3cc8724d5ee50bb69a1b93618c94a255
Arg [95] : 000000000000000000000000df41953ca009570c433014e254162db96862f61a
Arg [96] : 0000000000000000000000006dcb6d2df8ec2f78b54529b866405cceb11308c8
Arg [97] : 00000000000000000000000091d6629e0ba130b0a70b5b153351f24cfe705657
Arg [98] : 00000000000000000000000047b296b08d859be9b6857636404ecf85b4a2e7f1
Arg [99] : 000000000000000000000000ed40907207a9e2057215db4cc9ad2be5d20ce234
Arg [100] : 00000000000000000000000075ae13dbfe411d43499135f1299be95781aaad6d
Arg [101] : 0000000000000000000000000f8185f7124c472f57afdb12798904d3bb2e5193
Arg [102] : 000000000000000000000000e26a3d56c9d44081dc77cf89f2caf45436ba6240
Arg [103] : 000000000000000000000000636fbeb5f21f65ff930962becffe89ef6c5a1ed6
Arg [104] : 0000000000000000000000001f6b0e280bce06d60638a42fc4fd448a147ff4ea
Arg [105] : 0000000000000000000000008e4a313814825c6f859ac434c1dc2b42c65bfcc9
Arg [106] : 0000000000000000000000000c0f91c3da0b1631a341b292559913f23a07b206
Arg [107] : 0000000000000000000000000d3732f3b39f975ee743eafe77a97b312c4d4801
Arg [108] : 0000000000000000000000000f2649f2bfa976365e3749c6f9b86315105d9512
Arg [109] : 000000000000000000000000220b979752f7efe46340d63c236cd7efc3dc3a7e
Arg [110] : 000000000000000000000000b76db90259ff54ec3f9ae993e80352d91e3ea28d
Arg [111] : 0000000000000000000000000c0f91c3da0b1631a341b292559913f23a07b206
Arg [112] : 0000000000000000000000000661043d25ecefe100665844d40b7d15e0748d8d
Arg [113] : 000000000000000000000000dbe2239376c6251ec34c060e9ffaa5634acb3285
Arg [114] : 00000000000000000000000027df58e79e6e95317d8fb1cb8dcfee13b9f36b9b
Arg [115] : 00000000000000000000000066b73298fff62ff5222cf0232cde8cc9a07dc175
Arg [116] : 000000000000000000000000e814ad3bedc0d8184a61780d8d6a986c1fccde36
Arg [117] : 000000000000000000000000cbd546dc88a0784485315f925dc038aeb3ba0692
Arg [118] : 000000000000000000000000c2deb4286dcfdc58274fb408957d412f7145fbfd
Arg [119] : 000000000000000000000000864563f18c424778b9586fb25676773515bc2303
Arg [120] : 000000000000000000000000d65b9ecb40451b8a8bcafadcbfd5c3a4bbe12293
Arg [121] : 00000000000000000000000003411916016ff41763f60e18b8a4b19beeb112e0
Arg [122] : 000000000000000000000000281dca6f7733726a0f29e9a90eddd492675b0af5
Arg [123] : 0000000000000000000000008c3cbb3755325cab4c32d1f86660c1d2b26b2052
Arg [124] : 000000000000000000000000ff985218b7bfe6159f4a63a2282a895bd0c9b417
Arg [125] : 00000000000000000000000051414175d5e67b6347389db6af7b60a8f10a474d
Arg [126] : 00000000000000000000000087a4e3c8cea364f44ec943bd5832dc4525e0bbe6
Arg [127] : 0000000000000000000000001ee888550f702d4b447f51190ebd9940442d67a0
Arg [128] : 0000000000000000000000004694d6eabb6b66d4281ff055f47e6398cb863428
Arg [129] : 00000000000000000000000013756406534d1cf5a001a3ed8fb714c076428c55
Arg [130] : 0000000000000000000000007da07288b1799b5e32adc6ddabf7c5aacf6e388b
Arg [131] : 000000000000000000000000444ac276dc50a5e30385037845556580de354f35
Arg [132] : 00000000000000000000000093320c373b7c4d80494797125c221ad4b3210986
Arg [133] : 0000000000000000000000007a60fd73d182353877c22b6ce007ec6e68c633fb
Arg [134] : 00000000000000000000000022809caab57159e78e68df5f1bfe8a86b3a74e6e
Arg [135] : 000000000000000000000000e8e1d13a8b4e324bf7a59410e786cfc253e74d1f
Arg [136] : 00000000000000000000000050b6285d630532c013a197bd3f2b6c5c034edf3d
Arg [137] : 000000000000000000000000a2fbc1848bd0b86b4bff20bbdc4b0a0b1a9ef23a
Arg [138] : 000000000000000000000000d8682acdb8e3a12eb2b9c9dc434f7d025dddea06
Arg [139] : 000000000000000000000000b2a48f35f34021fe42ae989240f696caee3c208a
Arg [140] : 000000000000000000000000b2a48f35f34021fe42ae989240f696caee3c208a
Arg [141] : 000000000000000000000000b2a48f35f34021fe42ae989240f696caee3c208a
Arg [142] : 0000000000000000000000002c97fb4b6d6a894b90c10c4e2e669ddf0a3dbc44
Arg [143] : 000000000000000000000000a86bd1e29bfdd265652652e1f24639115c30d216
Arg [144] : 00000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d17
Arg [145] : 00000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d17
Arg [146] : 00000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d17
Arg [147] : 0000000000000000000000003fe737393da0ac916c1f8562bda4a5c80b68e934
Arg [148] : 0000000000000000000000000edf8c670d400e29a16cde18def78f3fe483fbd8
Arg [149] : 000000000000000000000000643baf029306124c90650661f1008827dc5dfcb5
Arg [150] : 000000000000000000000000e8e1d13a8b4e324bf7a59410e786cfc253e74d1f
Arg [151] : 000000000000000000000000a8e8e61a7f9cbec71264cd8fb10564e24bf0835e
Arg [152] : 0000000000000000000000007cae3fc06af0a8974e34db4dc52e01f373511b2d
Arg [153] : 000000000000000000000000d5abbb6c325c7ae681b13798179105606252c2c7
Arg [154] : 0000000000000000000000001791df3b1ec85c412fe4ba2145c850f940d524e3
Arg [155] : 00000000000000000000000051fe1776ae013c5805d9c5619517a0ed10545f45
Arg [156] : 0000000000000000000000002d940bdb52720f550721e2dfbecffeb26d2d6ecc
Arg [157] : 000000000000000000000000543acd7e8f3f30c69610735fa44b09a412bb419d
Arg [158] : 000000000000000000000000df7a01af227050d6f8e74d791dc677eceee1a998
Arg [159] : 000000000000000000000000a5f9db0420f71dcafe3fb3f99cdc6f43e3be0fde
Arg [160] : 000000000000000000000000d49e42bc273560c087aa3e946e8e7a002d63cd18
Arg [161] : 0000000000000000000000006025fb900ccd987be11c0a54eaa13f6ab6734879
Arg [162] : 000000000000000000000000bec7bf7c39a4bd45f1cb1821f3e8e6b148081d20
Arg [163] : 0000000000000000000000001bbab71643f3b35ba99db6dc2c0d97fe573fa07b
Arg [164] : 0000000000000000000000009e2306e6337cb92821ff222aef7dbad80b6955ac
Arg [165] : 000000000000000000000000c3f84619bf913fa899a78daabcf1a207a9c011c4
Arg [166] : 000000000000000000000000e38c59b116c8280ba27fbe3edfb63a79b64ed011
Arg [167] : 00000000000000000000000058cc531dc57f693eb8abd0fa0bc07f4cbe3b9ef3
Arg [168] : 000000000000000000000000b141568373b3b1862b9bd684585ce0451a1942e9
Arg [169] : 000000000000000000000000095e92cba0738f951abca7d59e92885308a38b9c
Arg [170] : 00000000000000000000000087d4e46952884c34e69948220adbd82f7caf7200
Arg [171] : 00000000000000000000000067908ce2a562c371163cb303c91cb3a8bc257d17
Arg [172] : 000000000000000000000000815e2d5b39f7c2152a72b7705dc6bebfa67c795e
Arg [173] : 000000000000000000000000ece5624dd0048835183bcb496565ef7380797228
Arg [174] : 000000000000000000000000ece5624dd0048835183bcb496565ef7380797228
Arg [175] : 00000000000000000000000090127a76245cfae1743ecddb59ab4759e76ba46d
Arg [176] : 000000000000000000000000873eea965ca3f4b1fe0eb2126c0bd8a992413979
Arg [177] : 000000000000000000000000fad26eb3f1815f59719bf98be7e2763353d5daa5
Arg [178] : 000000000000000000000000bc09be892ab7f840eb71fbdd77054d7df95f4adc
Arg [179] : 000000000000000000000000ff6c9a9637e321f3056f83d16a06026cd5331174
Arg [180] : 000000000000000000000000815e2d5b39f7c2152a72b7705dc6bebfa67c795e
Arg [181] : 00000000000000000000000008f73b63e3c7e63dc2d3f57390843d3c77ff77b7
Arg [182] : 000000000000000000000000d0b98d3b2849134d0648f0098b3d6f5ebaa961f4
Arg [183] : 000000000000000000000000139fe4d88806e0ab704b107f8ae8ac534a4fe287
Arg [184] : 00000000000000000000000088e795bc5f86cffbd38776479bf7168a4513cd5a
Arg [185] : 00000000000000000000000077d08e047933c72dc1abff8bb85e69fb4d9e6926
Arg [186] : 0000000000000000000000006afb0bd5332f174558c174efd4426606edb073cc
Arg [187] : 000000000000000000000000694d8ef0027edb3e335386e2b38166d12f16ef52
Arg [188] : 000000000000000000000000e576c0f771bc3b4e5eabccb425ae533d9e00e953
Arg [189] : 00000000000000000000000020b39e410043bc90a3345a26e84d2d1e7559037c
Arg [190] : 000000000000000000000000bc5557d60383d90b97549a046b9914c29ee67bcc
Arg [191] : 0000000000000000000000004c6bb6f96acb13c5d23cf4b98a5526b9c93cdbc8
Arg [192] : 000000000000000000000000d15c13f3307effd08dcef7a97312555af48ced74
Arg [193] : 00000000000000000000000000000000000000000000000000000000000000ac
Arg [194] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [195] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [196] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [197] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [198] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [199] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [200] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [201] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [202] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [203] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [204] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [205] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [206] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [207] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [208] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [209] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [210] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [211] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [212] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [213] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [214] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [215] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [216] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [217] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [218] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [219] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [220] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [221] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [222] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [223] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [224] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [225] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [226] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [227] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [228] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [229] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [230] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [231] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [232] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [233] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [234] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [235] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [236] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [237] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [238] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [239] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [240] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [241] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [242] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [243] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [244] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [245] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [246] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [247] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [248] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [249] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [250] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [251] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [252] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [253] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [254] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [255] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [256] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [257] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [258] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [259] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [260] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [261] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [262] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [263] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [264] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [265] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [266] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [267] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [268] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [269] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [270] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [271] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [272] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [273] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [274] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [275] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [276] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [277] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [278] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [279] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [280] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [281] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [282] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [283] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [284] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [285] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [286] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [287] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [288] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [289] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [290] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [291] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [292] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [293] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [294] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [295] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [296] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [297] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [298] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [299] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [300] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [301] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [302] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [303] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [304] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [305] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [306] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [307] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [308] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [309] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [310] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [311] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [312] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [313] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [314] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [315] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [316] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [317] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [318] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [319] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [320] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [321] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [322] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [323] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [324] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [325] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [326] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [327] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [328] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [329] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [330] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [331] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [332] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [333] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [334] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [335] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [336] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [337] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [338] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [339] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [340] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [341] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [342] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [343] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [344] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [345] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [346] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [347] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [348] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [349] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [350] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [351] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [352] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [353] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [354] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [355] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [356] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [357] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [358] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [359] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [360] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [361] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [362] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [363] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [364] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [365] : 0000000000000000000000000000000000000000000000000000000000000005
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.