Contract
0x9e725Cf7265D12fd5f59499AFf1258CA92CAc74d
3
[ Download CSV Export ]
OVERVIEW
LoserChick is an “NFT+GameFi” platform created by Emoji DAO, integrating the easy-to-use, highly playable and proven "claw crane" game model, based on the financial attributes of GameFi.Contract Name:
ChickToken
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-07-21 */ // File: ..\node_modules\@openzeppelin\contracts\utils\Context.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: ..\node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: ..\node_modules\@openzeppelin\contracts\math\SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @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; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _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 virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 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 virtual { _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 { } } // File: contracts\OwnableContract.sol pragma solidity 0.6.6; contract OwnableContract { address public owner; address public pendingOwner; address public admin; event NewAdmin(address oldAdmin, address newAdmin); event NewOwner(address oldOwner, address newOwner); event NewPendingOwner(address oldPendingOwner, address newPendingOwner); constructor() public { owner = msg.sender; admin = msg.sender; } modifier onlyOwner { require(msg.sender == owner,"onlyOwner"); _; } modifier onlyPendingOwner { require(msg.sender == pendingOwner,"onlyPendingOwner"); _; } modifier onlyAdmin { require(msg.sender == admin || msg.sender == owner,"onlyAdmin"); _; } function transferOwnership(address _pendingOwner) public onlyOwner { emit NewPendingOwner(pendingOwner, _pendingOwner); pendingOwner = _pendingOwner; } function renounceOwnership() public virtual onlyOwner { emit NewOwner(owner, address(0)); emit NewAdmin(admin, address(0)); emit NewPendingOwner(pendingOwner, address(0)); owner = address(0); pendingOwner = address(0); admin = address(0); } function acceptOwner() public onlyPendingOwner { emit NewOwner(owner, pendingOwner); owner = pendingOwner; address newPendingOwner = address(0); emit NewPendingOwner(pendingOwner, newPendingOwner); pendingOwner = newPendingOwner; } function setAdmin(address newAdmin) public onlyOwner { emit NewAdmin(admin, newAdmin); admin = newAdmin; } } // File: contracts\ChickToken.sol pragma solidity 0.6.6; contract ChickToken is ERC20("loserchick", "CHICK"), OwnableContract{ using SafeMath for uint256; address public teamAddr; address public boardAddr; uint256 public dayIndex = 0; mapping(uint256 => uint256) public burnAmountPerDay; mapping(address => uint256) public addUpSwapCchickCountPerUser; uint256 public totalSwapCount = 0; uint256 public chickSwapCchickIndex = 0; event ChickSwapCchick(address userAddress, uint256 amount, uint256 index); constructor(address _teamAddr, address _boardAddr) public { teamAddr = _teamAddr; boardAddr = _boardAddr; _setupDecimals(18); _mint(msg.sender, uint256(13333333).mul(1e18)); } function updateBurnAmount(uint256 amount) internal{ dayIndex = now / 86400; burnAmountPerDay[dayIndex] = amount.add(burnAmountPerDay[dayIndex]); } function getBurnAmountPerDay(uint256 _dayIndex) public view returns(uint256){ return burnAmountPerDay[_dayIndex]; } function getAddUpSwapCchickCountPerUser(address userAddr) public view returns(uint256){ return addUpSwapCchickCountPerUser[userAddr]; } function chickSwapCchick(uint256 floatAmount) public{ require(floatAmount != 0, 'floatAmount cannot be zero'); addUpSwapCchickCountPerUser[msg.sender] = floatAmount.add(addUpSwapCchickCountPerUser[msg.sender]); uint256 amount = floatAmount.mul(1e18); uint256 teamAmount = amount.div(10); // 10 % _transfer(msg.sender, teamAddr, teamAmount); uint256 boardAmount = amount.div(5); // 20 % _transfer(msg.sender, boardAddr, boardAmount); uint256 burnAmount = amount.mul(7).div(10); // 70 % _burn(msg.sender, burnAmount); updateBurnAmount(burnAmount); totalSwapCount = totalSwapCount.add(floatAmount); chickSwapCchickIndex++; emit ChickSwapCchick(msg.sender, floatAmount, chickSwapCchickIndex); } function updateTeamAddr(address _teamAddr) public onlyOwner{ teamAddr = _teamAddr; } function updateBoardAddr(address _boardAddr) public onlyOwner{ boardAddr = _boardAddr; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_teamAddr","type":"address"},{"internalType":"address","name":"_boardAddr","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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"ChickSwapCchick","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"NewOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingOwner","type":"address"}],"name":"NewPendingOwner","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":"acceptOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addUpSwapCchickCountPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boardAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"burnAmountPerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"floatAmount","type":"uint256"}],"name":"chickSwapCchick","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chickSwapCchickIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dayIndex","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":[{"internalType":"address","name":"userAddr","type":"address"}],"name":"getAddUpSwapCchickCountPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dayIndex","type":"uint256"}],"name":"getBurnAmountPerDay","outputs":[{"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":"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":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSwapCount","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":"_pendingOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_boardAddr","type":"address"}],"name":"updateBoardAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamAddr","type":"address"}],"name":"updateTeamAddr","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a556000600d556000600e553480156200002057600080fd5b5060405162001b1138038062001b11833981810160405260408110156200004657600080fd5b508051602091820151604080518082018252600a8152696c6f736572636869636b60b01b81860190815282518084019093526005835264434849434b60d81b958301959095528051939492939092620000a391600391906200035f565b508051620000b99060049060208401906200035f565b505060058054601260ff199091168117610100600160a81b0319166101003390810291909117909255600780546001600160a01b031990811690931790556008805483166001600160a01b038781169190911790915560098054909316908516179091556200012991506200016a565b620001623362000153670de0b6b3a764000062cb73556200018060201b620012d71790919060201c565b6001600160e01b03620001e716565b505062000404565b6005805460ff191660ff92909216919091179055565b6000826200019157506000620001e1565b828202828482816200019f57fe5b0414620001de5760405162461bcd60e51b815260040180806020018281038252602181526020018062001af06021913960400191505060405180910390fd5b90505b92915050565b6001600160a01b03821662000243576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200025a600083836001600160e01b03620002ff16565b62000276816002546200030460201b620012761790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002a99183906200127662000304821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620001de576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003a257805160ff1916838001178555620003d2565b82800160010185558215620003d2579182015b82811115620003d2578251825591602001919060010190620003b5565b50620003e0929150620003e4565b5090565b6200040191905b80821115620003e05760008155600101620003eb565b90565b6116dc80620004146000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063dd62ed3e116100a2578063f2fde38b11610071578063f2fde38b14610522578063f851a44014610548578063fb690f5014610550578063fe5acca714610576576101da565b8063dd62ed3e146104c7578063e30c3978146104f5578063ebbc4965146104fd578063ecdad43a14610505576101da565b806399694d4e116100de57806399694d4e14610441578063a457c2d714610467578063a9059cbb14610493578063d4d3e141146104bf576101da565b80638da5cb5b1461042957806395d89b41146104315780639646dec614610439576101da565b8063313ce5671161017c5780635b5580341161014b5780635b558034146103ad578063704b6c02146103d357806370a08231146103fb578063715018a614610421576101da565b8063313ce5671461033757806339509351146103555780634a5ff749146103815780634a9bd9c6146103a5576101da565b806318160ddd116101b857806318160ddd146102d45780631d1dc2f6146102dc57806323b872dd146102f95780632d409bdd1461032f576101da565b806306fdde03146101df578063095ea7b31461025c5780630df5113a1461029c575b600080fd5b6101e7610593565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610221578181015183820152602001610209565b50505050905090810190601f16801561024e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102886004803603604081101561027257600080fd5b506001600160a01b038135169060200135610629565b604080519115158252519081900360200190f35b6102c2600480360360208110156102b257600080fd5b50356001600160a01b0316610647565b60408051918252519081900360200190f35b6102c2610659565b6102c2600480360360208110156102f257600080fd5b503561065f565b6102886004803603606081101561030f57600080fd5b506001600160a01b03813581169160208101359091169060400135610671565b6102c26106fe565b61033f610704565b6040805160ff9092168252519081900360200190f35b6102886004803603604081101561036b57600080fd5b506001600160a01b03813516906020013561070d565b610389610761565b604080516001600160a01b039092168252519081900360200190f35b610389610770565b6102c2600480360360208110156103c357600080fd5b50356001600160a01b031661077f565b6103f9600480360360208110156103e957600080fd5b50356001600160a01b031661079a565b005b6102c26004803603602081101561041157600080fd5b50356001600160a01b0316610854565b6103f961086f565b6103896109c7565b6101e76109db565b6102c2610a3c565b6103f96004803603602081101561045757600080fd5b50356001600160a01b0316610a42565b6102886004803603604081101561047d57600080fd5b506001600160a01b038135169060200135610ab4565b610288600480360360408110156104a957600080fd5b506001600160a01b038135169060200135610b22565b6102c2610b36565b6102c2600480360360408110156104dd57600080fd5b506001600160a01b0381358116916020013516610b3c565b610389610b67565b6103f9610b76565b6102c26004803603602081101561051b57600080fd5b5035610c9e565b6103f96004803603602081101561053857600080fd5b50356001600160a01b0316610cb0565b610389610d6a565b6103f96004803603602081101561056657600080fd5b50356001600160a01b0316610d79565b6103f96004803603602081101561058c57600080fd5b5035610deb565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561061f5780601f106105f45761010080835404028352916020019161061f565b820191906000526020600020905b81548152906001019060200180831161060257829003601f168201915b5050505050905090565b600061063d610636610f88565b8484610f8c565b5060015b92915050565b600c6020526000908152604090205481565b60025490565b600b6020526000908152604090205481565b600061067e848484611078565b6106f48461068a610f88565b6106ef856040518060600160405280602881526020016115f0602891396001600160a01b038a166000908152600160205260408120906106c8610f88565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6111df16565b610f8c565b5060019392505050565b600e5481565b60055460ff1690565b600061063d61071a610f88565b846106ef856001600061072b610f88565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61127616565b6008546001600160a01b031681565b6009546001600160a01b031681565b6001600160a01b03166000908152600c602052604090205490565b60055461010090046001600160a01b031633146107ea576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600754604080516001600160a01b039283168152918316602083015280517ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc9281900390910190a1600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b60055461010090046001600160a01b031633146108bf576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554604080516101009092046001600160a01b031682526000602083015280517f70aea8d848e8a90fb7661b227dc522eb6395c3dac71b63cb59edd5c9899b23649281900390910190a1600754604080516001600160a01b0390921682526000602083015280517ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc9281900390910190a1600654604080516001600160a01b0390921682526000602083015280517fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b9281900390910190a160058054610100600160a81b0319169055600680546001600160a01b0319908116909155600780549091169055565b60055461010090046001600160a01b031681565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561061f5780601f106105f45761010080835404028352916020019161061f565b600a5481565b60055461010090046001600160a01b03163314610a92576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600061063d610ac1610f88565b846106ef856040518060600160405280602581526020016116826025913960016000610aeb610f88565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6111df16565b600061063d610b2f610f88565b8484611078565b600d5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b031681565b6006546001600160a01b03163314610bc8576040805162461bcd60e51b815260206004820152601060248201526f37b7363ca832b73234b733a7bbb732b960811b604482015290519081900360640190fd5b600554600654604080516101009093046001600160a01b039081168452909116602083015280517f70aea8d848e8a90fb7661b227dc522eb6395c3dac71b63cb59edd5c9899b23649281900390910190a160065460058054610100600160a81b0319166101006001600160a01b0390931692830217905560408051918252600060208301819052815190927fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b92908290030190a1600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000908152600b602052604090205490565b60055461010090046001600160a01b03163314610d00576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600654604080516001600160a01b039283168152918316602083015280517fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b9281900390910190a1600680546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031681565b60055461010090046001600160a01b03163314610dc9576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b80610e3d576040805162461bcd60e51b815260206004820152601a60248201527f666c6f6174416d6f756e742063616e6e6f74206265207a65726f000000000000604482015290519081900360640190fd5b336000908152600c6020526040902054610e5e90829063ffffffff61127616565b336000908152600c6020526040812091909155610e8982670de0b6b3a764000063ffffffff6112d716565b90506000610e9e82600a63ffffffff61133016565b600854909150610eb99033906001600160a01b031683611078565b6000610ecc83600563ffffffff61133016565b600954909150610ee79033906001600160a01b031683611078565b6000610f0b600a610eff86600763ffffffff6112d716565b9063ffffffff61133016565b9050610f173382611397565b610f208161149f565b600d54610f33908663ffffffff61127616565b600d55600e805460010190819055604080513381526020810188905280820192909252517faeb9e23252fd8679e5224c6f80517a87553ef8914a6074deee2f5b09ae69ccfe9181900360600190a15050505050565b3390565b6001600160a01b038316610fd15760405162461bcd60e51b815260040180806020018281038252602481526020018061165e6024913960400191505060405180910390fd5b6001600160a01b0382166110165760405162461bcd60e51b81526004018080602001828103825260228152602001806115876022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110bd5760405162461bcd60e51b81526004018080602001828103825260258152602001806116396025913960400191505060405180910390fd5b6001600160a01b0382166111025760405162461bcd60e51b81526004018080602001828103825260238152602001806115426023913960400191505060405180910390fd5b61110d8383836114df565b611150816040518060600160405280602681526020016115a9602691396001600160a01b038616600090815260208190526040902054919063ffffffff6111df16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611185908263ffffffff61127616565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561126e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561123357818101518382015260200161121b565b50505050905090810190601f1680156112605780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156112d0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000826112e657506000610641565b828202828482816112f357fe5b04146112d05760405162461bcd60e51b81526004018080602001828103825260218152602001806115cf6021913960400191505060405180910390fd5b6000808211611386576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161138f57fe5b049392505050565b6001600160a01b0382166113dc5760405162461bcd60e51b81526004018080602001828103825260218152602001806116186021913960400191505060405180910390fd5b6113e8826000836114df565b61142b81604051806060016040528060228152602001611565602291396001600160a01b038516600090815260208190526040902054919063ffffffff6111df16565b6001600160a01b038316600090815260208190526040902055600254611457908263ffffffff6114e416565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b620151804204600a8190556000908152600b60205260409020546114ca90829063ffffffff61127616565b600a546000908152600b602052604090205550565b505050565b60008282111561153b576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204ebd0d345ad64dd6db5d35de87325987067cc854689cb07d1964017a40e6273c64736f6c63430006060033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f770000000000000000000000005267432da6d560404a63ee1a0cf7062a1725a5c8000000000000000000000000b017bb58a76db65e216ebbf2e900b4a810c43cf1
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005267432da6d560404a63ee1a0cf7062a1725a5c8000000000000000000000000b017bb58a76db65e216ebbf2e900b4a810c43cf1
-----Decoded View---------------
Arg [0] : _teamAddr (address): 0x5267432da6d560404a63ee1a0cf7062a1725a5c8
Arg [1] : _boardAddr (address): 0xb017bb58a76db65e216ebbf2e900b4a810c43cf1
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005267432da6d560404a63ee1a0cf7062a1725a5c8
Arg [1] : 000000000000000000000000b017bb58a76db65e216ebbf2e900b4a810c43cf1
Deployed ByteCode Sourcemap
24301:2283:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24301:2283:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;13605:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;13605:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15751:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15751:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;24572:62;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24572:62:0;-1:-1:-1;;;;;24572:62:0;;:::i;:::-;;;;;;;;;;;;;;;;14704:108;;;:::i;24512:51::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24512:51:0;;:::i;16402:321::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16402:321:0;;;;;;;;;;;;;;;;;:::i;24685:39::-;;;:::i;14548:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17132:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17132:218:0;;;;;;;;:::i;24413:23::-;;;:::i;:::-;;;;-1:-1:-1;;;;;24413:23:0;;;;;;;;;;;;;;24445:24;;;:::i;25355:149::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;25355:149:0;-1:-1:-1;;;;;25355:149:0;;:::i;24096:129::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24096:129:0;-1:-1:-1;;;;;24096:129:0;;:::i;:::-;;14875:127;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14875:127:0;-1:-1:-1;;;;;14875:127:0;;:::i;23484:301::-;;;:::i;22580:20::-;;;:::i;13815:95::-;;;:::i;24478:27::-;;;:::i;26479:102::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26479:102:0;-1:-1:-1;;;;;26479:102:0;;:::i;17853:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17853:269:0;;;;;;;;:::i;15215:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15215:175:0;;;;;;;;:::i;24643:33::-;;;:::i;15453:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15453:151:0;;;;;;;;;;:::i;22607:27::-;;;:::i;23797:283::-;;;:::i;25218:129::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;25218:129:0;;:::i;23302:174::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23302:174:0;-1:-1:-1;;;;;23302:174:0;;:::i;22641:20::-;;;:::i;26373:98::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26373:98:0;-1:-1:-1;;;;;26373:98:0;;:::i;25512:853::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;25512:853:0;;:::i;13605:91::-;13683:5;13676:12;;;;;;;;-1:-1:-1;;13676:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13650:13;;13676:12;;13683:5;;13676:12;;13683:5;13676:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13605:91;:::o;15751:169::-;15834:4;15851:39;15860:12;:10;:12::i;:::-;15874:7;15883:6;15851:8;:39::i;:::-;-1:-1:-1;15908:4:0;15751:169;;;;;:::o;24572:62::-;;;;;;;;;;;;;:::o;14704:108::-;14792:12;;14704:108;:::o;24512:51::-;;;;;;;;;;;;;:::o;16402:321::-;16508:4;16525:36;16535:6;16543:9;16554:6;16525:9;:36::i;:::-;16572:121;16581:6;16589:12;:10;:12::i;:::-;16603:89;16641:6;16603:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16603:19:0;;;;;;:11;:19;;;;;;16623:12;:10;:12::i;:::-;-1:-1:-1;;;;;16603:33:0;;;;;;;;;;;;-1:-1:-1;16603:33:0;;;:89;;:37;:89;:::i;:::-;16572:8;:121::i;:::-;-1:-1:-1;16711:4:0;16402:321;;;;;:::o;24685:39::-;;;;:::o;14548:91::-;14622:9;;;;14548:91;:::o;17132:218::-;17220:4;17237:83;17246:12;:10;:12::i;:::-;17260:7;17269:50;17308:10;17269:11;:25;17281:12;:10;:12::i;:::-;-1:-1:-1;;;;;17269:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17269:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;24413:23::-;;;-1:-1:-1;;;;;24413:23:0;;:::o;24445:24::-;;;-1:-1:-1;;;;;24445:24:0;;:::o;25355:149::-;-1:-1:-1;;;;;25459:37:0;25433:7;25459:37;;;:27;:37;;;;;;;25355:149::o;24096:129::-;23011:5;;;;;-1:-1:-1;;;;;23011:5:0;22997:10;:19;22989:40;;;;;-1:-1:-1;;;22989:40:0;;;;;;;;;;;;-1:-1:-1;;;22989:40:0;;;;;;;;;;;;;;;24174:5:::1;::::0;24165:25:::1;::::0;;-1:-1:-1;;;;;24174:5:0;;::::1;24165:25:::0;;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;24201:5;:16:::0;;-1:-1:-1;;;;;;24201:16:0::1;-1:-1:-1::0;;;;;24201:16:0;;;::::1;::::0;;;::::1;::::0;;24096:129::o;14875:127::-;-1:-1:-1;;;;;14976:18:0;14949:7;14976:18;;;;;;;;;;;;14875:127::o;23484:301::-;23011:5;;;;;-1:-1:-1;;;;;23011:5:0;22997:10;:19;22989:40;;;;;-1:-1:-1;;;22989:40:0;;;;;;;;;;;;-1:-1:-1;;;22989:40:0;;;;;;;;;;;;;;;23563:5:::1;::::0;23554:27:::1;::::0;;23563:5:::1;::::0;;::::1;-1:-1:-1::0;;;;;23563:5:0::1;23554:27:::0;;23578:1:::1;23554:27;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;23606:5;::::0;23597:27:::1;::::0;;-1:-1:-1;;;;;23606:5:0;;::::1;23597:27:::0;;23606:5:::1;23597:27;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;23656:12;::::0;23640:41:::1;::::0;;-1:-1:-1;;;;;23656:12:0;;::::1;23640:41:::0;;23656:12:::1;23640:41;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;23694:5;:18:::0;;-1:-1:-1;;;;;;23694:18:0::1;::::0;;23723:12:::1;:25:::0;;-1:-1:-1;;;;;;23723:25:0;;::::1;::::0;;;23759:5:::1;:18:::0;;;;::::1;::::0;;23484:301::o;22580:20::-;;;;;;-1:-1:-1;;;;;22580:20:0;;:::o;13815:95::-;13895:7;13888:14;;;;;;;;-1:-1:-1;;13888:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13862:13;;13888:14;;13895:7;;13888:14;;13895:7;13888:14;;;;;;;;;;;;;;;;;;;;;;;;24478:27;;;;:::o;26479:102::-;23011:5;;;;;-1:-1:-1;;;;;23011:5:0;22997:10;:19;22989:40;;;;;-1:-1:-1;;;22989:40:0;;;;;;;;;;;;-1:-1:-1;;;22989:40:0;;;;;;;;;;;;;;;26551:9:::1;:22:::0;;-1:-1:-1;;;;;;26551:22:0::1;-1:-1:-1::0;;;;;26551:22:0;;;::::1;::::0;;;::::1;::::0;;26479:102::o;17853:269::-;17946:4;17963:129;17972:12;:10;:12::i;:::-;17986:7;17995:96;18034:15;17995:96;;;;;;;;;;;;;;;;;:11;:25;18007:12;:10;:12::i;:::-;-1:-1:-1;;;;;17995:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17995:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;15215:175::-;15301:4;15318:42;15328:12;:10;:12::i;:::-;15342:9;15353:6;15318:9;:42::i;24643:33::-;;;;:::o;15453:151::-;-1:-1:-1;;;;;15569:18:0;;;15542:7;15569:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15453:151::o;22607:27::-;;;-1:-1:-1;;;;;22607:27:0;;:::o;23797:283::-;23116:12;;-1:-1:-1;;;;;23116:12:0;23102:10;:26;23094:54;;;;;-1:-1:-1;;;23094:54:0;;;;;;;;;;;;-1:-1:-1;;;23094:54:0;;;;;;;;;;;;;;;23869:5:::1;::::0;23876:12:::1;::::0;23860:29:::1;::::0;;23869:5:::1;::::0;;::::1;-1:-1:-1::0;;;;;23869:5:0;;::::1;23860:29:::0;;23876:12;;::::1;23860:29;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;23908:12;::::0;23900:5:::1;:20:::0;;-1:-1:-1;;;;;;23900:20:0::1;23908:12;-1:-1:-1::0;;;;;23908:12:0;;::::1;23900:20:::0;;::::1;;::::0;;23985:46:::1;::::0;;;;;-1:-1:-1;23985:46:0::1;::::0;::::1;::::0;;;;;-1:-1:-1;;23985:46:0::1;::::0;;;;;;;::::1;24042:12;:30:::0;;-1:-1:-1;;;;;;24042:30:0::1;-1:-1:-1::0;;;;;24042:30:0;;;::::1;::::0;;;::::1;::::0;;23797:283::o;25218:129::-;25286:7;25312:27;;;:16;:27;;;;;;;25218:129::o;23302:174::-;23011:5;;;;;-1:-1:-1;;;;;23011:5:0;22997:10;:19;22989:40;;;;;-1:-1:-1;;;22989:40:0;;;;;;;;;;;;-1:-1:-1;;;22989:40:0;;;;;;;;;;;;;;;23401:12:::1;::::0;23385:44:::1;::::0;;-1:-1:-1;;;;;23401:12:0;;::::1;23385:44:::0;;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;23440:12;:28:::0;;-1:-1:-1;;;;;;23440:28:0::1;-1:-1:-1::0;;;;;23440:28:0;;;::::1;::::0;;;::::1;::::0;;23302:174::o;22641:20::-;;;-1:-1:-1;;;;;22641:20:0;;:::o;26373:98::-;23011:5;;;;;-1:-1:-1;;;;;23011:5:0;22997:10;:19;22989:40;;;;;-1:-1:-1;;;22989:40:0;;;;;;;;;;;;-1:-1:-1;;;22989:40:0;;;;;;;;;;;;;;;26443:8:::1;:20:::0;;-1:-1:-1;;;;;;26443:20:0::1;-1:-1:-1::0;;;;;26443:20:0;;;::::1;::::0;;;::::1;::::0;;26373:98::o;25512:853::-;25583:16;25575:55;;;;;-1:-1:-1;;;25575:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25742:10;25714:39;;;;:27;:39;;;;;;25698:56;;:11;;:56;:15;:56;:::i;:::-;25684:10;25656:39;;;;:27;:39;;;;;:98;;;;25784:21;:11;25800:4;25784:21;:15;:21;:::i;:::-;25767:38;-1:-1:-1;25818:18:0;25839:14;25767:38;25850:2;25839:14;:10;:14;:::i;:::-;25895:8;;25818:35;;-1:-1:-1;25873:43:0;;25883:10;;-1:-1:-1;;;;;25895:8:0;25818:35;25873:9;:43::i;:::-;25929:19;25951:13;:6;25962:1;25951:13;:10;:13;:::i;:::-;26006:9;;25929:35;;-1:-1:-1;25984:45:0;;25994:10;;-1:-1:-1;;;;;26006:9:0;25929:35;25984:9;:45::i;:::-;26050:18;26071:21;26089:2;26071:13;:6;26082:1;26071:13;:10;:13;:::i;:::-;:17;:21;:17;:21;:::i;:::-;26050:42;;26111:29;26117:10;26129;26111:5;:29::i;:::-;26153:28;26170:10;26153:16;:28::i;:::-;26211:14;;:31;;26230:11;26211:31;:18;:31;:::i;:::-;26194:14;:48;26255:20;:22;;;;;;;;26295:62;;;26311:10;26295:62;;;;;;;;;;;;;;;;;;;;;;;;;25512:853;;;;;:::o;683:106::-;771:10;683:106;:::o;21000:346::-;-1:-1:-1;;;;;21102:19:0;;21094:68;;;;-1:-1:-1;;;21094:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21181:21:0;;21173:68;;;;-1:-1:-1;;;21173:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21254:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21306:32;;;;;;;;;;;;;;;;;21000:346;;;:::o;18612:539::-;-1:-1:-1;;;;;18718:20:0;;18710:70;;;;-1:-1:-1;;;18710:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18799:23:0;;18791:71;;;;-1:-1:-1;;;18791:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18875:47;18896:6;18904:9;18915:6;18875:20;:47::i;:::-;18955:71;18977:6;18955:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18955:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;18935:17:0;;;:9;:17;;;;;;;;;;;:91;;;;19060:20;;;;;;;:32;;19085:6;19060:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;19037:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;19108:35;;;;;;;19037:20;;19108:35;;;;;;;;;;;;;18612:539;;;:::o;9566:166::-;9652:7;9688:12;9680:6;;;;9672:29;;;;-1:-1:-1;;;9672:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9672:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9719:5:0;;;9566:166::o;6739:179::-;6797:7;6829:5;;;6853:6;;;;6845:46;;;;;-1:-1:-1;;;6845:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6909:1;6739:179;-1:-1:-1;;;6739:179:0:o;7618:220::-;7676:7;7700:6;7696:20;;-1:-1:-1;7715:1:0;7708:8;;7696:20;7739:5;;;7743:1;7739;:5;:1;7763:5;;;;;:10;7755:56;;;;-1:-1:-1;;;7755:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8316:153;8374:7;8406:1;8402;:5;8394:44;;;;;-1:-1:-1;;;8394:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8460:1;8456;:5;;;;;;;8316:153;-1:-1:-1;;;8316:153:0:o;20144:418::-;-1:-1:-1;;;;;20228:21:0;;20220:67;;;;-1:-1:-1;;;20220:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20300:49;20321:7;20338:1;20342:6;20300:20;:49::i;:::-;20383:68;20406:6;20383:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20383:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;20362:18:0;;:9;:18;;;;;;;;;;:89;20477:12;;:24;;20494:6;20477:24;:16;:24;:::i;:::-;20462:12;:39;20517:37;;;;;;;;20543:1;;-1:-1:-1;;;;;20517:37:0;;;;;;;;;;;;20144:418;;:::o;25041:169::-;25119:5;25113:3;:11;25102:8;:22;;;25175:26;;;;:16;:26;;;;;;25164:38;;:6;;:38;:10;:38;:::i;:::-;25152:8;;25135:26;;;;:16;:26;;;;;:67;-1:-1:-1;25041:169:0:o;22379:92::-;;;;:::o;7201:158::-;7259:7;7292:1;7287;:6;;7279:49;;;;;-1:-1:-1;;;7279:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7346:5:0;;;7201:158::o
Swarm Source
ipfs://4ebd0d345ad64dd6db5d35de87325987067cc854689cb07d1964017a40e6273c
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.