ERC-20
Overview
Max Total Supply
10,000,000 WING
Holders
109
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,351.95421883904741405 WINGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WingsToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-08-04 */ // . // .. // . .. // . .., // .. ...* // , ., ...,/ // ,., ,.,...,***. // *,/,.....,,*/ // /*,,,,,,,,,*/ // #**,.,,,,//( // #*,,,**/(//**,,**,**// // ./**/(****, .,/*******,*/**/* // ///******,,,,,,,,,,,*,*******//(( // #(((///*********////*******//*//(% // #((/(((/((/**///////*/*(((/(/(##/ // %####((((#(((#(((/(#######%% // (_) // __ ___ _ __ __ _ ___ // \ \ /\ / / | '_ \ / _` / __| // \ V V /| | | | | (_| \__ \ // \_/\_/ |_|_| |_|\__, |___/ // __/ | // |___/ pragma solidity 0.6.12; /* * @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; } } // /** * @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); } // /** * @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; } } // /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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); } } } } // /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // /** * @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; } } // interface IUniswapV2Pair { function sync() external; } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract WingsToken is ERC20, Ownable { using SafeMath for uint256; // BAKE uint256 public lastBakeTime; uint256 public totalBaked; uint256 public constant BAKE_RATE = 5; // bake rate per day (5%) uint256 public constant BAKE_REWARD = 1; // REWARDS uint256 public constant POOL_REWARD = 48; uint256 public lastRewardTime; uint256 public rewardPool; mapping (address => uint256) public claimedRewards; mapping (address => uint256) public unclaimedRewards; // mapping of top holders that owner update before paying out rewards mapping (uint256 => address) public topHolder; // maximum of top topHolder uint256 public constant MAX_TOP_HOLDERS = 50; uint256 internal totalTopHolders; // Pause for allowing tokens to only become transferable at the end of sale address public pauser; bool public paused; // UNISWAP ERC20 internal WETH = ERC20(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); IUniswapV2Factory public uniswapFactory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); address public uniswapPool; // MODIFIERS modifier onlyPauser() { require(pauser == _msgSender(), "Wings: caller is not the pauser."); _; } modifier whenNotPaused() { require(!paused, "Wings: paused"); _; } modifier when3DaysBetweenLastSnapshot() { require((now - lastRewardTime) >= 3 days, "Wings: not enough days since last snapshot taken."); _; } // EVENTS event PoolBaked(address tender, uint256 bakeAmount, uint256 newTotalSupply, uint256 newUniswapPoolSupply, uint256 userReward, uint256 newPoolReward); event PayoutSnapshotTaken(uint256 totalTopHolders, uint256 totalPayout, uint256 snapshot); event PayoutClaimed(address indexed topHolderAddress, uint256 claimedReward); constructor(uint256 initialSupply, address new_owner) public Ownable() ERC20("Wings", "WING") { uint mint_amount = initialSupply * 10 ** uint(decimals()); _mint(new_owner, mint_amount); setPauser(new_owner); paused = true; transferOwnership(new_owner); } function setUniswapPool() external onlyOwner { require(uniswapPool == address(0), "Wings: pool already created"); uniswapPool = uniswapFactory.createPair(address(WETH), address(this)); } // PAUSE function setPauser(address newPauser) public onlyOwner { require(newPauser != address(0), "Wings: pauser is the zero address."); pauser = newPauser; } function unpause() external onlyPauser { paused = false; // Start baking lastBakeTime = now; lastRewardTime = now; rewardPool = 0; } // TOKEN TRANSFER HOOK function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused || msg.sender == pauser, "Wings: token transfer while paused and not pauser role."); } // BAKERS function getInfoFor(address addr) public view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256, uint256, uint256) { return ( balanceOf(addr), claimedRewards[addr], balanceOf(uniswapPool), _totalSupply, totalBaked, getBakeAmount(), lastBakeTime, lastRewardTime, rewardPool ); } function bakePool() external { uint256 bakeAmount = getBakeAmount(); require(bakeAmount >= 1 * 1e18, "bakePool: min bake amount not reached."); // Reset last bake time lastBakeTime = now; uint256 userReward = bakeAmount.mul(BAKE_REWARD).div(100); uint256 poolReward = bakeAmount.mul(POOL_REWARD).div(100); uint256 finalBake = bakeAmount.sub(userReward).sub(poolReward); _totalSupply = _totalSupply.sub(finalBake); _balances[uniswapPool] = _balances[uniswapPool].sub(bakeAmount); totalBaked = totalBaked.add(finalBake); rewardPool = rewardPool.add(poolReward); _balances[msg.sender] = _balances[msg.sender].add(userReward); IUniswapV2Pair(uniswapPool).sync(); emit PoolBaked(msg.sender, bakeAmount, _totalSupply, balanceOf(uniswapPool), userReward, poolReward); } function getBakeAmount() public view returns (uint256) { if (paused) return 0; uint256 timeBetweenLastBake = now - lastBakeTime; uint256 tokensInUniswapPool = balanceOf(uniswapPool); uint256 dayInSeconds = 1 days; return (tokensInUniswapPool.mul(BAKE_RATE) .mul(timeBetweenLastBake)) .div(dayInSeconds) .div(100); } // Rewards function updateTopHolders(address[] calldata holders) external onlyOwner when3DaysBetweenLastSnapshot { totalTopHolders = holders.length < MAX_TOP_HOLDERS ? holders.length : MAX_TOP_HOLDERS; // Calculate payout and take snapshot uint256 toPayout = rewardPool.div(totalTopHolders); uint256 totalPayoutSent = rewardPool; for (uint256 i = 0; i < totalTopHolders; i++) { unclaimedRewards[holders[i]] = unclaimedRewards[holders[i]].add(toPayout); } // Reset rewards pool lastRewardTime = now; rewardPool = 0; emit PayoutSnapshotTaken(totalTopHolders, totalPayoutSent, now); } function claimRewards() external { require(unclaimedRewards[msg.sender] > 0, "Wings: nothing left to claim."); uint256 unclaimedReward = unclaimedRewards[msg.sender]; unclaimedRewards[msg.sender] = 0; claimedRewards[msg.sender] = claimedRewards[msg.sender].add(unclaimedReward); _balances[msg.sender] = _balances[msg.sender].add(unclaimedReward); emit PayoutClaimed(msg.sender, unclaimedReward); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"new_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"topHolderAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"claimedReward","type":"uint256"}],"name":"PayoutClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalTopHolders","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalPayout","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"snapshot","type":"uint256"}],"name":"PayoutSnapshotTaken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tender","type":"address"},{"indexed":false,"internalType":"uint256","name":"bakeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUniswapPoolSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"userReward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPoolReward","type":"uint256"}],"name":"PoolBaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BAKE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BAKE_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOP_HOLDERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POOL_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bakePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBakeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getInfoFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastBakeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPauser","type":"address"}],"name":"setPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUniswapPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"topHolder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unclaimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"}],"name":"updateTopHolders","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bb57600080fd5b5060405162003b0638038062003b0683398181016040526040811015620000e157600080fd5b8101908080519060200190929190805190602001909291905050506040518060400160405280600581526020017f57696e67730000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f57494e470000000000000000000000000000000000000000000000000000000081525081600390805190602001906200018092919062000a00565b5080600490805190602001906200019992919062000a00565b506012600560006101000a81548160ff021916908360ff16021790555050506000620001ca620002dd60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060006200027b620002e560201b60201c565b60ff16600a0a83029050620002978282620002fc60201b60201c565b620002a882620004da60201b60201c565b6001600e60146101000a81548160ff021916908315150217905550620002d4826200067960201b60201c565b50505062000aa6565b600033905090565b6000600560009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620003b4600083836200089460201b60201c565b620003d0816002546200097260201b620024e81790919060201c565b6002819055506200042e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200097260201b620024e81790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620004ea620002dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620005ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062003ae46022913960400191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b62000689620002dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200074c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620007d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018062003a876026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620008ac838383620009fb60201b620025701760201c565b600e60149054906101000a900460ff161580620009165750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6200096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018062003aad6037913960400191505060405180910390fd5b505050565b600080828401905083811015620009f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a4357805160ff191683800117855562000a74565b8280016001018555821562000a74579182015b8281111562000a7357825182559160200191906001019062000a56565b5b50905062000a83919062000a87565b5090565b5b8082111562000aa257600081600090555060010162000a88565b5090565b612fd18062000ab66000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063697ef9eb11610130578063a457c2d7116100b8578063bdd3d8251161007c578063bdd3d82514610a06578063dd62ed3e14610a3a578063e84657d414610ab2578063f2fde38b14610abc578063f92e096214610b0057610227565b8063a457c2d71461084f578063a85c6d72146108b3578063a9059cbb1461092c578063bc78687614610990578063bd834345146109ae57610227565b80638da5cb5b116100ff5780638da5cb5b146106ee5780639231cf7414610722578063949813b81461074057806395d89b41146107985780639fd0506d1461081b57610227565b8063697ef9eb1461064e57806370a0823114610658578063715018a6146106b05780638bdb2afa146106ba57610227565b8063372500ab116101b3578063484c51ba11610182578063484c51ba146105445780635c975abb14610562578063647fbcfd1461058257806366666aa9146105a057806368f414ae146105be57610227565b8063372500ab14610474578063395093511461047e5780633f4ba83a146104e2578063440c96e4146104ec57610227565b806319fd7886116101fa57806319fd78861461034f57806323b872dd1461036d5780632b5b6f1f146103f15780632d88af4a1461040f578063313ce5671461045357610227565b8063019e4d531461022c57806306fdde031461024a578063095ea7b3146102cd57806318160ddd14610331575b600080fd5b610234610b1e565b6040518082815260200191505060405180910390f35b610252610b23565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610292578082015181840152602081019050610277565b50505050905090810190601f1680156102bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610319600480360360408110156102e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bc5565b60405180821515815260200191505060405180910390f35b610339610be3565b6040518082815260200191505060405180910390f35b610357610bed565b6040518082815260200191505060405180910390f35b6103d96004803603606081101561038357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bf2565b60405180821515815260200191505060405180910390f35b6103f9610ccb565b6040518082815260200191505060405180910390f35b6104516004803603602081101561042557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cd0565b005b61045b610e64565b604051808260ff16815260200191505060405180910390f35b61047c610e7b565b005b6104ca6004803603604081101561049457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611132565b60405180821515815260200191505060405180910390f35b6104ea6111e5565b005b6105186004803603602081101561050257600080fd5b81019080803590602001909291905050506112e2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61054c611315565b6040518082815260200191505060405180910390f35b61056a61131b565b60405180821515815260200191505060405180910390f35b61058a61132e565b6040518082815260200191505060405180910390f35b6105a8611334565b6040518082815260200191505060405180910390f35b610600600480360360208110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061133a565b604051808a8152602001898152602001888152602001878152602001868152602001858152602001848152602001838152602001828152602001995050505050505050505060405180910390f35b6106566113f2565b005b61069a6004803603602081101561066e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117c9565b6040518082815260200191505060405180910390f35b6106b8611811565b005b6106c261199c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106f66119c2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61072a6119ec565b6040518082815260200191505060405180910390f35b6107826004803603602081101561075657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119f2565b6040518082815260200191505060405180910390f35b6107a0611a0a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107e05780820151818401526020810190506107c5565b50505050905090810190601f16801561080d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610823611aac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61089b6004803603604081101561086557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ad2565b60405180821515815260200191505060405180910390f35b61092a600480360360208110156108c957600080fd5b81019080803590602001906401000000008111156108e657600080fd5b8201836020820111156108f857600080fd5b8035906020019184602083028401116401000000008311171561091a57600080fd5b9091929391929390505050611b9f565b005b6109786004803603604081101561094257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e66565b60405180821515815260200191505060405180910390f35b610998611e84565b6040518082815260200191505060405180910390f35b6109f0600480360360208110156109c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f38565b6040518082815260200191505060405180910390f35b610a0e611f50565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a9c60048036036040811015610a5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f76565b6040518082815260200191505060405180910390f35b610aba611ffd565b005b610afe60048036036020811015610ad257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122d3565b005b610b086124e3565b6040518082815260200191505060405180910390f35b600581565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bbb5780601f10610b9057610100808354040283529160200191610bbb565b820191906000526020600020905b815481529060010190602001808311610b9e57829003601f168201915b5050505050905090565b6000610bd9610bd2612575565b848461257d565b6001905092915050565b6000600254905090565b603281565b6000610bff848484612774565b610cc084610c0b612575565b610cbb85604051806060016040528060288152602001612ee460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c71612575565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a359092919063ffffffff16565b61257d565b600190509392505050565b600181565b610cd8612575565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612f556022913960400191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900460ff16905090565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f57696e67733a206e6f7468696e67206c65667420746f20636c61696d2e00000081525060200191505060405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061100b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061109f816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167fec68461f5d4cc45c89e914cb8826a966c73dd35e5f97815ece0a01ffa4a025a6826040518082815260200191505060405180910390a250565b60006111db61113f612575565b846111d68560016000611150612575565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b61257d565b6001905092915050565b6111ed612575565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f57696e67733a2063616c6c6572206973206e6f7420746865207061757365722e81525060200191505060405180910390fd5b6000600e60146101000a81548160ff02191690831515021790555042600681905550426008819055506000600981905550565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065481565b600e60149054906101000a900460ff1681565b60075481565b60095481565b60008060008060008060008060006113518a6117c9565b600a60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113bc601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117c9565b6002546007546113ca611e84565b6006546008546009549850985098509850985098509850985098509193959799909294969850565b60006113fc611e84565b9050670de0b6b3a764000081101561145f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612dc76026913960400191505060405180910390fd5b42600681905550600061148f6064611481600185612af590919063ffffffff16565b612b7b90919063ffffffff16565b905060006114ba60646114ac603086612af590919063ffffffff16565b612b7b90919063ffffffff16565b905060006114e3826114d58587612bc590919063ffffffff16565b612bc590919063ffffffff16565b90506114fa81600254612bc590919063ffffffff16565b60028190555061157384600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bc590919063ffffffff16565b600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115ec816007546124e890919063ffffffff16565b600781905550611607826009546124e890919063ffffffff16565b60098190555061165e836000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561170a57600080fd5b505af115801561171e573d6000803e3d6000fd5b505050507f7e6881e93d619ac25d138b777503d6a4597128e87c89a1afe76cd59f4a08e21e3385600254611773601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117c9565b8787604051808773ffffffffffffffffffffffffffffffffffffffff168152602001868152602001858152602001848152602001838152602001828152602001965050505050505060405180910390a150505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611819612575565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b600b6020528060005260406000206000915090505481565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611aa25780601f10611a7757610100808354040283529160200191611aa2565b820191906000526020600020905b815481529060010190602001808311611a8557829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611b95611adf612575565b84611b9085604051806060016040528060258152602001612f776025913960016000611b09612575565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a359092919063ffffffff16565b61257d565b6001905092915050565b611ba7612575565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c69576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6203f48060085442031015611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180612e5b6031913960400191505060405180910390fd5b60328282905010611cdb576032611ce0565b818190505b600d819055506000611cff600d54600954612b7b90919063ffffffff16565b90506000600954905060005b600d54811015611e0757611d8f83600b6000888886818110611d2957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b600b6000878785818110611d9f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050611d0b565b504260088190555060006009819055507f1f940d966833560298ca6713905ac7f22fed6550884a6c444adb3b1066e0cefd600d54824260405180848152602001838152602001828152602001935050505060405180910390a150505050565b6000611e7a611e73612575565b8484612774565b6001905092915050565b6000600e60149054906101000a900460ff1615611ea45760009050611f35565b6000600654420390506000611eda601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117c9565b90506000620151809050611f2f6064611f2183611f1387611f05600589612af590919063ffffffff16565b612af590919063ffffffff16565b612b7b90919063ffffffff16565b612b7b90919063ffffffff16565b93505050505b90565b600a6020528060005260406000206000915090505481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612005612575565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f57696e67733a20706f6f6c20616c72656164792063726561746564000000000081525060200191505060405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c65396600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b15801561225657600080fd5b505af115801561226a573d6000803e3d6000fd5b505050506040513d602081101561228057600080fd5b8101908080519060200190929190505050601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6122db612575565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461239d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612423576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612ded6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b603081565b600080828401905083811015612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612603576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612f316024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612e136022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612f0c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612da46023913960400191505060405180910390fd5b61288b838383612c0f565b6128f681604051806060016040528060268152602001612e35602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a359092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612989816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612ae2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612aa7578082015181840152602081019050612a8c565b50505050905090810190601f168015612ad45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831415612b085760009050612b75565b6000828402905082848281612b1957fe5b0414612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612e8c6021913960400191505060405180910390fd5b809150505b92915050565b6000612bbd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612cdd565b905092915050565b6000612c0783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a35565b905092915050565b612c1a838383612570565b600e60149054906101000a900460ff161580612c835750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180612ead6037913960400191505060405180910390fd5b505050565b60008083118290612d89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d4e578082015181840152602081019050612d33565b50505050905090810190601f168015612d7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612d9557fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737362616b65506f6f6c3a206d696e2062616b6520616d6f756e74206e6f7420726561636865642e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636557696e67733a206e6f7420656e6f75676820646179732073696e6365206c61737420736e617073686f742074616b656e2e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757696e67733a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357696e67733a2070617573657220697320746865207a65726f20616464726573732e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c299c2748081e8660d7cedea616f3517162092824659c3c1b3acd66739e6854964736f6c634300060c00334f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737357696e67733a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e57696e67733a2070617573657220697320746865207a65726f20616464726573732e0000000000000000000000000000000000000000000000000000000000989680000000000000000000000000eb7bed59fee1d44229791bba88d47bfded750e7d
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102275760003560e01c8063697ef9eb11610130578063a457c2d7116100b8578063bdd3d8251161007c578063bdd3d82514610a06578063dd62ed3e14610a3a578063e84657d414610ab2578063f2fde38b14610abc578063f92e096214610b0057610227565b8063a457c2d71461084f578063a85c6d72146108b3578063a9059cbb1461092c578063bc78687614610990578063bd834345146109ae57610227565b80638da5cb5b116100ff5780638da5cb5b146106ee5780639231cf7414610722578063949813b81461074057806395d89b41146107985780639fd0506d1461081b57610227565b8063697ef9eb1461064e57806370a0823114610658578063715018a6146106b05780638bdb2afa146106ba57610227565b8063372500ab116101b3578063484c51ba11610182578063484c51ba146105445780635c975abb14610562578063647fbcfd1461058257806366666aa9146105a057806368f414ae146105be57610227565b8063372500ab14610474578063395093511461047e5780633f4ba83a146104e2578063440c96e4146104ec57610227565b806319fd7886116101fa57806319fd78861461034f57806323b872dd1461036d5780632b5b6f1f146103f15780632d88af4a1461040f578063313ce5671461045357610227565b8063019e4d531461022c57806306fdde031461024a578063095ea7b3146102cd57806318160ddd14610331575b600080fd5b610234610b1e565b6040518082815260200191505060405180910390f35b610252610b23565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610292578082015181840152602081019050610277565b50505050905090810190601f1680156102bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610319600480360360408110156102e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bc5565b60405180821515815260200191505060405180910390f35b610339610be3565b6040518082815260200191505060405180910390f35b610357610bed565b6040518082815260200191505060405180910390f35b6103d96004803603606081101561038357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bf2565b60405180821515815260200191505060405180910390f35b6103f9610ccb565b6040518082815260200191505060405180910390f35b6104516004803603602081101561042557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cd0565b005b61045b610e64565b604051808260ff16815260200191505060405180910390f35b61047c610e7b565b005b6104ca6004803603604081101561049457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611132565b60405180821515815260200191505060405180910390f35b6104ea6111e5565b005b6105186004803603602081101561050257600080fd5b81019080803590602001909291905050506112e2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61054c611315565b6040518082815260200191505060405180910390f35b61056a61131b565b60405180821515815260200191505060405180910390f35b61058a61132e565b6040518082815260200191505060405180910390f35b6105a8611334565b6040518082815260200191505060405180910390f35b610600600480360360208110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061133a565b604051808a8152602001898152602001888152602001878152602001868152602001858152602001848152602001838152602001828152602001995050505050505050505060405180910390f35b6106566113f2565b005b61069a6004803603602081101561066e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117c9565b6040518082815260200191505060405180910390f35b6106b8611811565b005b6106c261199c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106f66119c2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61072a6119ec565b6040518082815260200191505060405180910390f35b6107826004803603602081101561075657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119f2565b6040518082815260200191505060405180910390f35b6107a0611a0a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107e05780820151818401526020810190506107c5565b50505050905090810190601f16801561080d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610823611aac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61089b6004803603604081101561086557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ad2565b60405180821515815260200191505060405180910390f35b61092a600480360360208110156108c957600080fd5b81019080803590602001906401000000008111156108e657600080fd5b8201836020820111156108f857600080fd5b8035906020019184602083028401116401000000008311171561091a57600080fd5b9091929391929390505050611b9f565b005b6109786004803603604081101561094257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e66565b60405180821515815260200191505060405180910390f35b610998611e84565b6040518082815260200191505060405180910390f35b6109f0600480360360208110156109c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f38565b6040518082815260200191505060405180910390f35b610a0e611f50565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a9c60048036036040811015610a5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f76565b6040518082815260200191505060405180910390f35b610aba611ffd565b005b610afe60048036036020811015610ad257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122d3565b005b610b086124e3565b6040518082815260200191505060405180910390f35b600581565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bbb5780601f10610b9057610100808354040283529160200191610bbb565b820191906000526020600020905b815481529060010190602001808311610b9e57829003601f168201915b5050505050905090565b6000610bd9610bd2612575565b848461257d565b6001905092915050565b6000600254905090565b603281565b6000610bff848484612774565b610cc084610c0b612575565b610cbb85604051806060016040528060288152602001612ee460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c71612575565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a359092919063ffffffff16565b61257d565b600190509392505050565b600181565b610cd8612575565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612f556022913960400191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900460ff16905090565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f57696e67733a206e6f7468696e67206c65667420746f20636c61696d2e00000081525060200191505060405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061100b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061109f816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167fec68461f5d4cc45c89e914cb8826a966c73dd35e5f97815ece0a01ffa4a025a6826040518082815260200191505060405180910390a250565b60006111db61113f612575565b846111d68560016000611150612575565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b61257d565b6001905092915050565b6111ed612575565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f57696e67733a2063616c6c6572206973206e6f7420746865207061757365722e81525060200191505060405180910390fd5b6000600e60146101000a81548160ff02191690831515021790555042600681905550426008819055506000600981905550565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065481565b600e60149054906101000a900460ff1681565b60075481565b60095481565b60008060008060008060008060006113518a6117c9565b600a60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113bc601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117c9565b6002546007546113ca611e84565b6006546008546009549850985098509850985098509850985098509193959799909294969850565b60006113fc611e84565b9050670de0b6b3a764000081101561145f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612dc76026913960400191505060405180910390fd5b42600681905550600061148f6064611481600185612af590919063ffffffff16565b612b7b90919063ffffffff16565b905060006114ba60646114ac603086612af590919063ffffffff16565b612b7b90919063ffffffff16565b905060006114e3826114d58587612bc590919063ffffffff16565b612bc590919063ffffffff16565b90506114fa81600254612bc590919063ffffffff16565b60028190555061157384600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bc590919063ffffffff16565b600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115ec816007546124e890919063ffffffff16565b600781905550611607826009546124e890919063ffffffff16565b60098190555061165e836000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561170a57600080fd5b505af115801561171e573d6000803e3d6000fd5b505050507f7e6881e93d619ac25d138b777503d6a4597128e87c89a1afe76cd59f4a08e21e3385600254611773601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117c9565b8787604051808773ffffffffffffffffffffffffffffffffffffffff168152602001868152602001858152602001848152602001838152602001828152602001965050505050505060405180910390a150505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611819612575565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b600b6020528060005260406000206000915090505481565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611aa25780601f10611a7757610100808354040283529160200191611aa2565b820191906000526020600020905b815481529060010190602001808311611a8557829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611b95611adf612575565b84611b9085604051806060016040528060258152602001612f776025913960016000611b09612575565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a359092919063ffffffff16565b61257d565b6001905092915050565b611ba7612575565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c69576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6203f48060085442031015611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180612e5b6031913960400191505060405180910390fd5b60328282905010611cdb576032611ce0565b818190505b600d819055506000611cff600d54600954612b7b90919063ffffffff16565b90506000600954905060005b600d54811015611e0757611d8f83600b6000888886818110611d2957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b600b6000878785818110611d9f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050611d0b565b504260088190555060006009819055507f1f940d966833560298ca6713905ac7f22fed6550884a6c444adb3b1066e0cefd600d54824260405180848152602001838152602001828152602001935050505060405180910390a150505050565b6000611e7a611e73612575565b8484612774565b6001905092915050565b6000600e60149054906101000a900460ff1615611ea45760009050611f35565b6000600654420390506000611eda601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117c9565b90506000620151809050611f2f6064611f2183611f1387611f05600589612af590919063ffffffff16565b612af590919063ffffffff16565b612b7b90919063ffffffff16565b612b7b90919063ffffffff16565b93505050505b90565b600a6020528060005260406000206000915090505481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612005612575565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f57696e67733a20706f6f6c20616c72656164792063726561746564000000000081525060200191505060405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c65396600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b15801561225657600080fd5b505af115801561226a573d6000803e3d6000fd5b505050506040513d602081101561228057600080fd5b8101908080519060200190929190505050601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6122db612575565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461239d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612423576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612ded6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b603081565b600080828401905083811015612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612603576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612f316024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612e136022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612f0c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612da46023913960400191505060405180910390fd5b61288b838383612c0f565b6128f681604051806060016040528060268152602001612e35602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a359092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612989816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612ae2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612aa7578082015181840152602081019050612a8c565b50505050905090810190601f168015612ad45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831415612b085760009050612b75565b6000828402905082848281612b1957fe5b0414612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612e8c6021913960400191505060405180910390fd5b809150505b92915050565b6000612bbd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612cdd565b905092915050565b6000612c0783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a35565b905092915050565b612c1a838383612570565b600e60149054906101000a900460ff161580612c835750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180612ead6037913960400191505060405180910390fd5b505050565b60008083118290612d89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d4e578082015181840152602081019050612d33565b50505050905090810190601f168015612d7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612d9557fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737362616b65506f6f6c3a206d696e2062616b6520616d6f756e74206e6f7420726561636865642e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636557696e67733a206e6f7420656e6f75676820646179732073696e6365206c61737420736e617073686f742074616b656e2e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757696e67733a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357696e67733a2070617573657220697320746865207a65726f20616464726573732e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c299c2748081e8660d7cedea616f3517162092824659c3c1b3acd66739e6854964736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000989680000000000000000000000000eb7bed59fee1d44229791bba88d47bfded750e7d
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000
Arg [1] : new_owner (address): 0xEB7bEd59FeE1d44229791Bba88D47bfdeD750e7D
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000989680
Arg [1] : 000000000000000000000000eb7bed59fee1d44229791bba88d47bfded750e7d
Deployed Bytecode Sourcemap
29439:6170:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29604:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18218:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20324:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19293:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30145:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20967:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29676:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31964:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19145:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35146:460;;;:::i;:::-;;21697:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32145:184;;;:::i;:::-;;30058:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29534:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30352:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29570:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29829;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32663:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33109:907;;;:::i;:::-;;19456:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28690:148;;;:::i;:::-;;30477:103;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28048:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29791:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29922:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18420:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30322:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22418:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34454:684;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19788:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34024:404;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29863:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30589:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20026:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31731:209;;;:::i;:::-;;28993:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29742:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29604:37;29640:1;29604:37;:::o;18218:83::-;18255:13;18288:5;18281:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18218:83;:::o;20324:169::-;20407:4;20424:39;20433:12;:10;:12::i;:::-;20447:7;20456:6;20424:8;:39::i;:::-;20481:4;20474:11;;20324:169;;;;:::o;19293:100::-;19346:7;19373:12;;19366:19;;19293:100;:::o;30145:44::-;30187:2;30145:44;:::o;20967:321::-;21073:4;21090:36;21100:6;21108:9;21119:6;21090:9;:36::i;:::-;21137:121;21146:6;21154:12;:10;:12::i;:::-;21168:89;21206:6;21168:89;;;;;;;;;;;;;;;;;:11;:19;21180:6;21168:19;;;;;;;;;;;;;;;:33;21188:12;:10;:12::i;:::-;21168:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;21137:8;:121::i;:::-;21276:4;21269:11;;20967:321;;;;;:::o;29676:39::-;29714:1;29676:39;:::o;31964:173::-;28270:12;:10;:12::i;:::-;28260:22;;:6;;;;;;;;;;;:22;;;28252:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32059:1:::1;32038:23;;:9;:23;;;;32030:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32120:9;32111:6;;:18;;;;;;;;;;;;;;;;;;31964:173:::0;:::o;19145:83::-;19186:5;19211:9;;;;;;;;;;;19204:16;;19145:83;:::o;35146:460::-;35229:1;35198:16;:28;35215:10;35198:28;;;;;;;;;;;;;;;;:32;35190:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35277:23;35303:16;:28;35320:10;35303:28;;;;;;;;;;;;;;;;35277:54;;35373:1;35342:16;:28;35359:10;35342:28;;;;;;;;;;;;;;;:32;;;;35414:47;35445:15;35414:14;:26;35429:10;35414:26;;;;;;;;;;;;;;;;:30;;:47;;;;:::i;:::-;35385:14;:26;35400:10;35385:26;;;;;;;;;;;;;;;:76;;;;35496:42;35522:15;35496:9;:21;35506:10;35496:21;;;;;;;;;;;;;;;;:25;;:42;;;;:::i;:::-;35472:9;:21;35482:10;35472:21;;;;;;;;;;;;;;;:66;;;;35570:10;35556:42;;;35582:15;35556:42;;;;;;;;;;;;;;;;;;35146:460;:::o;21697:218::-;21785:4;21802:83;21811:12;:10;:12::i;:::-;21825:7;21834:50;21873:10;21834:11;:25;21846:12;:10;:12::i;:::-;21834:25;;;;;;;;;;;;;;;:34;21860:7;21834:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21802:8;:83::i;:::-;21903:4;21896:11;;21697:218;;;;:::o;32145:184::-;30695:12;:10;:12::i;:::-;30685:22;;:6;;;;;;;;;;;:22;;;30677:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32204:5:::1;32195:6;;:14;;;;;;;;;;;;;;;;;;32262:3;32247:12;:18;;;;32293:3;32276:14;:20;;;;32320:1;32307:10;:14;;;;32145:184::o:0;30058:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;29534:27::-;;;;:::o;30352:18::-;;;;;;;;;;;;;:::o;29570:25::-;;;;:::o;29829:::-;;;;:::o;32663:438::-;32718:7;32727;32736;32745;32754;32763;32772;32781;32790;32832:15;32842:4;32832:9;:15::i;:::-;32862:14;:20;32877:4;32862:20;;;;;;;;;;;;;;;;32897:22;32907:11;;;;;;;;;;;32897:9;:22::i;:::-;32934:12;;32961:10;;32986:15;:13;:15::i;:::-;33016:12;;33043:14;;33072:10;;32810:283;;;;;;;;;;;;;;;;;;32663:438;;;;;;;;;;;:::o;33109:907::-;33149:18;33170:15;:13;:15::i;:::-;33149:36;;33218:8;33204:10;:22;;33196:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33330:3;33315:12;:18;;;;33346;33367:36;33399:3;33367:27;29714:1;33367:10;:14;;:27;;;;:::i;:::-;:31;;:36;;;;:::i;:::-;33346:57;;33414:18;33435:36;33467:3;33435:27;29780:2;33435:10;:14;;:27;;;;:::i;:::-;:31;;:36;;;;:::i;:::-;33414:57;;33482:17;33502:42;33533:10;33502:26;33517:10;33502;:14;;:26;;;;:::i;:::-;:30;;:42;;;;:::i;:::-;33482:62;;33572:27;33589:9;33572:12;;:16;;:27;;;;:::i;:::-;33557:12;:42;;;;33635:38;33662:10;33635:9;:22;33645:11;;;;;;;;;;;33635:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;33610:9;:22;33620:11;;;;;;;;;;;33610:22;;;;;;;;;;;;;;;:63;;;;33699:25;33714:9;33699:10;;:14;;:25;;;;:::i;:::-;33686:10;:38;;;;33748:26;33763:10;33748;;:14;;:26;;;;:::i;:::-;33735:10;:39;;;;33811:37;33837:10;33811:9;:21;33821:10;33811:21;;;;;;;;;;;;;;;;:25;;:37;;;;:::i;:::-;33787:9;:21;33797:10;33787:21;;;;;;;;;;;;;;;:61;;;;33876:11;;;;;;;;;;;33861:32;;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33913:95;33923:10;33935;33947:12;;33961:22;33971:11;;;;;;;;;;;33961:9;:22::i;:::-;33985:10;33997;33913:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33109:907;;;;:::o;19456:119::-;19522:7;19549:9;:18;19559:7;19549:18;;;;;;;;;;;;;;;;19542:25;;19456:119;;;:::o;28690:148::-;28270:12;:10;:12::i;:::-;28260:22;;:6;;;;;;;;;;;:22;;;28252:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28797:1:::1;28760:40;;28781:6;;;;;;;;;;;28760:40;;;;;;;;;;;;28828:1;28811:6;;:19;;;;;;;;;;;;;;;;;;28690:148::o:0;30477:103::-;;;;;;;;;;;;;:::o;28048:79::-;28086:7;28113:6;;;;;;;;;;;28106:13;;28048:79;:::o;29791:29::-;;;;:::o;29922:52::-;;;;;;;;;;;;;;;;;:::o;18420:87::-;18459:13;18492:7;18485:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18420:87;:::o;30322:21::-;;;;;;;;;;;;;:::o;22418:269::-;22511:4;22528:129;22537:12;:10;:12::i;:::-;22551:7;22560:96;22599:15;22560:96;;;;;;;;;;;;;;;;;:11;:25;22572:12;:10;:12::i;:::-;22560:25;;;;;;;;;;;;;;;:34;22586:7;22560:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;22528:8;:129::i;:::-;22675:4;22668:11;;22418:269;;;;:::o;34454:684::-;28270:12;:10;:12::i;:::-;28260:22;;:6;;;;;;;;;;;:22;;;28252:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30954:6:::1;30935:14;;30929:3;:20;30928:32;;30920:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30187:2:::2;34585:7;;:14;;:32;:67;;30187:2;34585:67;;;34620:7;;:14;;34585:67;34567:15;:85;;;;34712:16;34731:31;34746:15;;34731:10;;:14;;:31;;;;:::i;:::-;34712:50;;34773:23;34799:10;;34773:36;;34825:9;34820:146;34844:15;;34840:1;:19;34820:146;;;34912:42;34945:8;34912:16;:28;34929:7;;34937:1;34929:10;;;;;;;;;;;;;;;34912:28;;;;;;;;;;;;;;;;:32;;:42;;;;:::i;:::-;34881:16;:28;34898:7;;34906:1;34898:10;;;;;;;;;;;;;;;34881:28;;;;;;;;;;;;;;;:73;;;;34861:3;;;;;;;34820:146;;;;35026:3;35009:14;:20;;;;35053:1;35040:10;:14;;;;35072:58;35092:15;;35109;35126:3;35072:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31025:1;;34454:684:::0;;:::o;19788:175::-;19874:4;19891:42;19901:12;:10;:12::i;:::-;19915:9;19926:6;19891:9;:42::i;:::-;19951:4;19944:11;;19788:175;;;;:::o;34024:404::-;34070:7;34094:6;;;;;;;;;;;34090:20;;;34109:1;34102:8;;;;34090:20;34121:27;34157:12;;34151:3;:18;34121:48;;34180:27;34210:22;34220:11;;;;;;;;;;;34210:9;:22::i;:::-;34180:52;;34243:20;34266:6;34243:29;;34290:130;34416:3;34290:107;34384:12;34291:73;34344:19;34291:34;29640:1;34291:19;:23;;:34;;;;:::i;:::-;:52;;:73;;;;:::i;:::-;34290:93;;:107;;;;:::i;:::-;:125;;:130;;;;:::i;:::-;34283:137;;;;;34024:404;;:::o;29863:50::-;;;;;;;;;;;;;;;;;:::o;30589:26::-;;;;;;;;;;;;;:::o;20026:151::-;20115:7;20142:11;:18;20154:5;20142:18;;;;;;;;;;;;;;;:27;20161:7;20142:27;;;;;;;;;;;;;;;;20135:34;;20026:151;;;;:::o;31731:209::-;28270:12;:10;:12::i;:::-;28260:22;;:6;;;;;;;;;;;:22;;;28252:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31818:1:::1;31795:25;;:11;;;;;;;;;;;:25;;;31787:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31877:14;;;;;;;;;;;:25;;;31911:4;;;;;;;;;;;31926;31877:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;31863:11;;:69;;;;;;;;;;;;;;;;;;31731:209::o:0;28993:244::-;28270:12;:10;:12::i;:::-;28260:22;;:6;;;;;;;;;;;:22;;;28252:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29102:1:::1;29082:22;;:8;:22;;;;29074:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29192:8;29163:38;;29184:6;;;;;;;;;;;29163:38;;;;;;;;;;;;29221:8;29212:6;;:17;;;;;;;;;;;;;;;;;;28993:244:::0;:::o;29742:40::-;29780:2;29742:40;:::o;5494:181::-;5552:7;5572:9;5588:1;5584;:5;5572:17;;5613:1;5608;:6;;5600:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5666:1;5659:8;;;5494:181;;;;:::o;26936:92::-;;;;:::o;1577:106::-;1630:15;1665:10;1658:17;;1577:106;:::o;25565:346::-;25684:1;25667:19;;:5;:19;;;;25659:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25765:1;25746:21;;:7;:21;;;;25738:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25849:6;25819:11;:18;25831:5;25819:18;;;;;;;;;;;;;;;:27;25838:7;25819:27;;;;;;;;;;;;;;;:36;;;;25887:7;25871:32;;25880:5;25871:32;;;25896:6;25871:32;;;;;;;;;;;;;;;;;;25565:346;;;:::o;23177:539::-;23301:1;23283:20;;:6;:20;;;;23275:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23385:1;23364:23;;:9;:23;;;;23356:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23440:47;23461:6;23469:9;23480:6;23440:20;:47::i;:::-;23520:71;23542:6;23520:71;;;;;;;;;;;;;;;;;:9;:17;23530:6;23520:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;23500:9;:17;23510:6;23500:17;;;;;;;;;;;;;;;:91;;;;23625:32;23650:6;23625:9;:20;23635:9;23625:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;23602:9;:20;23612:9;23602:20;;;;;;;;;;;;;;;:55;;;;23690:9;23673:35;;23682:6;23673:35;;;23701:6;23673:35;;;;;;;;;;;;;;;;;;23177:539;;;:::o;6397:192::-;6483:7;6516:1;6511;:6;;6519:12;6503:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6543:9;6559:1;6555;:5;6543:17;;6580:1;6573:8;;;6397:192;;;;;:::o;6848:471::-;6906:7;7156:1;7151;:6;7147:47;;;7181:1;7174:8;;;;7147:47;7206:9;7222:1;7218;:5;7206:17;;7251:1;7246;7242;:5;;;;;;:10;7234:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7310:1;7303:8;;;6848:471;;;;;:::o;7795:132::-;7853:7;7880:39;7884:1;7887;7880:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7873:46;;7795:132;;;;:::o;5958:136::-;6016:7;6043:43;6047:1;6050;6043:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6036:50;;5958:136;;;;:::o;32367:271::-;32476:44;32503:4;32509:2;32513:6;32476:26;:44::i;:::-;32540:6;;;;;;;;;;;32539:7;:31;;;;32564:6;;;;;;;;;;;32550:20;;:10;:20;;;32539:31;32531:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32367:271;;;:::o;8423:278::-;8509:7;8541:1;8537;:5;8544:12;8529:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8568:9;8584:1;8580;:5;;;;;;8568:17;;8692:1;8685:8;;;8423:278;;;;;:::o
Swarm Source
ipfs://c299c2748081e8660d7cedea616f3517162092824659c3c1b3acd66739e68549
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.