Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 634 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 13177713 | 1240 days ago | IN | 0 ETH | 0.00242931 | ||||
Transfer | 13094181 | 1253 days ago | IN | 1.6 ETH | 0.00389125 | ||||
Transfer | 13056862 | 1259 days ago | IN | 0.15 ETH | 0.001512 | ||||
Transfer | 13048095 | 1260 days ago | IN | 0.3 ETH | 0.00070886 | ||||
Transfer | 13047563 | 1260 days ago | IN | 0.1 ETH | 0.00066746 | ||||
Transfer | 13046262 | 1260 days ago | IN | 0.6 ETH | 0.01286967 | ||||
Transfer | 13046253 | 1260 days ago | IN | 0.75 ETH | 0.00841073 | ||||
Transfer | 13046229 | 1260 days ago | IN | 0.16 ETH | 0.0066663 | ||||
Transfer | 13046200 | 1260 days ago | IN | 0.12 ETH | 0.00471336 | ||||
Transfer | 13046188 | 1260 days ago | IN | 0.23 ETH | 0.00341463 | ||||
Transfer | 13046172 | 1260 days ago | IN | 0.1 ETH | 0.00561093 | ||||
Transfer | 13046143 | 1260 days ago | IN | 0.1 ETH | 0.00506127 | ||||
Transfer | 13046098 | 1260 days ago | IN | 0.2 ETH | 0.00498443 | ||||
Transfer | 13045987 | 1260 days ago | IN | 3 ETH | 0.00595157 | ||||
Transfer | 13045939 | 1260 days ago | IN | 0.13 ETH | 0.00477646 | ||||
Transfer | 13045924 | 1261 days ago | IN | 0.23 ETH | 0.00588734 | ||||
Transfer | 13045911 | 1261 days ago | IN | 0.3 ETH | 0.00429285 | ||||
Transfer | 13045900 | 1261 days ago | IN | 2 ETH | 0.00442265 | ||||
Transfer | 13045878 | 1261 days ago | IN | 2 ETH | 0.0041447 | ||||
Transfer | 13045849 | 1261 days ago | IN | 0.19 ETH | 0.00514232 | ||||
Transfer | 13045782 | 1261 days ago | IN | 0.32 ETH | 0.00413934 | ||||
Transfer | 13045709 | 1261 days ago | IN | 1 ETH | 0.00565442 | ||||
Transfer | 13045700 | 1261 days ago | IN | 1 ETH | 0.00498502 | ||||
Transfer | 13045670 | 1261 days ago | IN | 0.1 ETH | 0.00521177 | ||||
Transfer | 13045669 | 1261 days ago | IN | 1 ETH | 0.00352035 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13046262 | 1260 days ago | 0.49493854 ETH | ||||
13046262 | 1260 days ago | 0.10506145 ETH | ||||
13046253 | 1260 days ago | 0.75 ETH | ||||
13046229 | 1260 days ago | 0.16 ETH | ||||
13046200 | 1260 days ago | 0.12 ETH | ||||
13046188 | 1260 days ago | 0.23 ETH | ||||
13046172 | 1260 days ago | 0.1 ETH | ||||
13046143 | 1260 days ago | 0.1 ETH | ||||
13046098 | 1260 days ago | 0.2 ETH | ||||
13045987 | 1260 days ago | 3 ETH | ||||
13045939 | 1260 days ago | 0.13 ETH | ||||
13045924 | 1261 days ago | 0.23 ETH | ||||
13045911 | 1261 days ago | 0.3 ETH | ||||
13045900 | 1261 days ago | 2 ETH | ||||
13045878 | 1261 days ago | 2 ETH | ||||
13045849 | 1261 days ago | 0.19 ETH | ||||
13045782 | 1261 days ago | 0.32 ETH | ||||
13045709 | 1261 days ago | 1 ETH | ||||
13045700 | 1261 days ago | 1 ETH | ||||
13045670 | 1261 days ago | 0.1 ETH | ||||
13045669 | 1261 days ago | 1 ETH | ||||
13045604 | 1261 days ago | 0.1 ETH | ||||
13045585 | 1261 days ago | 0.5 ETH | ||||
13045585 | 1261 days ago | 0.1 ETH | ||||
13045563 | 1261 days ago | 0.2 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PinkslipSale
Compiler Version
v0.6.5+commit.f956cc89
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-17 */ // File: @openzeppelin/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/ReentrancyGuard.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/utils/Address.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/PinkslipSale.sol pragma solidity 0.6.5; contract PinkslipSale is ReentrancyGuard, Ownable { using SafeMath for uint256; using Address for address payable; mapping(address => uint256) participants; uint256 public buyPrice; uint256 public minimalGoal; uint256 public hardCap; IERC20 crowdsaleToken; uint256 constant tokenDecimals = 18; event SellToken(address recepient, uint tokensSold, uint value); address payable fundingAddress; uint256 public totalCollected; uint256 public totalSold; uint256 public start; bool stopped = false; constructor( IERC20 _token, address payable _fundingAddress ) public { minimalGoal = 1000000000000000000; hardCap = 500000000000000000000; buyPrice = 91666666666666; // 0,000091666666666666 ETH crowdsaleToken = _token; fundingAddress = _fundingAddress; start = getTime(); } function getToken() external view returns(address) { return address(crowdsaleToken); } receive() external payable { require(msg.value >= 100000000000000000, 'PinkslipSale: Min 0.1 ETH'); require(participants[msg.sender] <= 3000000000000000000, 'PinkslipSale: Min 3 ETH'); sell(msg.sender, msg.value); } function sell(address payable _recepient, uint256 _value) internal nonReentrant whenCrowdsaleAlive() { uint256 newTotalCollected = totalCollected.add(_value); if (hardCap < newTotalCollected) { // Refund anything above the hard cap uint256 refund = newTotalCollected.sub(hardCap); uint256 diff = _value.sub(refund); _recepient.sendValue(refund); _value = diff; newTotalCollected = totalCollected.add(_value); } // Token amount per price uint256 tokensSold = (_value).mul(10 ** tokenDecimals).div(buyPrice); // Send user tokens require(crowdsaleToken.transfer(_recepient, tokensSold), 'PinkslipSale: Error transfering'); emit SellToken(_recepient, tokensSold, _value); // Save participants participants[_recepient] = participants[_recepient].add(_value); fundingAddress.sendValue(_value); // Update total BNB totalCollected = totalCollected.add(_value); // Update tokens sold totalSold = totalSold.add(tokensSold); } function totalTokensNeeded() external view returns (uint256) { return hardCap.mul(10 ** tokenDecimals).div(buyPrice); } function stop() external onlyOwner() { stopped = true; } function unstop() external onlyOwner() { stopped = false; } function returnUnsold() external nonReentrant onlyOwner() { crowdsaleToken.transfer(fundingAddress, crowdsaleToken.balanceOf(address(this))); } function getTime() public view returns(uint256) { return block.timestamp; } function isActive() public view returns(bool) { return ( totalCollected < hardCap && !stopped ); } function isSuccessful() external view returns(bool) { return ( totalCollected >= minimalGoal ); } modifier whenCrowdsaleAlive() { require(isActive()); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address payable","name":"_fundingAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"recepient","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensSold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SellToken","type":"event"},{"inputs":[],"name":"buyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSuccessful","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimalGoal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"returnUnsold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalCollected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensNeeded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unstop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600b805460ff1916905534801561001a57600080fd5b5060405161105d38038061105d8339818101604052604081101561003d57600080fd5b5080516020909101516001600090815561005e6001600160e01b0361011b16565b600180546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350670de0b6b3a7640000600455681b1ae4d6e2ef50000060055565535ecf1abaaa600355600680546001600160a01b038085166001600160a01b03199283161790925560078054928416929091169190911790556101106001600160e01b0361011f16565b600a55506101239050565b3390565b4290565b610f2b806101326000396000f3fe6080604052600436106101025760003560e01c80639106d7ba11610095578063e29eb83611610064578063e29eb8361461031f578063ec4cd0cf14610334578063f2fde38b14610349578063f8bd71c71461037c578063fb86a40414610391576101dc565b80639106d7ba146102cb578063b2ea088d146102e0578063bba8bd20146102f5578063be9a65551461030a576101dc565b80636385cbbe116100d15780636385cbbe14610277578063715018a61461028c5780638620410b146102a15780638da5cb5b146102b6576101dc565b806307da68f5146101e157806321df0da7146101f657806322f3e2d414610227578063557ed1ba14610250576101dc565b366101dc5767016345785d8a0000341015610164576040805162461bcd60e51b815260206004820152601960248201527f50696e6b736c697053616c653a204d696e20302e312045544800000000000000604482015290519081900360640190fd5b336000908152600260205260409020546729a2241af62c000010156101d0576040805162461bcd60e51b815260206004820152601760248201527f50696e6b736c697053616c653a204d696e203320455448000000000000000000604482015290519081900360640190fd5b6101da33346103a6565b005b600080fd5b3480156101ed57600080fd5b506101da610676565b34801561020257600080fd5b5061020b6106dd565b604080516001600160a01b039092168252519081900360200190f35b34801561023357600080fd5b5061023c6106ec565b604080519115158252519081900360200190f35b34801561025c57600080fd5b50610265610709565b60408051918252519081900360200190f35b34801561028357600080fd5b5061026561070d565b34801561029857600080fd5b506101da610713565b3480156102ad57600080fd5b506102656107b5565b3480156102c257600080fd5b5061020b6107bb565b3480156102d757600080fd5b506102656107ca565b3480156102ec57600080fd5b506101da6107d0565b34801561030157600080fd5b5061026561098b565b34801561031657600080fd5b506102656109b0565b34801561032b57600080fd5b506102656109b6565b34801561034057600080fd5b5061023c6109bc565b34801561035557600080fd5b506101da6004803603602081101561036c57600080fd5b50356001600160a01b03166109c7565b34801561038857600080fd5b506101da610ac0565b34801561039d57600080fd5b50610265610b24565b600260005414156103fe576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260005561040b6106ec565b61041457600080fd5b60085460009061042a908363ffffffff610b2a16565b905080600554101561049957600061044d60055483610b8d90919063ffffffff16565b90506000610461848363ffffffff610b8d16565b905061047c6001600160a01b0386168363ffffffff610bcf16565b80935061049484600854610b2a90919063ffffffff16565b925050505b6003546000906104c7906104bb85670de0b6b3a764000063ffffffff610cb916565b9063ffffffff610d1216565b6006546040805163a9059cbb60e01b81526001600160a01b03888116600483015260248201859052915193945091169163a9059cbb916044808201926020929091908290030181600087803b15801561051f57600080fd5b505af1158015610533573d6000803e3d6000fd5b505050506040513d602081101561054957600080fd5b505161059c576040805162461bcd60e51b815260206004820152601f60248201527f50696e6b736c697053616c653a204572726f72207472616e73666572696e6700604482015290519081900360640190fd5b604080516001600160a01b03861681526020810183905280820185905290517fa8ff15eb642b39da3ab82bb74a87b76cc3e1aef2b82b70bc2a35458386db29aa9181900360600190a16001600160a01b03841660009081526002602052604090205461060e908463ffffffff610b2a16565b6001600160a01b0380861660009081526002602052604090209190915560075461063f91168463ffffffff610bcf16565b600854610652908463ffffffff610b2a16565b600855600954610668908263ffffffff610b2a16565b600955505060016000555050565b61067e610d54565b6001546001600160a01b039081169116146106ce576040805162461bcd60e51b81526020600482018190526024820152600080516020610ed6833981519152604482015290519081900360640190fd5b600b805460ff19166001179055565b6006546001600160a01b031690565b60006005546008541080156107045750600b5460ff16155b905090565b4290565b60045481565b61071b610d54565b6001546001600160a01b0390811691161461076b576040805162461bcd60e51b81526020600482018190526024820152600080516020610ed6833981519152604482015290519081900360640190fd5b6001546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600180546001600160a01b0319169055565b60035481565b6001546001600160a01b031690565b60095481565b60026000541415610828576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600055610835610d54565b6001546001600160a01b03908116911614610885576040805162461bcd60e51b81526020600482018190526024820152600080516020610ed6833981519152604482015290519081900360640190fd5b600654600754604080516370a0823160e01b815230600482015290516001600160a01b039384169363a9059cbb93169184916370a0823191602480820192602092909190829003018186803b1580156108dd57600080fd5b505afa1580156108f1573d6000803e3d6000fd5b505050506040513d602081101561090757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b15801561095857600080fd5b505af115801561096c573d6000803e3d6000fd5b505050506040513d602081101561098257600080fd5b50506001600055565b600354600554600091610704916104bb90670de0b6b3a764000063ffffffff610cb916565b600a5481565b60085481565b600454600854101590565b6109cf610d54565b6001546001600160a01b03908116911614610a1f576040805162461bcd60e51b81526020600482018190526024820152600080516020610ed6833981519152604482015290519081900360640190fd5b6001600160a01b038116610a645760405162461bcd60e51b8152600401808060200182810382526026815260200180610e556026913960400191505060405180910390fd5b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b610ac8610d54565b6001546001600160a01b03908116911614610b18576040805162461bcd60e51b81526020600482018190526024820152600080516020610ed6833981519152604482015290519081900360640190fd5b600b805460ff19169055565b60055481565b600082820183811015610b84576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000610b8483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d58565b80471015610c24576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114610c6f576040519150601f19603f3d011682016040523d82523d6000602084013e610c74565b606091505b5050905080610cb45760405162461bcd60e51b815260040180806020018281038252603a815260200180610e7b603a913960400191505060405180910390fd5b505050565b600082610cc857506000610b87565b82820282848281610cd557fe5b0414610b845760405162461bcd60e51b8152600401808060200182810382526021815260200180610eb56021913960400191505060405180910390fd5b6000610b8483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610def565b3390565b60008184841115610de75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610dac578181015183820152602001610d94565b50505050905090810190601f168015610dd95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183610e3e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610dac578181015183820152602001610d94565b506000838581610e4a57fe5b049594505050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220d7d2ecbf304feabec7f502dec26943f307ccfe68f54dccded07bae44152285d064736f6c6343000605003300000000000000000000000036ce7a52cda404b8fa87a98d0d17ec7dd0b144ed0000000000000000000000003d25257fff1ab8449b804f21939380ede855ba4a
Deployed Bytecode
0x6080604052600436106101025760003560e01c80639106d7ba11610095578063e29eb83611610064578063e29eb8361461031f578063ec4cd0cf14610334578063f2fde38b14610349578063f8bd71c71461037c578063fb86a40414610391576101dc565b80639106d7ba146102cb578063b2ea088d146102e0578063bba8bd20146102f5578063be9a65551461030a576101dc565b80636385cbbe116100d15780636385cbbe14610277578063715018a61461028c5780638620410b146102a15780638da5cb5b146102b6576101dc565b806307da68f5146101e157806321df0da7146101f657806322f3e2d414610227578063557ed1ba14610250576101dc565b366101dc5767016345785d8a0000341015610164576040805162461bcd60e51b815260206004820152601960248201527f50696e6b736c697053616c653a204d696e20302e312045544800000000000000604482015290519081900360640190fd5b336000908152600260205260409020546729a2241af62c000010156101d0576040805162461bcd60e51b815260206004820152601760248201527f50696e6b736c697053616c653a204d696e203320455448000000000000000000604482015290519081900360640190fd5b6101da33346103a6565b005b600080fd5b3480156101ed57600080fd5b506101da610676565b34801561020257600080fd5b5061020b6106dd565b604080516001600160a01b039092168252519081900360200190f35b34801561023357600080fd5b5061023c6106ec565b604080519115158252519081900360200190f35b34801561025c57600080fd5b50610265610709565b60408051918252519081900360200190f35b34801561028357600080fd5b5061026561070d565b34801561029857600080fd5b506101da610713565b3480156102ad57600080fd5b506102656107b5565b3480156102c257600080fd5b5061020b6107bb565b3480156102d757600080fd5b506102656107ca565b3480156102ec57600080fd5b506101da6107d0565b34801561030157600080fd5b5061026561098b565b34801561031657600080fd5b506102656109b0565b34801561032b57600080fd5b506102656109b6565b34801561034057600080fd5b5061023c6109bc565b34801561035557600080fd5b506101da6004803603602081101561036c57600080fd5b50356001600160a01b03166109c7565b34801561038857600080fd5b506101da610ac0565b34801561039d57600080fd5b50610265610b24565b600260005414156103fe576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260005561040b6106ec565b61041457600080fd5b60085460009061042a908363ffffffff610b2a16565b905080600554101561049957600061044d60055483610b8d90919063ffffffff16565b90506000610461848363ffffffff610b8d16565b905061047c6001600160a01b0386168363ffffffff610bcf16565b80935061049484600854610b2a90919063ffffffff16565b925050505b6003546000906104c7906104bb85670de0b6b3a764000063ffffffff610cb916565b9063ffffffff610d1216565b6006546040805163a9059cbb60e01b81526001600160a01b03888116600483015260248201859052915193945091169163a9059cbb916044808201926020929091908290030181600087803b15801561051f57600080fd5b505af1158015610533573d6000803e3d6000fd5b505050506040513d602081101561054957600080fd5b505161059c576040805162461bcd60e51b815260206004820152601f60248201527f50696e6b736c697053616c653a204572726f72207472616e73666572696e6700604482015290519081900360640190fd5b604080516001600160a01b03861681526020810183905280820185905290517fa8ff15eb642b39da3ab82bb74a87b76cc3e1aef2b82b70bc2a35458386db29aa9181900360600190a16001600160a01b03841660009081526002602052604090205461060e908463ffffffff610b2a16565b6001600160a01b0380861660009081526002602052604090209190915560075461063f91168463ffffffff610bcf16565b600854610652908463ffffffff610b2a16565b600855600954610668908263ffffffff610b2a16565b600955505060016000555050565b61067e610d54565b6001546001600160a01b039081169116146106ce576040805162461bcd60e51b81526020600482018190526024820152600080516020610ed6833981519152604482015290519081900360640190fd5b600b805460ff19166001179055565b6006546001600160a01b031690565b60006005546008541080156107045750600b5460ff16155b905090565b4290565b60045481565b61071b610d54565b6001546001600160a01b0390811691161461076b576040805162461bcd60e51b81526020600482018190526024820152600080516020610ed6833981519152604482015290519081900360640190fd5b6001546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600180546001600160a01b0319169055565b60035481565b6001546001600160a01b031690565b60095481565b60026000541415610828576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600055610835610d54565b6001546001600160a01b03908116911614610885576040805162461bcd60e51b81526020600482018190526024820152600080516020610ed6833981519152604482015290519081900360640190fd5b600654600754604080516370a0823160e01b815230600482015290516001600160a01b039384169363a9059cbb93169184916370a0823191602480820192602092909190829003018186803b1580156108dd57600080fd5b505afa1580156108f1573d6000803e3d6000fd5b505050506040513d602081101561090757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b15801561095857600080fd5b505af115801561096c573d6000803e3d6000fd5b505050506040513d602081101561098257600080fd5b50506001600055565b600354600554600091610704916104bb90670de0b6b3a764000063ffffffff610cb916565b600a5481565b60085481565b600454600854101590565b6109cf610d54565b6001546001600160a01b03908116911614610a1f576040805162461bcd60e51b81526020600482018190526024820152600080516020610ed6833981519152604482015290519081900360640190fd5b6001600160a01b038116610a645760405162461bcd60e51b8152600401808060200182810382526026815260200180610e556026913960400191505060405180910390fd5b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b610ac8610d54565b6001546001600160a01b03908116911614610b18576040805162461bcd60e51b81526020600482018190526024820152600080516020610ed6833981519152604482015290519081900360640190fd5b600b805460ff19169055565b60055481565b600082820183811015610b84576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000610b8483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d58565b80471015610c24576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114610c6f576040519150601f19603f3d011682016040523d82523d6000602084013e610c74565b606091505b5050905080610cb45760405162461bcd60e51b815260040180806020018281038252603a815260200180610e7b603a913960400191505060405180910390fd5b505050565b600082610cc857506000610b87565b82820282848281610cd557fe5b0414610b845760405162461bcd60e51b8152600401808060200182810382526021815260200180610eb56021913960400191505060405180910390fd5b6000610b8483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610def565b3390565b60008184841115610de75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610dac578181015183820152602001610d94565b50505050905090810190601f168015610dd95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183610e3e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610dac578181015183820152602001610d94565b506000838581610e4a57fe5b049594505050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220d7d2ecbf304feabec7f502dec26943f307ccfe68f54dccded07bae44152285d064736f6c63430006050033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000036ce7a52cda404b8fa87a98d0d17ec7dd0b144ed0000000000000000000000003d25257fff1ab8449b804f21939380ede855ba4a
-----Decoded View---------------
Arg [0] : _token (address): 0x36CE7a52CDa404b8fa87a98d0d17EC7dd0B144ED
Arg [1] : _fundingAddress (address): 0x3d25257Fff1AB8449B804f21939380eDe855bA4a
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000036ce7a52cda404b8fa87a98d0d17ec7dd0b144ed
Arg [1] : 0000000000000000000000003d25257fff1ab8449b804f21939380ede855ba4a
Deployed Bytecode Sourcemap
20456:3457:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21589:18;21576:9;:31;;21568:69;;;;;-1:-1:-1;;;21568:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21669:10;21656:24;;;;:12;:24;;;;;;21684:19;-1:-1:-1;21656:47:0;21648:83;;;;;-1:-1:-1;;;21648:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21742:27;21747:10;21759:9;21742:4;:27::i;:::-;20456:3457;;12:1:-1;9;2:12;23096:81:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23096:81:0;;;:::i;21402:120::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21402:120:0;;;:::i;:::-;;;;-1:-1:-1;;;;;21402:120:0;;;;;;;;;;;;;;23555:136;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23555:136:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;23448:101;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23448:101:0;;;:::i;:::-;;;;;;;;;;;;;;;;20669:26;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20669:26:0;;;:::i;10915:148::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10915:148:0;;;:::i;20639:23::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20639:23:0;;;:::i;10273:79::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10273:79:0;;;:::i;20952:24::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20952:24:0;;;:::i;23273:169::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23273:169:0;;;:::i;22963:127::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22963:127:0;;;:::i;20983:20::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20983:20:0;;;:::i;20916:29::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20916:29:0;;;:::i;23697:135::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23697:135:0;;;:::i;11218:244::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11218:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;11218:244:0;-1:-1:-1;;;;;11218:244:0;;:::i;23183:84::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23183:84:0;;;:::i;20702:22::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20702:22:0;;;:::i;21785:1172::-;7182:1;7788:7;;:19;;7780:63;;;;;-1:-1:-1;;;7780:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7182:1;7921:7;:18;23883:10:::1;:8;:10::i;:::-;23875:19;;12:1:-1;9::::0;2:12:::1;23875:19:0;21948:14:::2;::::0;21920:25:::2;::::0;21948:26:::2;::::0;21967:6;21948:26:::2;:18;:26;:::i;:::-;21920:54;;22001:17;21991:7;;:27;21987:338;;;22086:14;22103:30;22125:7;;22103:17;:21;;:30;;;;:::i;:::-;22086:47:::0;-1:-1:-1;22148:12:0::2;22163:18;:6:::0;22086:47;22163:18:::2;:10;:18;:::i;:::-;22148:33:::0;-1:-1:-1;22196:28:0::2;-1:-1:-1::0;;;;;22196:20:0;::::2;22217:6:::0;22196:28:::2;:20;:28;:::i;:::-;22248:4;22239:13;;22287:26;22306:6;22287:14;;:18;;:26;;;;:::i;:::-;22267:46;;21987:338;;;22431:8;::::0;22372:18:::2;::::0;22393:47:::2;::::0;:33:::2;22394:6:::0;22406:19;22393:33:::2;:12;:33;:::i;:::-;:37:::0;:47:::2;:37;:47;:::i;:::-;22490:14;::::0;:47:::2;::::0;;-1:-1:-1;;;22490:47:0;;-1:-1:-1;;;;;22490:47:0;;::::2;;::::0;::::2;::::0;;;;;;;;;22372:68;;-1:-1:-1;22490:14:0;::::2;::::0;:23:::2;::::0;:47;;;;;::::2;::::0;;;;;;;;;:14:::2;::::0;:47;::::2;;2:2:-1::0;::::2;;;27:1;24::::0;17:12:::2;2:2;22490:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;22490:47:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::2;4:2;-1:-1:::0;22490:47:0;22482:91:::2;;;::::0;;-1:-1:-1;;;22482:91:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;22591:41;::::0;;-1:-1:-1;;;;;22591:41:0;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;;;;::::2;::::0;;;;;;;::::2;-1:-1:-1::0;;;;;22702:24:0;::::2;;::::0;;;:12:::2;:24;::::0;;;;;:36:::2;::::0;22731:6;22702:36:::2;:28;:36;:::i;:::-;-1:-1:-1::0;;;;;22675:24:0;;::::2;;::::0;;;:12:::2;:24;::::0;;;;:63;;;;22751:14:::2;::::0;:32:::2;::::0;:14:::2;22776:6:::0;22751:32:::2;:24;:32;:::i;:::-;22842:14;::::0;:26:::2;::::0;22861:6;22842:26:::2;:18;:26;:::i;:::-;22825:14;:43:::0;22924:9:::2;::::0;:25:::2;::::0;22938:10;22924:25:::2;:13;:25;:::i;:::-;22912:9;:37:::0;-1:-1:-1;;7138:1:0;8100:7;:22;-1:-1:-1;;21785:1172:0:o;23096:81::-;10495:12;:10;:12::i;:::-;10485:6;;-1:-1:-1;;;;;10485:6:0;;;:22;;;10477:67;;;;;-1:-1:-1;;;10477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;;;23157:7:::1;:14:::0;;-1:-1:-1;;23157:14:0::1;23167:4;23157:14;::::0;;23096:81::o;21402:120::-;21499:14;;-1:-1:-1;;;;;21499:14:0;21402:120;:::o;23555:136::-;23610:4;23659:7;;23642:14;;:24;:36;;;;-1:-1:-1;23671:7:0;;;;23670:8;23642:36;23626:59;;23555:136;:::o;23448:101::-;23528:15;23448:101;:::o;20669:26::-;;;;:::o;10915:148::-;10495:12;:10;:12::i;:::-;10485:6;;-1:-1:-1;;;;;10485:6:0;;;:22;;;10477:67;;;;;-1:-1:-1;;;10477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;;;11006:6:::1;::::0;10985:40:::1;::::0;11022:1:::1;::::0;-1:-1:-1;;;;;11006:6:0::1;::::0;10985:40:::1;::::0;11022:1;;10985:40:::1;11036:6;:19:::0;;-1:-1:-1;;;;;;11036:19:0::1;::::0;;10915:148::o;20639:23::-;;;;:::o;10273:79::-;10338:6;;-1:-1:-1;;;;;10338:6:0;10273:79;:::o;20952:24::-;;;;:::o;23273:169::-;7182:1;7788:7;;:19;;7780:63;;;;;-1:-1:-1;;;7780:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7182:1;7921:7;:18;10495:12:::1;:10;:12::i;:::-;10485:6;::::0;-1:-1:-1;;;;;10485:6:0;;::::1;:22:::0;::::1;;10477:67;;;::::0;;-1:-1:-1;;;10477:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;::::1;;23356:14:::2;::::0;23380::::2;::::0;23396:39:::2;::::0;;-1:-1:-1;;;23396:39:0;;23429:4:::2;23396:39;::::0;::::2;::::0;;;-1:-1:-1;;;;;23356:14:0;;::::2;::::0;:23:::2;::::0;23380:14:::2;::::0;23356;;23396:24:::2;::::0;:39;;;;;::::2;::::0;;;;;;;;;23356:14;23396:39;::::2;;2:2:-1::0;::::2;;;27:1;24::::0;17:12:::2;2:2;23396:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;23396:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::2;4:2;-1:-1:::0;23396:39:0;23356:80:::2;::::0;;-1:-1:-1;;;;;;23356:80:0::2;::::0;;;;;;-1:-1:-1;;;;;23356:80:0;;::::2;;::::0;::::2;::::0;;;;;;;;;;;;;;23396:39:::2;::::0;23356:80;;;;;;;-1:-1:-1;23356:80:0;;::::2;;2:2:-1::0;::::2;;;27:1;24::::0;17:12:::2;2:2;23356:80:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;23356:80:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::2;4:2;-1:-1:::0;;7138:1:0;8100:7;:22;23273:169::o;22963:127::-;23075:8;;23038:7;;23015;;23038:46;;:32;;23050:19;23038:32;:11;:32;:::i;20983:20::-;;;;:::o;20916:29::-;;;;:::o;23697:135::-;23808:11;;23790:14;;:29;;23697:135;:::o;11218:244::-;10495:12;:10;:12::i;:::-;10485:6;;-1:-1:-1;;;;;10485:6:0;;;:22;;;10477:67;;;;;-1:-1:-1;;;10477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11307:22:0;::::1;11299:73;;;;-1:-1:-1::0;;;11299:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11409:6;::::0;11388:38:::1;::::0;-1:-1:-1;;;;;11388:38:0;;::::1;::::0;11409:6:::1;::::0;11388:38:::1;::::0;11409:6:::1;::::0;11388:38:::1;11437:6;:17:::0;;-1:-1:-1;;;;;;11437:17:0::1;-1:-1:-1::0;;;;;11437:17:0;;;::::1;::::0;;;::::1;::::0;;11218:244::o;23183:84::-;10495:12;:10;:12::i;:::-;10485:6;;-1:-1:-1;;;;;10485:6:0;;;:22;;;10477:67;;;;;-1:-1:-1;;;10477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;;;23246:7:::1;:15:::0;;-1:-1:-1;;23246:15:0::1;::::0;;23183:84::o;20702:22::-;;;;:::o;956:181::-;1014:7;1046:5;;;1070:6;;;;1062:46;;;;;-1:-1:-1;;;1062:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1128:1;-1:-1:-1;956:181:0;;;;;:::o;1420:136::-;1478:7;1505:43;1509:1;1512;1505:43;;;;;;;;;;;;;;;;;:3;:43::i;16457:397::-;16572:6;16547:21;:31;;16539:73;;;;;-1:-1:-1;;;16539:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16722:35;;16704:12;;-1:-1:-1;;;;;16722:14:0;;;16745:6;;16704:12;16722:35;16704:12;16722:35;16745:6;16722:14;:35;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;16703:54:0;;;16776:7;16768:78;;;;-1:-1:-1;;;16768:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16457:397;;;:::o;2310:471::-;2368:7;2613:6;2609:47;;-1:-1:-1;2643:1:0;2636:8;;2609:47;2680:5;;;2684:1;2680;:5;:1;2704:5;;;;;:10;2696:56;;;;-1:-1:-1;;;2696:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3257:132;3315:7;3342:39;3346:1;3349;3342:39;;;;;;;;;;;;;;;;;:3;:39::i;8794:106::-;8882:10;8794:106;:::o;1859:192::-;1945:7;1981:12;1973:6;;;;1965:29;;;;-1:-1:-1;;;1965:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1965:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2017:5:0;;;1859:192::o;3885:278::-;3971:7;4006:12;3999:5;3991:28;;;;-1:-1:-1;;;3991:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;3991:28:0;;4030:9;4046:1;4042;:5;;;;;;;3885:278;-1:-1:-1;;;;;3885:278:0:o
Swarm Source
ipfs://d7d2ecbf304feabec7f502dec26943f307ccfe68f54dccded07bae44152285d0
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.