ERC-721
NFT
Overview
Max Total Supply
10,000 BabyDoge
Holders
2,345
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 BabyDogeLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BabyDoge
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.4;import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/utils/Counters.sol";import "@openzeppelin/contracts/security/ReentrancyGuard.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";import "./uniswap/IUniswapV2Router02.sol";import "./uniswap/IUniswapV2Factory.sol";import "./uniswap/IUniswapV2Pair.sol";import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";import "@openzeppelin/contracts/utils/Address.sol";import "./ERC721A.sol";contract BabyDoge isVRFConsumerBase,ERC721A,Ownable,ReentrancyGuard{using Counters for Counters.Counter;using SafeERC20 for IERC20;using Address for *;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)pragma solidity ^0.8.0;import "../ERC721.sol";import "./IERC721Enumerable.sol";/*** @dev This implements an optional extension of {ERC721} defined in the EIP that adds* enumerability of all the token ids in the contract as well as all token ids owned by each* account.*/abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {// Mapping from owner to list of owned token IDsmapping(address => mapping(uint256 => uint256)) private _ownedTokens;// Mapping from token ID to index of the owner tokens listmapping(uint256 => uint256) private _ownedTokensIndex;// Array with all token ids, used for enumerationuint256[] private _allTokens;// Mapping from token id to position in the allTokens arraymapping(uint256 => uint256) private _allTokensIndex;
1234567891011121314151617181920212223242526// 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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)pragma solidity ^0.8.0;/*** @title Counters* @author Matt Condon (@shrugs)* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number* of elements in a mapping, issuing ERC721 ids, or counting request ids.** Include with `using Counters for Counters.Counter;`*/library Counters {struct Counter {// This variable should never be directly accessed by users of the library: interactions must be restricted to// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add// this feature: see https://github.com/ethereum/solidity/issues/4637uint256 _value; // default: 0}function current(Counter storage counter) internal view returns (uint256) {return counter._value;}function increment(Counter storage counter) internal {
1234567891011121314151617181920212223242526// 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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/*** @dev Returns the amount of tokens owned by `account`.*/function balanceOf(address account) external view returns (uint256);/*** @dev Moves `amount` tokens from the caller's account to `to`.** Returns a boolean value indicating whether the operation succeeded.** Emits a {Transfer} event.*/
1234567891011121314151617181920212223242526// 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) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)pragma solidity ^0.8.0;import "../IERC20.sol";import "../../../utils/Address.sol";/*** @title SafeERC20* @dev Wrappers around ERC20 operations that throw on failure (when the token* contract returns false). Tokens that return no value (and instead revert or* throw on failure) are also supported, non-reverting calls are assumed to be* successful.* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.*/library SafeERC20 {using Address for address;function safeTransfer(IERC20 token,address to,uint256 value) internal {_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
1234567891011121314151617181920212223242526//SPDX-License-Identifier:pragma solidity 0.8.4;import "./IUniswapV2Router01.sol";interface IUniswapV2Router02 is IUniswapV2Router01 {function removeLiquidityETHSupportingFeeOnTransferTokens(address token,uint256 liquidity,uint256 amountTokenMin,uint256 amountETHMin,address to,uint256 deadline) external returns (uint256 amountETH);function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(address token,uint256 liquidity,uint256 amountTokenMin,uint256 amountETHMin,address to,uint256 deadline,bool approveMax,uint8 v,bytes32 r,bytes32 s
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.4;interface IUniswapV2Factory {event PairCreated(address indexed token0,address indexed token1,address pair,uint256);function feeTo() external view returns (address);function feeToSetter() external view returns (address);function getPair(address tokenA, address tokenB)externalviewreturns (address pair);function allPairs(uint256) external view returns (address pair);function allPairsLength() external view returns (uint256);function createPair(address tokenA, address tokenB)external
1234567891011121314151617181920212223242526//SPDX-License-Identifier:pragma solidity 0.8.4;interface IUniswapV2Pair {event Approval(address indexed owner,address indexed spender,uint256 value);event Transfer(address indexed from, address indexed to, uint256 value);function name() external pure returns (string memory);function symbol() external pure returns (string memory);function decimals() external pure returns (uint8);function totalSupply() external view returns (uint256);function balanceOf(address owner) external view returns (uint256);function allowance(address owner, address spender)externalviewreturns (uint256);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./interfaces/LinkTokenInterface.sol";import "./VRFRequestIDBase.sol";/** ***************************************************************************** @notice Interface for contracts using VRF randomness* ****************************************************************************** @dev PURPOSE** @dev Reggie the Random Oracle (not his real job) wants to provide randomness* @dev to Vera the verifier in such a way that Vera can be sure he's not* @dev making his output up to suit himself. Reggie provides Vera a public key* @dev to which he knows the secret key. Each time Vera provides a seed to* @dev Reggie, he gives back a value which is computed completely* @dev deterministically from the seed and the secret key.** @dev Reggie provides a proof by which Vera can verify that the output was* @dev correctly computed once Reggie tells it to her, but without that proof,* @dev the output is indistinguishable to her from a uniform random sample* @dev from the output space.** @dev The purpose of this contract is to make it easy for unrelated contracts* @dev to talk to Vera the verifier about the work Reggie is doing, to provide
1234567891011121314151617181920212223242526// 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* ====*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// Creator: Chiru Labspragma 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/token/ERC721/extensions/IERC721Enumerable.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 MintedQueryForZeroAddress();error MintToZeroAddress();error MintZeroQuantity();error OwnerIndexOutOfBounds();error OwnerQueryForNonexistentToken();error TokenIndexOutOfBounds();error TransferCallerNotOwnerNorApproved();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)pragma solidity ^0.8.0;import "./IERC721.sol";import "./IERC721Receiver.sol";import "./extensions/IERC721Metadata.sol";import "../../utils/Address.sol";import "../../utils/Context.sol";import "../../utils/Strings.sol";import "../../utils/introspection/ERC165.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension, but not including the Enumerable extension, which is available separately as* {ERC721Enumerable}.*/contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {using Address for address;using Strings for uint256;// Token namestring private _name;// Token symbol
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional enumeration extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Enumerable is IERC721 {/*** @dev Returns the total amount of tokens stored by the contract.*/function totalSupply() external view returns (uint256);/*** @dev Returns a token ID owned by `owner` at a given `index` of its token list.* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.*/function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);/*** @dev Returns a token ID at a given `index` of all the tokens stored by the contract.* Use along with {totalSupply} to enumerate all tokens.
1234567891011121314151617181920212223242526// 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);
1234567891011121314151617181920212223242526// 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);
1234567891011121314151617181920212223242526// 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);
123456789101112131415161718192021222324// 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;}}
1234567891011121314151617181920212223242526// 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.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;
1234567891011121314151617181920212223242526// 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) {
12345678910111213141516171819202122232425// 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);}
1234567891011121314151617181920212223242526//SPDX-License-Identifier:pragma solidity 0.8.4;interface IUniswapV2Router01 {function factory() external pure returns (address);function WETH() external pure returns (address);function addLiquidity(address tokenA,address tokenB,uint256 amountADesired,uint256 amountBDesired,uint256 amountAMin,uint256 amountBMin,address to,uint256 deadline)externalreturns (uint256 amountA,uint256 amountB,uint256 liquidity);function addLiquidityETH(
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;interface LinkTokenInterface {function allowance(address owner, address spender) external view returns (uint256 remaining);function approve(address spender, uint256 value) external returns (bool success);function balanceOf(address owner) external view returns (uint256 balance);function decimals() external view returns (uint8 decimalPlaces);function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);function increaseApproval(address spender, uint256 subtractedValue) external;function name() external view returns (string memory tokenName);function symbol() external view returns (string memory tokenSymbol);function totalSupply() external view returns (uint256 totalTokensIssued);function transfer(address to, uint256 value) external returns (bool success);function transferAndCall(address to,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;contract VRFRequestIDBase {/*** @notice returns the seed which is actually input to the VRF coordinator** @dev To prevent repetition of VRF output due to repetition of the* @dev user-supplied seed, that seed is combined in a hash with the* @dev user-specific nonce, and the address of the consuming contract. The* @dev risk of repetition is mostly mitigated by inclusion of a blockhash in* @dev the final seed, but the nonce does protect against repetition in* @dev requests which are included in a single block.** @param _userSeed VRF seed input provided by user* @param _requester Address of the requesting contract* @param _nonce User-specific nonce at the time of the request*/function makeVRFInputSeed(bytes32 _keyHash,uint256 _userSeed,address _requester,uint256 _nonce) internal pure returns (uint256) {return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));}
12345678910111213141516171819{"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
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"uint256","name":"maxNftSupply","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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_ethPayout","type":"bool"}],"name":"FlipEthPayout","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_prize","type":"uint256"}],"name":"LottoClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"MaxMintSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"MerkleRootSet","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":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReserveDoges","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"RevealTimeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_saleStatus","type":"uint256"}],"name":"SaleStatusSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_devTeamPercent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_lotoPercent","type":"uint256"},{"indexed":false,"internalType":"address","name":"_babydoge","type":"address"},{"indexed":false,"internalType":"string","name":"_URI","type":"string"}],"name":"SetSettings","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":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"WinnersPicked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_withdrawAndLock","type":"bool"}],"name":"WithdrawAndLock","type":"event"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"claimLotto","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentIteration","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dogePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethPayout","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipEthPayout","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":[],"name":"getCurrentWinners","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxDogePurchase","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":"numberOfTokens","type":"uint256"}],"name":"mintDoge","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWhitelistDoge","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextRewardNonce","outputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"}],"stateMutability":"nonpayable","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":"prizePool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserveDoges","outputs":[],"stateMutability":"nonpayable","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":"saleStatus","outputs":[{"internalType":"enum BabyDoge.SaleStatus","name":"","type":"uint8"}],"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":"uint256","name":"_price","type":"uint256"}],"name":"setDogePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxDogePurchase","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum BabyDoge.SaleStatus","name":"_saleStatus","type":"uint8"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_devTeamPercent","type":"uint16"},{"internalType":"uint16","name":"_lotoPercent","type":"uint16"},{"internalType":"address","name":"_babyDogeToken","type":"address"},{"internalType":"string","name":"_baseURILink","type":"string"}],"name":"setSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"winners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAndLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101206040526701f161421c8e0000600f5560026010556011805461ff0019166101001790553480156200003257600080fd5b50604051620042c5380380620042c58339810160408190526200005591620002f0565b7f271682deb8c4e0901d1a1550ad2e64d568e6990900000000000000000000000060a0527f514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000608052835184908490620000b690600290602085019062000197565b508051620000cc90600390602084019062000197565b505050620000e9620000e36200014160201b60201c565b62000145565b600160095581516200010390600b90602085019062000197565b5060e05250507f9fe0eebf5e446e3c998ec9bb19951541aee00bb90ea201ae456421a2ded8680560c052506703782dace9d9000061010052620003d8565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a59062000385565b90600052602060002090601f016020900481019282620001c9576000855562000214565b82601f10620001e457805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000214578251825591602001919060010190620001f7565b506200022292915062000226565b5090565b5b8082111562000222576000815560010162000227565b600082601f8301126200024e578081fd5b81516001600160401b03808211156200026b576200026b620003c2565b604051601f8301601f19908116603f01168101908282118183101715620002965762000296620003c2565b81604052838152602092508683858801011115620002b2578485fd5b8491505b83821015620002d55785820183015181830184015290820190620002b6565b83821115620002e657848385830101525b9695505050505050565b6000806000806080858703121562000306578384fd5b84516001600160401b03808211156200031d578586fd5b6200032b888389016200023d565b9550602087015191508082111562000341578485fd5b6200034f888389016200023d565b9450604087015191508082111562000365578384fd5b5062000374878288016200023d565b606096909601519497939650505050565b600181811c908216806200039a57607f821691505b60208210811415620003bc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c60c05160e05161010051613e786200044d60003960008181610b950152610e93015260008181611b2e01528181611d0201528181611ec5015261209e01526000610e72015260008181611745015261242b015260008181610bb701526123fc0152613e786000f3fe6080604052600436106102765760003560e01c8063715018a61161014f5780639d5719b1116100c1578063c87b56dd1161007a578063c87b56dd14610700578063cac4ee0514610720578063db57e74514610740578063e985e9c514610753578063f2fde38b1461079c578063f9020e33146107bc57600080fd5b80639d5719b114610656578063a22cb4651461066b578063a2fb11751461068b578063a3bc9336146106ab578063b88d4fde146106cd578063bcfa950e146106ed57600080fd5b806388c6abf81161011357806388c6abf8146105c15780638ad78f80146105d85780638c3c4b34146105ee5780638da5cb5b1461060357806394985ddd1461062157806395d89b411461064157600080fd5b8063715018a614610536578063719ce73e1461054b57806379d49bb0146105615780637cb647591461058157806385142339146105a157600080fd5b80632eb4a7ab116101e8578063513d29ce116101ac578063513d29ce1461048c578063547520fe146104ac5780636352211e146104cc5780636c0360eb146104ec5780636c62ef141461050157806370a082311461051657600080fd5b80632eb4a7ab146103f65780632f745c591461040c57806342842e0e1461042c5780634891ad881461044c5780634f6ccce71461046c57600080fd5b8063095ea7b31161023a578063095ea7b3146103575780630a213e0414610377578063107fb6421461039657806318160ddd146103ab57806318e20a38146103c057806323b872dd146103d657600080fd5b8063018a2c371461028257806301ffc9a7146102a457806306095f59146102d957806306fdde03146102fd578063081812fc1461031f57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d3660046137cc565b6107e3565b005b3480156102b057600080fd5b506102c46102bf366004613805565b610852565b60405190151581526020015b60405180910390f35b3480156102e557600080fd5b506102ef600f5481565b6040519081526020016102d0565b34801561030957600080fd5b506103126108bf565b6040516102d09190613b1e565b34801561032b57600080fd5b5061033f61033a3660046137cc565b610951565b6040516001600160a01b0390911681526020016102d0565b34801561036357600080fd5b506102a26103723660046136dd565b610997565b34801561038357600080fd5b506011546102c490610100900460ff1681565b3480156103a257600080fd5b506102ef610a25565b3480156103b757600080fd5b506001546102ef565b3480156103cc57600080fd5b506102ef600d5481565b3480156103e257600080fd5b506102a26103f13660046135f3565b610ec3565b34801561040257600080fd5b506102ef601a5481565b34801561041857600080fd5b506102ef6104273660046136dd565b610ece565b34801561043857600080fd5b506102a26104473660046135f3565b610fb3565b34801561045857600080fd5b506102a261046736600461383d565b610fce565b34801561047857600080fd5b506102ef6104873660046137cc565b61107f565b34801561049857600080fd5b506102a26104a73660046138aa565b6110ad565b3480156104b857600080fd5b506102a26104c73660046137cc565b6111ec565b3480156104d857600080fd5b5061033f6104e73660046137cc565b61124b565b3480156104f857600080fd5b5061031261125d565b34801561050d57600080fd5b506102a261126c565b34801561052257600080fd5b506102ef610531366004613583565b6112fd565b34801561054257600080fd5b506102a261134b565b34801561055757600080fd5b506102ef60125481565b34801561056d57600080fd5b506102a261057c3660046137cc565b611381565b34801561058d57600080fd5b506102a261059c3660046137cc565b6113e5565b3480156105ad57600080fd5b506102a26105bc3660046137cc565b611444565b3480156105cd57600080fd5b506018546102ef9081565b3480156105e457600080fd5b506102ef60105481565b3480156105fa57600080fd5b506102ef611712565b34801561060f57600080fd5b506008546001600160a01b031661033f565b34801561062d57600080fd5b506102a261063c3660046137e4565b61173a565b34801561064d57600080fd5b506103126117c0565b34801561066257600080fd5b506102a26117cf565b34801561067757600080fd5b506102a26106863660046136b0565b6118a8565b34801561069757600080fd5b506102ef6106a63660046137cc565b61193e565b3480156106b757600080fd5b506106c061195f565b6040516102d09190613a77565b3480156106d957600080fd5b506102a26106e8366004613633565b6119b6565b6102a26106fb366004613919565b6119f0565b34801561070c57600080fd5b5061031261071b3660046137cc565b611d47565b34801561072c57600080fd5b506102a261073b3660046137cc565b611dce565b6102a261074e3660046137cc565b611dfd565b34801561075f57600080fd5b506102c461076e3660046135bb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107a857600080fd5b506102a26107b7366004613583565b6120e1565b3480156107c857600080fd5b506015546107d69060ff1681565b6040516102d09190613af6565b6008546001600160a01b031633146108165760405162461bcd60e51b815260040161080d90613b31565b60405180910390fd5b600d8190556040518181527fd227248b3540871674d341a3d15918c6eaed5a6704bae91d238aa95b5edaab89906020015b60405180910390a150565b60006001600160e01b031982166380ac58cd60e01b148061088357506001600160e01b03198216635b5e139f60e01b145b8061089e57506001600160e01b0319821663780e9d6360e01b145b806108b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108ce90613d5d565b80601f01602080910402602001604051908101604052809291908181526020018280546108fa90613d5d565b80156109475780601f1061091c57610100808354040283529160200191610947565b820191906000526020600020905b81548152906001019060200180831161092a57829003601f168201915b5050505050905090565b600061095e826001541190565b61097b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109a28261124b565b9050806001600160a01b0316836001600160a01b031614156109d75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109f757506109f5813361076e565b155b15610a15576040516367d9dca160e11b815260040160405180910390fd5b610a20838383612179565b505050565b600060026009541415610a7a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161080d565b600260095560115460ff16610af75760405162461bcd60e51b815260206004820152603960248201527f6572726f723a2063616e27742063616c6c206e6578745265776172644e6f6e6360448201527f65206265666f7265207468652073616c65206973206f76657200000000000000606482015260840161080d565b60006224ea0060166000610b0a60185490565b815260200190815260200160002054610b239190613ccf565b4211610b805760405162461bcd60e51b815260206004820152602660248201527f6572726f723a20697465726174696f6e20706572696f6420686173206e6f74206044820152651c185cdcd95960d21b606482015260840161080d565b6040516370a0823160e01b81523060048201527f0000000000000000000000000000000000000000000000000000000000000000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b158015610c0157600080fd5b505afa158015610c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c399190613901565b1015610c995760405162461bcd60e51b815260206004820152602960248201527f4e6f7420656e6f756768204c494e4b202d2066696c6c20636f6e74726163742060448201526877697468204c696e6b60b81b606482015260840161080d565b610ca7601880546001019055565b4260166000610cb560185490565b815260208101919091526040016000205560015460176000610cd660185490565b8152602001908152602001600020819055506000601160019054906101000a900460ff1615610d755750600a54479061271090610d179061ffff1683613cfb565b610d219190613ce7565b9150610d4882610d396008546001600160a01b031690565b6001600160a01b0316906121d5565b600a5461271090610d639062010000900461ffff1683613cfb565b610d6d9190613ce7565b601255610e6d565b610d7d6122ee565b600c546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610dc057600080fd5b505afa158015610dd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df89190613901565b600a5490915061271090610e109061ffff1683613cfb565b610e1a9190613ce7565b9150610e44610e316008546001600160a01b031690565b600c546001600160a01b031690846123a6565b600a5461271090610e5f9062010000900461ffff1683613cfb565b610e699190613ce7565b6012555b610eb77f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006123f8565b92505050600160095590565b610a20838383612582565b6000610ed9836112fd565b8210610ef8576040516306ed618760e11b815260040160405180910390fd5b6000610f0360015490565b905060008060005b83811015610f9c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f5e57805192505b876001600160a01b0316836001600160a01b03161415610f935786841415610f8c575093506108b992505050565b6001909301925b50600101610f0b565b50634e487b7160e01b600052600160045260246000fd5b610a20838383604051806020016040528060008152506119b6565b6008546001600160a01b03163314610ff85760405162461bcd60e51b815260040161080d90613b31565b6015805482919060ff1916600183600281111561102557634e487b7160e01b600052602160045260246000fd5b02179055506015547f5f393514fe885345bf6ba49c7009fef8081ddf42042464e8dfe04a17f001cddf9060ff16600281111561107157634e487b7160e01b600052602160045260246000fd5b604051908152602001610847565b600061108a60015490565b82106110a9576040516329c8c00760e21b815260040160405180910390fd5b5090565b6008546001600160a01b031633146110d75760405162461bcd60e51b815260040161080d90613b31565b6001600160a01b03821661113c5760405162461bcd60e51b815260206004820152602660248201527f4572726f723a20546f6b656e2063616e277420626520746865207a65726f206160448201526564647265737360d01b606482015260840161080d565b600a805461ffff858116620100000263ffffffff1990921690871617179055600c80546001600160a01b0384166001600160a01b0319909116179055805161118b90600b90602084019061342e565b50600a54600c546040517e89f6d806b406160fe53ec387c78595e885ca4881db758f4e83ca7ddc069b88926111de9261ffff808316936201000090930416916001600160a01b0390911690600b90613b66565b60405180910390a150505050565b6008546001600160a01b031633146112165760405162461bcd60e51b815260040161080d90613b31565b60108190556040518181527f3b64f5d0ae4de41d36db0948fc83ffbba5d86eb79841008d6047a25f46ed2b7990602001610847565b6000611256826127a1565b5192915050565b6060611267612836565b905090565b6008546001600160a01b031633146112965760405162461bcd60e51b815260040161080d90613b31565b6011805461ff001981166101009182900460ff16159091021790556112b9610a25565b5060115460405161010090910460ff16151581527fa52383c36c234ecf24255806fe74d869b31d0a0d26073e975ddeb5f871886262906020015b60405180910390a1565b60006001600160a01b038216611326576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6008546001600160a01b031633146113755760405162461bcd60e51b815260040161080d90613b31565b61137f6000612845565b565b6008546001600160a01b031633146113ab5760405162461bcd60e51b815260040161080d90613b31565b6113b53382612897565b6040518181527fffa76519d7df0608ca65c5af555ef0723f461afa7dadac8ccb5b3f7a8019e3ef90602001610847565b6008546001600160a01b0316331461140f5760405162461bcd60e51b815260040161080d90613b31565b601a8190556040518181527f42cbc405e4dbf1b691e85b9a34b08ecfcf7a9ad9078bf4d645ccfa1fac11c10b90602001610847565b600260095414156114975760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161080d565b6002600955336114a68261124b565b6001600160a01b0316146115075760405162461bcd60e51b815260206004820152602260248201527f6572726f723a20796f7520646f6e74206f776e20612077696e6e696e6720646f604482015261676560f01b606482015260840161080d565b6000805b60145481101561167357826014828154811061153757634e487b7160e01b600052603260045260246000fd5b90600052602060002001541415611661576014546012546115589190613ce7565b9150816012546115689190613d1a565b601255805b60145461157c90600190613d1a565b8110156115f8576014611590826001613ccf565b815481106115ae57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601482815481106115da57634e487b7160e01b600052603260045260246000fd5b600091825260209091200155806115f081613d98565b91505061156d565b50601480548061161857634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055601160019054906101000a900460ff16156116555761165082610d398561124b565b611661565b611661610e318461124b565b8061166b81613d98565b91505061150b565b50600081116116d05760405162461bcd60e51b815260206004820152602360248201527f6572726f723a207072697a65206d75737420626520677265617465722074686560448201526206e20360ec1b606482015260840161080d565b60408051838152602081018390527ff4338f56dc8b8e2b8c87ae4eb8008d2290a524a16c153183ef0b116ef4834d7d910160405180910390a150506001600955565b60155460009060ff16600281111561126757634e487b7160e01b600052602160045260246000fd5b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146117b25760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00604482015260640161080d565b6117bc82826128b1565b5050565b6060600380546108ce90613d5d565b6008546001600160a01b031633146117f95760405162461bcd60e51b815260040161080d90613b31565b60115460ff161561184c5760405162461bcd60e51b815260206004820181905260248201527f43616e206f6e6c792063616c6c20746869732066756e6374696f6e206f6e6365604482015260640161080d565b6011805460ff1916600117905561186f47610d396008546001600160a01b031690565b60115460405160ff909116151581527fd5dc719472ee802e529d4afc3a953b5d8ea1790730213eafdcfce3433d2ea225906020016112f3565b6001600160a01b0382163314156118d25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6013818154811061194e57600080fd5b600091825260209091200154905081565b6060601380548060200260200160405190810160405280929190818152602001828054801561094757602002820191906000526020600020905b815481526020019060010190808311611999575050505050905090565b6119c1848484612582565b6119cd848484846129b6565b6119ea576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600160155460ff166002811115611a1757634e487b7160e01b600052602160045260246000fd5b14611a645760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206973206e6f74206c697665000000000000604482015260640161080d565b336000908152601b602052604090205460ff1615611ada5760405162461bcd60e51b815260206004820152602d60248201527f596f75722077686974656c69737420656e7472792068617320616c726561647960448201526c081899595b8818db185a5b5959609a1b606482015260840161080d565b601054831115611b2c5760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e2774206d696e742074686174206d616e7920646f6765730000604482015260640161080d565b7f000000000000000000000000000000000000000000000000000000000000000083611b5760015490565b611b619190613ccf565b1115611baf5760405162461bcd60e51b815260206004820152601d60248201527f546f74616c20737570706c7920686173206265656e2072656163686564000000604482015260640161080d565b3483600f54611bbe9190613cfb565b1115611bfd5760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015260640161080d565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611c7783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a549150849050612ac4565b611cd15760405162461bcd60e51b815260206004820152602560248201527f4f6f70732c2063616e27742066696e6420796f75206f6e207468652077686974604482015264195b1a5cdd60da1b606482015260840161080d565b336000818152601b60205260409020805460ff19166001179055611cf59085612897565b600e54158015611d3857507f0000000000000000000000000000000000000000000000000000000000000000611d2a60015490565b1480611d385750600d544210155b156119ea5743600e5550505050565b6060611d54826001541190565b611d7157604051630a14c4b560e41b815260040160405180910390fd5b6000611d7b612836565b9050805160001415611d9c5760405180602001604052806000815250611dc7565b80611da684612ada565b604051602001611db79291906139db565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611df85760405162461bcd60e51b815260040161080d90613b31565b600f55565b600260155460ff166002811115611e2457634e487b7160e01b600052602160045260246000fd5b14611e715760405162461bcd60e51b815260206004820152601860248201527f5075626c69632073616c6520686173206e6f74206c6976650000000000000000604482015260640161080d565b601054811115611ec35760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e2774206d696e742074686174206d616e7920646f6765730000604482015260640161080d565b7f000000000000000000000000000000000000000000000000000000000000000081611eee60015490565b611ef89190613ccf565b1115611f465760405162461bcd60e51b815260206004820152601d60248201527f546f74616c20737570706c7920686173206265656e2072656163686564000000604482015260640161080d565b3481600f54611f559190613cfb565b1115611fbf5760405162461bcd60e51b815260206004820152603360248201527f436865636b20796f75722062616c616e63652c206e6f7420656e6f75676820456044820152721512081d1bc818dbdb5c1b195d19481b5a5b9d606a1b606482015260840161080d565b60105433600090815260196020526040902054611fdd908390613ccf565b11156120625760405162461bcd60e51b815260206004820152604860248201527f456163682075736572206973206f6e6c7920616c6c6f77656420746f206d696e60448201527f74203220646f6765732c207472792061646a757374696e6720796f7572207175606482015267616e74697469657360c01b608482015260a40161080d565b3360009081526019602052604081208054839290612081908490613ccf565b9091555061209190503382612897565b600e541580156120d457507f00000000000000000000000000000000000000000000000000000000000000006120c660015490565b14806120d45750600d544210155b156120de5743600e555b50565b6008546001600160a01b0316331461210b5760405162461bcd60e51b815260040161080d90613b31565b6001600160a01b0381166121705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080d565b6120de81612845565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b804710156122255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161080d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612272576040519150601f19603f3d011682016040523d82523d6000602084013e612277565b606091505b5050905080610a205760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161080d565b61137f600c60009054906101000a90046001600160a01b03166123a147737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561235857600080fd5b505afa15801561236c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612390919061359f565b600c546001600160a01b0316612bf4565b612e0d565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610a20908490613005565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001612468929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b815260040161249593929190613a47565b602060405180830381600087803b1580156124af57600080fd5b505af11580156124c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e791906137b0565b5060008381526020818152604080832054815180840188905280830185905230606082015260808082018390528351808303909101815260a090910190925281519183019190912086845292909152612541906001613ccf565b60008581526020818152604091829020929092558051808301879052808201849052815180820383018152606090910190915280519101205b949350505050565b600061258d826127a1565b80519091506000906001600160a01b0316336001600160a01b031614806125c45750336125b984610951565b6001600160a01b0316145b806125d6575081516125d6903361076e565b9050806125f657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461262b5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661265257604051633a954ecd60e21b815260040160405180910390fd5b6126626000848460000151612179565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166127575761270a816001541190565b15612757578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526127c0826001541190565b6127dd57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561282c579392505050565b50600019016127df565b6060600b80546108ce90613d5d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117bc8282604051806020016040528060008152506130d7565b60006101f46128bf60015490565b6128c99084613db3565b6128d39190613d1a565b90506040518060800160405280828152602001826101f46128f49190613ccf565b815260200161290583610190613ccf565b81526020016129168361012c613ccf565b90526129269060139060046134ae565b506040518060800160405280828152602001826101f46129469190613ccf565b815260200161295783610190613ccf565b81526020016129688361012c613ccf565b90526129789060149060046134ae565b507f11609bf0dfcab1cd8696cdc747ee705ba9c458e0b7e701b1ebd4e1dfb6b5fb2460136040516129a99190613abb565b60405180910390a1505050565b60006001600160a01b0384163b15612ab957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129fa903390899088908890600401613a0a565b602060405180830381600087803b158015612a1457600080fd5b505af1925050508015612a44575060408051601f3d908101601f19168201909252612a4191810190613821565b60015b612a9f573d808015612a72576040519150601f19603f3d011682016040523d82523d6000602084013e612a77565b606091505b508051612a97576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061257a565b506001949350505050565b600082612ad185846130e4565b14949350505050565b606081612afe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b285780612b1281613d98565b9150612b219050600a83613ce7565b9150612b02565b60008167ffffffffffffffff811115612b5157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b7b576020820181803683370190505b5090505b841561257a57612b90600183613d1a565b9150612b9d600a86613db3565b612ba8906030613ccf565b60f81b818381518110612bcb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612bed600a86613ce7565b9450612b7f565b60405163e6a4390560e01b81526001600160a01b038084166004830152821660248201526000908190735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063e6a439059060440160206040518083038186803b158015612c5457600080fd5b505afa158015612c68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c8c919061359f565b9050600080826001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015612cca57600080fd5b505afa158015612cde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d02919061385c565b506001600160701b031691506001600160701b031691506000836001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015612d5457600080fd5b505afa158015612d68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d8c919061359f565b9050600080886001600160a01b0316836001600160a01b031614612db1578385612db4565b84845b90925090506000612dc78b6103e5613cfb565b90506000612dd58383613cfb565b9050600082612de6866103e8613cfb565b612df09190613ccf565b9050612dfc8183613ce7565b9d9c50505050505050505050505050565b60408051600280825260608201835247926000929190602083019080368337019050509050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e7f57600080fd5b505afa158015612e93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eb7919061359f565b81600081518110612ed857634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250508381600181518110612f1a57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d637ff36ab583858430612f5c426102bc613ccf565b6040518663ffffffff1660e01b8152600401612f7b9493929190613c35565b6000604051808303818588803b158015612f9457600080fd5b505af1158015612fa8573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f19168201604052612fd19190810190613708565b60018251612fdf9190613d1a565b81518110612ffd57634e487b7160e01b600052603260045260246000fd5b505050505050565b600061305a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166131669092919063ffffffff16565b805190915015610a20578080602001905181019061307891906137b0565b610a205760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161080d565b610a208383836001613175565b600081815b845181101561315e57600085828151811061311457634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161313a576000838152602082905260409020925061314b565b600081815260208490526040902092505b508061315681613d98565b9150506130e9565b509392505050565b606061257a84846000856132c4565b6001546001600160a01b03851661319e57604051622e076360e81b815260040160405180910390fd5b836131bc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156132bb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015613291575061328f60008884886129b6565b155b156132af576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161323a565b5060015561279a565b6060824710156133255760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161080d565b6001600160a01b0385163b61337c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161080d565b600080866001600160a01b0316858760405161339891906139bf565b60006040518083038185875af1925050503d80600081146133d5576040519150601f19603f3d011682016040523d82523d6000602084013e6133da565b606091505b50915091506133ea8282866133f5565b979650505050505050565b60608315613404575081611dc7565b8251156134145782518084602001fd5b8160405162461bcd60e51b815260040161080d9190613b1e565b82805461343a90613d5d565b90600052602060002090601f01602090048101928261345c57600085556134a2565b82601f1061347557805160ff19168380011785556134a2565b828001600101855582156134a2579182015b828111156134a2578251825591602001919060010190613487565b506110a99291506134e8565b8280548282559060005260206000209081019282156134a257916020028201828111156134a2578251825591602001919060010190613487565b5b808211156110a957600081556001016134e9565b600067ffffffffffffffff83111561351757613517613df3565b61352a601f8401601f1916602001613c9e565b905082815283838301111561353e57600080fd5b828260208301376000602084830101529392505050565b80516001600160701b038116811461356c57600080fd5b919050565b803561ffff8116811461356c57600080fd5b600060208284031215613594578081fd5b8135611dc781613e09565b6000602082840312156135b0578081fd5b8151611dc781613e09565b600080604083850312156135cd578081fd5b82356135d881613e09565b915060208301356135e881613e09565b809150509250929050565b600080600060608486031215613607578081fd5b833561361281613e09565b9250602084013561362281613e09565b929592945050506040919091013590565b60008060008060808587031215613648578081fd5b843561365381613e09565b9350602085013561366381613e09565b925060408501359150606085013567ffffffffffffffff811115613685578182fd5b8501601f81018713613695578182fd5b6136a4878235602084016134fd565b91505092959194509250565b600080604083850312156136c2578182fd5b82356136cd81613e09565b915060208301356135e881613e1e565b600080604083850312156136ef578182fd5b82356136fa81613e09565b946020939093013593505050565b6000602080838503121561371a578182fd5b825167ffffffffffffffff80821115613731578384fd5b818501915085601f830112613744578384fd5b81518181111561375657613756613df3565b8060051b9150613767848301613c9e565b8181528481019084860184860187018a1015613781578788fd5b8795505b838610156137a3578051835260019590950194918601918601613785565b5098975050505050505050565b6000602082840312156137c1578081fd5b8151611dc781613e1e565b6000602082840312156137dd578081fd5b5035919050565b600080604083850312156137f6578182fd5b50508035926020909101359150565b600060208284031215613816578081fd5b8135611dc781613e2c565b600060208284031215613832578081fd5b8151611dc781613e2c565b60006020828403121561384e578081fd5b813560038110611dc7578182fd5b600080600060608486031215613870578081fd5b61387984613555565b925061388760208501613555565b9150604084015163ffffffff8116811461389f578182fd5b809150509250925092565b600080600080608085870312156138bf578182fd5b6138c885613571565b93506138d660208601613571565b925060408501356138e681613e09565b9150606085013567ffffffffffffffff811115613685578182fd5b600060208284031215613912578081fd5b5051919050565b60008060006040848603121561392d578081fd5b83359250602084013567ffffffffffffffff8082111561394b578283fd5b818601915086601f83011261395e578283fd5b81358181111561396c578384fd5b8760208260051b8501011115613980578384fd5b6020830194508093505050509250925092565b600081518084526139ab816020860160208601613d31565b601f01601f19169290920160200192915050565b600082516139d1818460208701613d31565b9190910192915050565b600083516139ed818460208801613d31565b835190830190613a01818360208801613d31565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a3d90830184613993565b9695505050505050565b60018060a01b0384168152826020820152606060408201526000613a6e6060830184613993565b95945050505050565b6020808252825182820181905260009190848201906040850190845b81811015613aaf57835183529284019291840191600101613a93565b50909695505050505050565b6020808252825482820181905260008481528281209092916040850190845b81811015613aaf57835483526001938401939285019201613ada565b6020810160038310613b1857634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000611dc76020830184613993565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b61ffff858116825284166020808301919091526001600160a01b03841660408301526080606083015282546000918291600181811c9082811680613bab57607f831692505b848310811415613bc957634e487b7160e01b87526022600452602487fd5b6080880183905260a08801818015613be85760018114613bf957613c23565b60ff19861682528682019750613c23565b60008b815260209020895b86811015613c1d57815484820152908501908801613c04565b83019850505b50959c9b505050505050505050505050565b600060808201868352602060808185015281875180845260a0860191508289019350845b81811015613c7e5784516001600160a01b031683529383019391830191600101613c59565b50506001600160a01b039690961660408501525050506060015292915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715613cc757613cc7613df3565b604052919050565b60008219821115613ce257613ce2613dc7565b500190565b600082613cf657613cf6613ddd565b500490565b6000816000190483118215151615613d1557613d15613dc7565b500290565b600082821015613d2c57613d2c613dc7565b500390565b60005b83811015613d4c578181015183820152602001613d34565b838111156119ea5750506000910152565b600181811c90821680613d7157607f821691505b60208210811415613d9257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613dac57613dac613dc7565b5060010190565b600082613dc257613dc2613ddd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146120de57600080fd5b80151581146120de57600080fd5b6001600160e01b0319811681146120de57600080fdfea2646970667358221220c2d4a626d703d48d2f5b3709dc3272a47e9549b19988da1b46c15c2a2fbe683664736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000842616279446f6765000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000842616279446f6765000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d515143545342686b6d42746a3233704e4c4a6b673972743745575074736d58635662447a33656671586875562f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102765760003560e01c8063715018a61161014f5780639d5719b1116100c1578063c87b56dd1161007a578063c87b56dd14610700578063cac4ee0514610720578063db57e74514610740578063e985e9c514610753578063f2fde38b1461079c578063f9020e33146107bc57600080fd5b80639d5719b114610656578063a22cb4651461066b578063a2fb11751461068b578063a3bc9336146106ab578063b88d4fde146106cd578063bcfa950e146106ed57600080fd5b806388c6abf81161011357806388c6abf8146105c15780638ad78f80146105d85780638c3c4b34146105ee5780638da5cb5b1461060357806394985ddd1461062157806395d89b411461064157600080fd5b8063715018a614610536578063719ce73e1461054b57806379d49bb0146105615780637cb647591461058157806385142339146105a157600080fd5b80632eb4a7ab116101e8578063513d29ce116101ac578063513d29ce1461048c578063547520fe146104ac5780636352211e146104cc5780636c0360eb146104ec5780636c62ef141461050157806370a082311461051657600080fd5b80632eb4a7ab146103f65780632f745c591461040c57806342842e0e1461042c5780634891ad881461044c5780634f6ccce71461046c57600080fd5b8063095ea7b31161023a578063095ea7b3146103575780630a213e0414610377578063107fb6421461039657806318160ddd146103ab57806318e20a38146103c057806323b872dd146103d657600080fd5b8063018a2c371461028257806301ffc9a7146102a457806306095f59146102d957806306fdde03146102fd578063081812fc1461031f57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d3660046137cc565b6107e3565b005b3480156102b057600080fd5b506102c46102bf366004613805565b610852565b60405190151581526020015b60405180910390f35b3480156102e557600080fd5b506102ef600f5481565b6040519081526020016102d0565b34801561030957600080fd5b506103126108bf565b6040516102d09190613b1e565b34801561032b57600080fd5b5061033f61033a3660046137cc565b610951565b6040516001600160a01b0390911681526020016102d0565b34801561036357600080fd5b506102a26103723660046136dd565b610997565b34801561038357600080fd5b506011546102c490610100900460ff1681565b3480156103a257600080fd5b506102ef610a25565b3480156103b757600080fd5b506001546102ef565b3480156103cc57600080fd5b506102ef600d5481565b3480156103e257600080fd5b506102a26103f13660046135f3565b610ec3565b34801561040257600080fd5b506102ef601a5481565b34801561041857600080fd5b506102ef6104273660046136dd565b610ece565b34801561043857600080fd5b506102a26104473660046135f3565b610fb3565b34801561045857600080fd5b506102a261046736600461383d565b610fce565b34801561047857600080fd5b506102ef6104873660046137cc565b61107f565b34801561049857600080fd5b506102a26104a73660046138aa565b6110ad565b3480156104b857600080fd5b506102a26104c73660046137cc565b6111ec565b3480156104d857600080fd5b5061033f6104e73660046137cc565b61124b565b3480156104f857600080fd5b5061031261125d565b34801561050d57600080fd5b506102a261126c565b34801561052257600080fd5b506102ef610531366004613583565b6112fd565b34801561054257600080fd5b506102a261134b565b34801561055757600080fd5b506102ef60125481565b34801561056d57600080fd5b506102a261057c3660046137cc565b611381565b34801561058d57600080fd5b506102a261059c3660046137cc565b6113e5565b3480156105ad57600080fd5b506102a26105bc3660046137cc565b611444565b3480156105cd57600080fd5b506018546102ef9081565b3480156105e457600080fd5b506102ef60105481565b3480156105fa57600080fd5b506102ef611712565b34801561060f57600080fd5b506008546001600160a01b031661033f565b34801561062d57600080fd5b506102a261063c3660046137e4565b61173a565b34801561064d57600080fd5b506103126117c0565b34801561066257600080fd5b506102a26117cf565b34801561067757600080fd5b506102a26106863660046136b0565b6118a8565b34801561069757600080fd5b506102ef6106a63660046137cc565b61193e565b3480156106b757600080fd5b506106c061195f565b6040516102d09190613a77565b3480156106d957600080fd5b506102a26106e8366004613633565b6119b6565b6102a26106fb366004613919565b6119f0565b34801561070c57600080fd5b5061031261071b3660046137cc565b611d47565b34801561072c57600080fd5b506102a261073b3660046137cc565b611dce565b6102a261074e3660046137cc565b611dfd565b34801561075f57600080fd5b506102c461076e3660046135bb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107a857600080fd5b506102a26107b7366004613583565b6120e1565b3480156107c857600080fd5b506015546107d69060ff1681565b6040516102d09190613af6565b6008546001600160a01b031633146108165760405162461bcd60e51b815260040161080d90613b31565b60405180910390fd5b600d8190556040518181527fd227248b3540871674d341a3d15918c6eaed5a6704bae91d238aa95b5edaab89906020015b60405180910390a150565b60006001600160e01b031982166380ac58cd60e01b148061088357506001600160e01b03198216635b5e139f60e01b145b8061089e57506001600160e01b0319821663780e9d6360e01b145b806108b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108ce90613d5d565b80601f01602080910402602001604051908101604052809291908181526020018280546108fa90613d5d565b80156109475780601f1061091c57610100808354040283529160200191610947565b820191906000526020600020905b81548152906001019060200180831161092a57829003601f168201915b5050505050905090565b600061095e826001541190565b61097b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109a28261124b565b9050806001600160a01b0316836001600160a01b031614156109d75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109f757506109f5813361076e565b155b15610a15576040516367d9dca160e11b815260040160405180910390fd5b610a20838383612179565b505050565b600060026009541415610a7a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161080d565b600260095560115460ff16610af75760405162461bcd60e51b815260206004820152603960248201527f6572726f723a2063616e27742063616c6c206e6578745265776172644e6f6e6360448201527f65206265666f7265207468652073616c65206973206f76657200000000000000606482015260840161080d565b60006224ea0060166000610b0a60185490565b815260200190815260200160002054610b239190613ccf565b4211610b805760405162461bcd60e51b815260206004820152602660248201527f6572726f723a20697465726174696f6e20706572696f6420686173206e6f74206044820152651c185cdcd95960d21b606482015260840161080d565b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000003782dace9d90000907f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a082319060240160206040518083038186803b158015610c0157600080fd5b505afa158015610c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c399190613901565b1015610c995760405162461bcd60e51b815260206004820152602960248201527f4e6f7420656e6f756768204c494e4b202d2066696c6c20636f6e74726163742060448201526877697468204c696e6b60b81b606482015260840161080d565b610ca7601880546001019055565b4260166000610cb560185490565b815260208101919091526040016000205560015460176000610cd660185490565b8152602001908152602001600020819055506000601160019054906101000a900460ff1615610d755750600a54479061271090610d179061ffff1683613cfb565b610d219190613ce7565b9150610d4882610d396008546001600160a01b031690565b6001600160a01b0316906121d5565b600a5461271090610d639062010000900461ffff1683613cfb565b610d6d9190613ce7565b601255610e6d565b610d7d6122ee565b600c546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610dc057600080fd5b505afa158015610dd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df89190613901565b600a5490915061271090610e109061ffff1683613cfb565b610e1a9190613ce7565b9150610e44610e316008546001600160a01b031690565b600c546001600160a01b031690846123a6565b600a5461271090610e5f9062010000900461ffff1683613cfb565b610e699190613ce7565b6012555b610eb77f9fe0eebf5e446e3c998ec9bb19951541aee00bb90ea201ae456421a2ded868057f00000000000000000000000000000000000000000000000003782dace9d900006123f8565b92505050600160095590565b610a20838383612582565b6000610ed9836112fd565b8210610ef8576040516306ed618760e11b815260040160405180910390fd5b6000610f0360015490565b905060008060005b83811015610f9c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f5e57805192505b876001600160a01b0316836001600160a01b03161415610f935786841415610f8c575093506108b992505050565b6001909301925b50600101610f0b565b50634e487b7160e01b600052600160045260246000fd5b610a20838383604051806020016040528060008152506119b6565b6008546001600160a01b03163314610ff85760405162461bcd60e51b815260040161080d90613b31565b6015805482919060ff1916600183600281111561102557634e487b7160e01b600052602160045260246000fd5b02179055506015547f5f393514fe885345bf6ba49c7009fef8081ddf42042464e8dfe04a17f001cddf9060ff16600281111561107157634e487b7160e01b600052602160045260246000fd5b604051908152602001610847565b600061108a60015490565b82106110a9576040516329c8c00760e21b815260040160405180910390fd5b5090565b6008546001600160a01b031633146110d75760405162461bcd60e51b815260040161080d90613b31565b6001600160a01b03821661113c5760405162461bcd60e51b815260206004820152602660248201527f4572726f723a20546f6b656e2063616e277420626520746865207a65726f206160448201526564647265737360d01b606482015260840161080d565b600a805461ffff858116620100000263ffffffff1990921690871617179055600c80546001600160a01b0384166001600160a01b0319909116179055805161118b90600b90602084019061342e565b50600a54600c546040517e89f6d806b406160fe53ec387c78595e885ca4881db758f4e83ca7ddc069b88926111de9261ffff808316936201000090930416916001600160a01b0390911690600b90613b66565b60405180910390a150505050565b6008546001600160a01b031633146112165760405162461bcd60e51b815260040161080d90613b31565b60108190556040518181527f3b64f5d0ae4de41d36db0948fc83ffbba5d86eb79841008d6047a25f46ed2b7990602001610847565b6000611256826127a1565b5192915050565b6060611267612836565b905090565b6008546001600160a01b031633146112965760405162461bcd60e51b815260040161080d90613b31565b6011805461ff001981166101009182900460ff16159091021790556112b9610a25565b5060115460405161010090910460ff16151581527fa52383c36c234ecf24255806fe74d869b31d0a0d26073e975ddeb5f871886262906020015b60405180910390a1565b60006001600160a01b038216611326576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6008546001600160a01b031633146113755760405162461bcd60e51b815260040161080d90613b31565b61137f6000612845565b565b6008546001600160a01b031633146113ab5760405162461bcd60e51b815260040161080d90613b31565b6113b53382612897565b6040518181527fffa76519d7df0608ca65c5af555ef0723f461afa7dadac8ccb5b3f7a8019e3ef90602001610847565b6008546001600160a01b0316331461140f5760405162461bcd60e51b815260040161080d90613b31565b601a8190556040518181527f42cbc405e4dbf1b691e85b9a34b08ecfcf7a9ad9078bf4d645ccfa1fac11c10b90602001610847565b600260095414156114975760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161080d565b6002600955336114a68261124b565b6001600160a01b0316146115075760405162461bcd60e51b815260206004820152602260248201527f6572726f723a20796f7520646f6e74206f776e20612077696e6e696e6720646f604482015261676560f01b606482015260840161080d565b6000805b60145481101561167357826014828154811061153757634e487b7160e01b600052603260045260246000fd5b90600052602060002001541415611661576014546012546115589190613ce7565b9150816012546115689190613d1a565b601255805b60145461157c90600190613d1a565b8110156115f8576014611590826001613ccf565b815481106115ae57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601482815481106115da57634e487b7160e01b600052603260045260246000fd5b600091825260209091200155806115f081613d98565b91505061156d565b50601480548061161857634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055601160019054906101000a900460ff16156116555761165082610d398561124b565b611661565b611661610e318461124b565b8061166b81613d98565b91505061150b565b50600081116116d05760405162461bcd60e51b815260206004820152602360248201527f6572726f723a207072697a65206d75737420626520677265617465722074686560448201526206e20360ec1b606482015260840161080d565b60408051838152602081018390527ff4338f56dc8b8e2b8c87ae4eb8008d2290a524a16c153183ef0b116ef4834d7d910160405180910390a150506001600955565b60155460009060ff16600281111561126757634e487b7160e01b600052602160045260246000fd5b336001600160a01b037f000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e6990916146117b25760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00604482015260640161080d565b6117bc82826128b1565b5050565b6060600380546108ce90613d5d565b6008546001600160a01b031633146117f95760405162461bcd60e51b815260040161080d90613b31565b60115460ff161561184c5760405162461bcd60e51b815260206004820181905260248201527f43616e206f6e6c792063616c6c20746869732066756e6374696f6e206f6e6365604482015260640161080d565b6011805460ff1916600117905561186f47610d396008546001600160a01b031690565b60115460405160ff909116151581527fd5dc719472ee802e529d4afc3a953b5d8ea1790730213eafdcfce3433d2ea225906020016112f3565b6001600160a01b0382163314156118d25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6013818154811061194e57600080fd5b600091825260209091200154905081565b6060601380548060200260200160405190810160405280929190818152602001828054801561094757602002820191906000526020600020905b815481526020019060010190808311611999575050505050905090565b6119c1848484612582565b6119cd848484846129b6565b6119ea576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600160155460ff166002811115611a1757634e487b7160e01b600052602160045260246000fd5b14611a645760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206973206e6f74206c697665000000000000604482015260640161080d565b336000908152601b602052604090205460ff1615611ada5760405162461bcd60e51b815260206004820152602d60248201527f596f75722077686974656c69737420656e7472792068617320616c726561647960448201526c081899595b8818db185a5b5959609a1b606482015260840161080d565b601054831115611b2c5760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e2774206d696e742074686174206d616e7920646f6765730000604482015260640161080d565b7f000000000000000000000000000000000000000000000000000000000000271083611b5760015490565b611b619190613ccf565b1115611baf5760405162461bcd60e51b815260206004820152601d60248201527f546f74616c20737570706c7920686173206265656e2072656163686564000000604482015260640161080d565b3483600f54611bbe9190613cfb565b1115611bfd5760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015260640161080d565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611c7783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a549150849050612ac4565b611cd15760405162461bcd60e51b815260206004820152602560248201527f4f6f70732c2063616e27742066696e6420796f75206f6e207468652077686974604482015264195b1a5cdd60da1b606482015260840161080d565b336000818152601b60205260409020805460ff19166001179055611cf59085612897565b600e54158015611d3857507f0000000000000000000000000000000000000000000000000000000000002710611d2a60015490565b1480611d385750600d544210155b156119ea5743600e5550505050565b6060611d54826001541190565b611d7157604051630a14c4b560e41b815260040160405180910390fd5b6000611d7b612836565b9050805160001415611d9c5760405180602001604052806000815250611dc7565b80611da684612ada565b604051602001611db79291906139db565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611df85760405162461bcd60e51b815260040161080d90613b31565b600f55565b600260155460ff166002811115611e2457634e487b7160e01b600052602160045260246000fd5b14611e715760405162461bcd60e51b815260206004820152601860248201527f5075626c69632073616c6520686173206e6f74206c6976650000000000000000604482015260640161080d565b601054811115611ec35760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e2774206d696e742074686174206d616e7920646f6765730000604482015260640161080d565b7f000000000000000000000000000000000000000000000000000000000000271081611eee60015490565b611ef89190613ccf565b1115611f465760405162461bcd60e51b815260206004820152601d60248201527f546f74616c20737570706c7920686173206265656e2072656163686564000000604482015260640161080d565b3481600f54611f559190613cfb565b1115611fbf5760405162461bcd60e51b815260206004820152603360248201527f436865636b20796f75722062616c616e63652c206e6f7420656e6f75676820456044820152721512081d1bc818dbdb5c1b195d19481b5a5b9d606a1b606482015260840161080d565b60105433600090815260196020526040902054611fdd908390613ccf565b11156120625760405162461bcd60e51b815260206004820152604860248201527f456163682075736572206973206f6e6c7920616c6c6f77656420746f206d696e60448201527f74203220646f6765732c207472792061646a757374696e6720796f7572207175606482015267616e74697469657360c01b608482015260a40161080d565b3360009081526019602052604081208054839290612081908490613ccf565b9091555061209190503382612897565b600e541580156120d457507f00000000000000000000000000000000000000000000000000000000000027106120c660015490565b14806120d45750600d544210155b156120de5743600e555b50565b6008546001600160a01b0316331461210b5760405162461bcd60e51b815260040161080d90613b31565b6001600160a01b0381166121705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080d565b6120de81612845565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b804710156122255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161080d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612272576040519150601f19603f3d011682016040523d82523d6000602084013e612277565b606091505b5050905080610a205760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161080d565b61137f600c60009054906101000a90046001600160a01b03166123a147737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561235857600080fd5b505afa15801561236c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612390919061359f565b600c546001600160a01b0316612bf4565b612e0d565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610a20908490613005565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e6990984866000604051602001612468929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b815260040161249593929190613a47565b602060405180830381600087803b1580156124af57600080fd5b505af11580156124c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e791906137b0565b5060008381526020818152604080832054815180840188905280830185905230606082015260808082018390528351808303909101815260a090910190925281519183019190912086845292909152612541906001613ccf565b60008581526020818152604091829020929092558051808301879052808201849052815180820383018152606090910190915280519101205b949350505050565b600061258d826127a1565b80519091506000906001600160a01b0316336001600160a01b031614806125c45750336125b984610951565b6001600160a01b0316145b806125d6575081516125d6903361076e565b9050806125f657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461262b5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661265257604051633a954ecd60e21b815260040160405180910390fd5b6126626000848460000151612179565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166127575761270a816001541190565b15612757578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526127c0826001541190565b6127dd57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561282c579392505050565b50600019016127df565b6060600b80546108ce90613d5d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117bc8282604051806020016040528060008152506130d7565b60006101f46128bf60015490565b6128c99084613db3565b6128d39190613d1a565b90506040518060800160405280828152602001826101f46128f49190613ccf565b815260200161290583610190613ccf565b81526020016129168361012c613ccf565b90526129269060139060046134ae565b506040518060800160405280828152602001826101f46129469190613ccf565b815260200161295783610190613ccf565b81526020016129688361012c613ccf565b90526129789060149060046134ae565b507f11609bf0dfcab1cd8696cdc747ee705ba9c458e0b7e701b1ebd4e1dfb6b5fb2460136040516129a99190613abb565b60405180910390a1505050565b60006001600160a01b0384163b15612ab957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129fa903390899088908890600401613a0a565b602060405180830381600087803b158015612a1457600080fd5b505af1925050508015612a44575060408051601f3d908101601f19168201909252612a4191810190613821565b60015b612a9f573d808015612a72576040519150601f19603f3d011682016040523d82523d6000602084013e612a77565b606091505b508051612a97576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061257a565b506001949350505050565b600082612ad185846130e4565b14949350505050565b606081612afe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b285780612b1281613d98565b9150612b219050600a83613ce7565b9150612b02565b60008167ffffffffffffffff811115612b5157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b7b576020820181803683370190505b5090505b841561257a57612b90600183613d1a565b9150612b9d600a86613db3565b612ba8906030613ccf565b60f81b818381518110612bcb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612bed600a86613ce7565b9450612b7f565b60405163e6a4390560e01b81526001600160a01b038084166004830152821660248201526000908190735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063e6a439059060440160206040518083038186803b158015612c5457600080fd5b505afa158015612c68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c8c919061359f565b9050600080826001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015612cca57600080fd5b505afa158015612cde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d02919061385c565b506001600160701b031691506001600160701b031691506000836001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015612d5457600080fd5b505afa158015612d68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d8c919061359f565b9050600080886001600160a01b0316836001600160a01b031614612db1578385612db4565b84845b90925090506000612dc78b6103e5613cfb565b90506000612dd58383613cfb565b9050600082612de6866103e8613cfb565b612df09190613ccf565b9050612dfc8183613ce7565b9d9c50505050505050505050505050565b60408051600280825260608201835247926000929190602083019080368337019050509050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e7f57600080fd5b505afa158015612e93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eb7919061359f565b81600081518110612ed857634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250508381600181518110612f1a57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d637ff36ab583858430612f5c426102bc613ccf565b6040518663ffffffff1660e01b8152600401612f7b9493929190613c35565b6000604051808303818588803b158015612f9457600080fd5b505af1158015612fa8573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f19168201604052612fd19190810190613708565b60018251612fdf9190613d1a565b81518110612ffd57634e487b7160e01b600052603260045260246000fd5b505050505050565b600061305a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166131669092919063ffffffff16565b805190915015610a20578080602001905181019061307891906137b0565b610a205760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161080d565b610a208383836001613175565b600081815b845181101561315e57600085828151811061311457634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161313a576000838152602082905260409020925061314b565b600081815260208490526040902092505b508061315681613d98565b9150506130e9565b509392505050565b606061257a84846000856132c4565b6001546001600160a01b03851661319e57604051622e076360e81b815260040160405180910390fd5b836131bc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156132bb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015613291575061328f60008884886129b6565b155b156132af576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161323a565b5060015561279a565b6060824710156133255760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161080d565b6001600160a01b0385163b61337c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161080d565b600080866001600160a01b0316858760405161339891906139bf565b60006040518083038185875af1925050503d80600081146133d5576040519150601f19603f3d011682016040523d82523d6000602084013e6133da565b606091505b50915091506133ea8282866133f5565b979650505050505050565b60608315613404575081611dc7565b8251156134145782518084602001fd5b8160405162461bcd60e51b815260040161080d9190613b1e565b82805461343a90613d5d565b90600052602060002090601f01602090048101928261345c57600085556134a2565b82601f1061347557805160ff19168380011785556134a2565b828001600101855582156134a2579182015b828111156134a2578251825591602001919060010190613487565b506110a99291506134e8565b8280548282559060005260206000209081019282156134a257916020028201828111156134a2578251825591602001919060010190613487565b5b808211156110a957600081556001016134e9565b600067ffffffffffffffff83111561351757613517613df3565b61352a601f8401601f1916602001613c9e565b905082815283838301111561353e57600080fd5b828260208301376000602084830101529392505050565b80516001600160701b038116811461356c57600080fd5b919050565b803561ffff8116811461356c57600080fd5b600060208284031215613594578081fd5b8135611dc781613e09565b6000602082840312156135b0578081fd5b8151611dc781613e09565b600080604083850312156135cd578081fd5b82356135d881613e09565b915060208301356135e881613e09565b809150509250929050565b600080600060608486031215613607578081fd5b833561361281613e09565b9250602084013561362281613e09565b929592945050506040919091013590565b60008060008060808587031215613648578081fd5b843561365381613e09565b9350602085013561366381613e09565b925060408501359150606085013567ffffffffffffffff811115613685578182fd5b8501601f81018713613695578182fd5b6136a4878235602084016134fd565b91505092959194509250565b600080604083850312156136c2578182fd5b82356136cd81613e09565b915060208301356135e881613e1e565b600080604083850312156136ef578182fd5b82356136fa81613e09565b946020939093013593505050565b6000602080838503121561371a578182fd5b825167ffffffffffffffff80821115613731578384fd5b818501915085601f830112613744578384fd5b81518181111561375657613756613df3565b8060051b9150613767848301613c9e565b8181528481019084860184860187018a1015613781578788fd5b8795505b838610156137a3578051835260019590950194918601918601613785565b5098975050505050505050565b6000602082840312156137c1578081fd5b8151611dc781613e1e565b6000602082840312156137dd578081fd5b5035919050565b600080604083850312156137f6578182fd5b50508035926020909101359150565b600060208284031215613816578081fd5b8135611dc781613e2c565b600060208284031215613832578081fd5b8151611dc781613e2c565b60006020828403121561384e578081fd5b813560038110611dc7578182fd5b600080600060608486031215613870578081fd5b61387984613555565b925061388760208501613555565b9150604084015163ffffffff8116811461389f578182fd5b809150509250925092565b600080600080608085870312156138bf578182fd5b6138c885613571565b93506138d660208601613571565b925060408501356138e681613e09565b9150606085013567ffffffffffffffff811115613685578182fd5b600060208284031215613912578081fd5b5051919050565b60008060006040848603121561392d578081fd5b83359250602084013567ffffffffffffffff8082111561394b578283fd5b818601915086601f83011261395e578283fd5b81358181111561396c578384fd5b8760208260051b8501011115613980578384fd5b6020830194508093505050509250925092565b600081518084526139ab816020860160208601613d31565b601f01601f19169290920160200192915050565b600082516139d1818460208701613d31565b9190910192915050565b600083516139ed818460208801613d31565b835190830190613a01818360208801613d31565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a3d90830184613993565b9695505050505050565b60018060a01b0384168152826020820152606060408201526000613a6e6060830184613993565b95945050505050565b6020808252825182820181905260009190848201906040850190845b81811015613aaf57835183529284019291840191600101613a93565b50909695505050505050565b6020808252825482820181905260008481528281209092916040850190845b81811015613aaf57835483526001938401939285019201613ada565b6020810160038310613b1857634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000611dc76020830184613993565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b61ffff858116825284166020808301919091526001600160a01b03841660408301526080606083015282546000918291600181811c9082811680613bab57607f831692505b848310811415613bc957634e487b7160e01b87526022600452602487fd5b6080880183905260a08801818015613be85760018114613bf957613c23565b60ff19861682528682019750613c23565b60008b815260209020895b86811015613c1d57815484820152908501908801613c04565b83019850505b50959c9b505050505050505050505050565b600060808201868352602060808185015281875180845260a0860191508289019350845b81811015613c7e5784516001600160a01b031683529383019391830191600101613c59565b50506001600160a01b039690961660408501525050506060015292915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715613cc757613cc7613df3565b604052919050565b60008219821115613ce257613ce2613dc7565b500190565b600082613cf657613cf6613ddd565b500490565b6000816000190483118215151615613d1557613d15613dc7565b500290565b600082821015613d2c57613d2c613dc7565b500390565b60005b83811015613d4c578181015183820152602001613d34565b838111156119ea5750506000910152565b600181811c90821680613d7157607f821691505b60208210811415613d9257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613dac57613dac613dc7565b5060010190565b600082613dc257613dc2613ddd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146120de57600080fd5b80151581146120de57600080fd5b6001600160e01b0319811681146120de57600080fdfea2646970667358221220c2d4a626d703d48d2f5b3709dc3272a47e9549b19988da1b46c15c2a2fbe683664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000842616279446f6765000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000842616279446f6765000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d515143545342686b6d42746a3233704e4c4a6b673972743745575074736d58635662447a33656671586875562f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): BabyDoge
Arg [1] : symbol (string): BabyDoge
Arg [2] : baseTokenURI (string): https://ipfs.io/ipfs/QmQQCTSBhkmBtj23pNLJkg9rt7EWPtsmXcVbDz3efqXhuV/
Arg [3] : maxNftSupply (uint256): 10000
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 42616279446f6765000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 42616279446f6765000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [9] : 68747470733a2f2f697066732e696f2f697066732f516d515143545342686b6d
Arg [10] : 42746a3233704e4c4a6b673972743745575074736d58635662447a3365667158
Arg [11] : 6875562f00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.