Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
874,704,143,419,273.34723905 REDPILL
Holders
55
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Balance
22,780,092.76920356 REDPILLValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
REDPILL
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-26 */ pragma solidity ^0.6.0; // SPDX-License-Identifier: MIT 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 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; } } contract REDPILL is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; string private constant _NAME = 'REDPILL'; string private constant _SYMBOL = 'REDPILL'; uint8 private constant _DECIMALS = 8; uint256 private constant _MAX = ~uint256(0); uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS); uint256 private constant _GRANULARITY = 100; uint256 private _tTotal = 1000000000000000 * _DECIMALFACTOR; uint256 private _rTotal = (_MAX - (_MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _tBurnTotal; uint256 private _TAX_FEE = 0; uint256 private _BURN_FEE = 0; uint256 private constant _MAX_TX_SIZE = 1000000000000000 * _DECIMALFACTOR; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _NAME; } function symbol() public view returns (string memory) { return _SYMBOL; } function decimals() public view returns (uint8) { return _DECIMALS; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } 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; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function totalBurn() public view returns (uint256) { return _tBurnTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != owner()) require(amount <= _MAX_TX_SIZE, "Transfer amount exceeds the maxTxAmount."); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn) private { _rTotal = _rTotal.sub(rFee).sub(rBurn); _tFeeTotal = _tFeeTotal.add(tFee); _tBurnTotal = _tBurnTotal.add(tBurn); _tTotal = _tTotal.sub(tBurn); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getTValues(tAmount, _TAX_FEE, _BURN_FEE); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tBurn, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 burnFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100); uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn); return (tTransferAmount, tFee, tBurn); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rBurn = tBurn.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _getTaxFee() private view returns(uint256) { return _TAX_FEE; } function _setTaxFee(uint256 taxFee) external onlyOwner() { require(taxFee >= 50 && taxFee <= 1000, 'taxFee should be in 1 - 10'); _TAX_FEE = taxFee; } function _setBurnFee(uint256 burnFee) external onlyOwner() { require(burnFee >= 50 && burnFee <= 1000, 'burnFee should be in 1 - 10'); _BURN_FEE = burnFee; } function _getMaxTxAmount() private view returns(uint256) { return _MAX_TX_SIZE; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"_setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","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":"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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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"}]
Contract Creation Code
608060405269152d02c7e14af680000060065569085afffa6ff50bffffff196007556000600a819055600b5534801561003757600080fd5b50600061004261010f565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506007546001600061009b61010f565b6001600160a01b031681526020810191909152604001600020556100bd61010f565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a3610113565b3390565b611dbb80620001236000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80635880b873116100c3578063a9059cbb1161007c578063a9059cbb146103dd578063cba0e99614610409578063dd62ed3e1461042f578063f2cc0c181461045d578063f2fde38b14610483578063f84354f1146104a957610158565b80635880b8731461034257806370a082311461035f578063715018a6146103855780638da5cb5b1461038d57806395d89b411461015d578063a457c2d7146103b157610158565b8063313ce56711610115578063313ce5671461028f57806339509351146102ad5780633b6b1961146102d95780633bd5d173146102f85780633c9f861d146103155780634549b0391461031d57610158565b806306fdde031461015d578063095ea7b3146101da57806313114a9d1461021a57806318160ddd1461023457806323b872dd1461023c5780632d83811914610272575b600080fd5b6101656104cf565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019f578181015183820152602001610187565b50505050905090810190601f1680156101cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610206600480360360408110156101f057600080fd5b506001600160a01b0381351690602001356104f0565b604080519115158252519081900360200190f35b61022261050e565b60408051918252519081900360200190f35b610222610514565b6102066004803603606081101561025257600080fd5b506001600160a01b0381358116916020810135909116906040013561051a565b6102226004803603602081101561028857600080fd5b50356105a1565b610297610603565b6040805160ff9092168252519081900360200190f35b610206600480360360408110156102c357600080fd5b506001600160a01b038135169060200135610608565b6102f6600480360360208110156102ef57600080fd5b5035610656565b005b6102f66004803603602081101561030e57600080fd5b5035610717565b6102226107f1565b6102226004803603604081101561033357600080fd5b508035906020013515156107f7565b6102f66004803603602081101561035857600080fd5b5035610889565b6102226004803603602081101561037557600080fd5b50356001600160a01b031661094a565b6102f66109ac565b610395610a4e565b604080516001600160a01b039092168252519081900360200190f35b610206600480360360408110156103c757600080fd5b506001600160a01b038135169060200135610a5d565b610206600480360360408110156103f357600080fd5b506001600160a01b038135169060200135610ac5565b6102066004803603602081101561041f57600080fd5b50356001600160a01b0316610ad9565b6102226004803603604081101561044557600080fd5b506001600160a01b0381358116916020013516610af7565b6102f66004803603602081101561047357600080fd5b50356001600160a01b0316610b22565b6102f66004803603602081101561049957600080fd5b50356001600160a01b0316610d04565b6102f6600480360360208110156104bf57600080fd5b50356001600160a01b0316610dfc565b6040805180820190915260078152661491511412531360ca1b602082015290565b60006105046104fd610fbd565b8484610fc1565b5060015b92915050565b60085490565b60065490565b60006105278484846110ad565b61059784610533610fbd565b61059285604051806060016040528060288152602001611c59602891396001600160a01b038a16600090815260036020526040812090610571610fbd565b6001600160a01b03168152602081019190915260400160002054919061135f565b610fc1565b5060019392505050565b60006007548211156105e45760405162461bcd60e51b815260040180806020018281038252602a815260200180611b9e602a913960400191505060405180910390fd5b60006105ee6113f6565b90506105fa8382611419565b9150505b919050565b600890565b6000610504610615610fbd565b846105928560036000610626610fbd565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611462565b61065e610fbd565b6000546001600160a01b039081169116146106ae576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b603281101580156106c157506103e88111155b610712576040805162461bcd60e51b815260206004820152601b60248201527f6275726e4665652073686f756c6420626520696e2031202d2031300000000000604482015290519081900360640190fd5b600b55565b6000610721610fbd565b6001600160a01b03811660009081526004602052604090205490915060ff161561077c5760405162461bcd60e51b815260040180806020018281038252602c815260200180611d35602c913960400191505060405180910390fd5b6000610787836114bc565b505050506001600160a01b0384166000908152600160205260409020549192506107b391905082611519565b6001600160a01b0383166000908152600160205260409020556007546107d99082611519565b6007556008546107e99084611462565b600855505050565b60095490565b6000600654831115610850576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161086f576000610860846114bc565b50939550610508945050505050565b600061087a846114bc565b50929550610508945050505050565b610891610fbd565b6000546001600160a01b039081169116146108e1576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b603281101580156108f457506103e88111155b610945576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b600a55565b6001600160a01b03811660009081526004602052604081205460ff161561098a57506001600160a01b0381166000908152600260205260409020546105fe565b6001600160a01b038216600090815260016020526040902054610508906105a1565b6109b4610fbd565b6000546001600160a01b03908116911614610a04576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6000610504610a6a610fbd565b8461059285604051806060016040528060258152602001611d616025913960036000610a94610fbd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061135f565b6000610504610ad2610fbd565b84846110ad565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610b2a610fbd565b6000546001600160a01b03908116911614610b7a576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610bd65760405162461bcd60e51b8152600401808060200182810382526022815260200180611d136022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610c44576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610c9e576001600160a01b038116600090815260016020526040902054610c84906105a1565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610d0c610fbd565b6000546001600160a01b03908116911614610d5c576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b6001600160a01b038116610da15760405162461bcd60e51b8152600401808060200182810382526026815260200180611bc86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610e04610fbd565b6000546001600160a01b03908116911614610e54576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610ec1576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610fb957816001600160a01b031660058281548110610ee557fe5b6000918252602090912001546001600160a01b03161415610fb157600580546000198101908110610f1257fe5b600091825260209091200154600580546001600160a01b039092169183908110610f3857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610f8a57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fb9565b600101610ec4565b5050565b3390565b6001600160a01b0383166110065760405162461bcd60e51b8152600401808060200182810382526024815260200180611cef6024913960400191505060405180910390fd5b6001600160a01b03821661104b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611bee6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110f25760405162461bcd60e51b8152600401808060200182810382526025815260200180611cca6025913960400191505060405180910390fd5b6001600160a01b0382166111375760405162461bcd60e51b8152600401808060200182810382526023815260200180611b7b6023913960400191505060405180910390fd5b600081116111765760405162461bcd60e51b8152600401808060200182810382526029815260200180611ca16029913960400191505060405180910390fd5b61117e610a4e565b6001600160a01b0316836001600160a01b0316141580156111b857506111a2610a4e565b6001600160a01b0316826001600160a01b031614155b156112065769152d02c7e14af68000008111156112065760405162461bcd60e51b8152600401808060200182810382526028815260200180611c106028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561124757506001600160a01b03821660009081526004602052604090205460ff16155b1561125c5761125783838361155b565b61135a565b6001600160a01b03831660009081526004602052604090205460ff1615801561129d57506001600160a01b03821660009081526004602052604090205460ff165b156112ad5761125783838361169b565b6001600160a01b03831660009081526004602052604090205460ff161580156112ef57506001600160a01b03821660009081526004602052604090205460ff16155b156112ff57611257838383611765565b6001600160a01b03831660009081526004602052604090205460ff16801561133f57506001600160a01b03821660009081526004602052604090205460ff165b1561134f576112578383836117ca565b61135a838383611765565b505050565b600081848411156113ee5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113b357818101518382015260200161139b565b50505050905090810190601f1680156113e05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061140361185e565b90925090506114128282611419565b9250505090565b600061145b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119c1565b9392505050565b60008282018381101561145b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006114d98a600a54600b54611a26565b92509250925060006114e96113f6565b905060008060006114fc8e878787611a7f565b919e509c509a509598509396509194505050505091939550919395565b600061145b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061135f565b60006115656113f6565b9050600080600080600080611579886114bc565b955095509550955095509550600061159a8883611acf90919063ffffffff16565b6001600160a01b038c166000908152600260205260409020549091506115c0908a611519565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546115ef9088611519565b6001600160a01b03808d1660009081526001602052604080822093909355908c168152205461161e9087611462565b6001600160a01b038b1660009081526001602052604090205561164385828585611b28565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b60006116a56113f6565b90506000806000806000806116b9886114bc565b95509550955095509550955060006116da8883611acf90919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506117009088611519565b6001600160a01b03808d16600090815260016020908152604080832094909455918d168152600290915220546117369085611462565b6001600160a01b038b1660009081526002602090815260408083209390935560019052205461161e9087611462565b600061176f6113f6565b9050600080600080600080611783886114bc565b95509550955095509550955060006117a48883611acf90919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506115ef9088611519565b60006117d46113f6565b90506000806000806000806117e8886114bc565b95509550955095509550955060006118098883611acf90919063ffffffff16565b6001600160a01b038c1660009081526002602052604090205490915061182f908a611519565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546117009088611519565b6007546006546000918291825b60055481101561198f5782600160006005848154811061188757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806118ec57508160026000600584815481106118c557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561190357600754600654945094505050506119bd565b611943600160006005848154811061191757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611519565b9250611985600260006005848154811061195957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611519565b915060010161186b565b5060065460075461199f91611419565b8210156119b7576007546006549350935050506119bd565b90925090505b9091565b60008183611a105760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b357818101518382015260200161139b565b506000838581611a1c57fe5b0495945050505050565b6000808080611a426064611a3c81818b8b611acf565b90611419565b90506000611a576064611a3c81818c8b611acf565b90506000611a6f82611a698b86611519565b90611519565b9992985090965090945050505050565b6000808080611a8e8886611acf565b90506000611a9c8887611acf565b90506000611aaa8888611acf565b90506000611abc82611a698686611519565b939b939a50919850919650505050505050565b600082611ade57506000610508565b82820282848281611aeb57fe5b041461145b5760405162461bcd60e51b8152600401808060200182810382526021815260200180611c386021913960400191505060405180910390fd5b611b4183611a698660075461151990919063ffffffff16565b600755600854611b519083611462565b600855600954611b619082611462565b600955600654611b719082611519565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c26cd4380b1f0c6538ce0305c8418fe27adc1515a724a0378ccd2a0ef89b6e8d64736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c80635880b873116100c3578063a9059cbb1161007c578063a9059cbb146103dd578063cba0e99614610409578063dd62ed3e1461042f578063f2cc0c181461045d578063f2fde38b14610483578063f84354f1146104a957610158565b80635880b8731461034257806370a082311461035f578063715018a6146103855780638da5cb5b1461038d57806395d89b411461015d578063a457c2d7146103b157610158565b8063313ce56711610115578063313ce5671461028f57806339509351146102ad5780633b6b1961146102d95780633bd5d173146102f85780633c9f861d146103155780634549b0391461031d57610158565b806306fdde031461015d578063095ea7b3146101da57806313114a9d1461021a57806318160ddd1461023457806323b872dd1461023c5780632d83811914610272575b600080fd5b6101656104cf565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019f578181015183820152602001610187565b50505050905090810190601f1680156101cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610206600480360360408110156101f057600080fd5b506001600160a01b0381351690602001356104f0565b604080519115158252519081900360200190f35b61022261050e565b60408051918252519081900360200190f35b610222610514565b6102066004803603606081101561025257600080fd5b506001600160a01b0381358116916020810135909116906040013561051a565b6102226004803603602081101561028857600080fd5b50356105a1565b610297610603565b6040805160ff9092168252519081900360200190f35b610206600480360360408110156102c357600080fd5b506001600160a01b038135169060200135610608565b6102f6600480360360208110156102ef57600080fd5b5035610656565b005b6102f66004803603602081101561030e57600080fd5b5035610717565b6102226107f1565b6102226004803603604081101561033357600080fd5b508035906020013515156107f7565b6102f66004803603602081101561035857600080fd5b5035610889565b6102226004803603602081101561037557600080fd5b50356001600160a01b031661094a565b6102f66109ac565b610395610a4e565b604080516001600160a01b039092168252519081900360200190f35b610206600480360360408110156103c757600080fd5b506001600160a01b038135169060200135610a5d565b610206600480360360408110156103f357600080fd5b506001600160a01b038135169060200135610ac5565b6102066004803603602081101561041f57600080fd5b50356001600160a01b0316610ad9565b6102226004803603604081101561044557600080fd5b506001600160a01b0381358116916020013516610af7565b6102f66004803603602081101561047357600080fd5b50356001600160a01b0316610b22565b6102f66004803603602081101561049957600080fd5b50356001600160a01b0316610d04565b6102f6600480360360208110156104bf57600080fd5b50356001600160a01b0316610dfc565b6040805180820190915260078152661491511412531360ca1b602082015290565b60006105046104fd610fbd565b8484610fc1565b5060015b92915050565b60085490565b60065490565b60006105278484846110ad565b61059784610533610fbd565b61059285604051806060016040528060288152602001611c59602891396001600160a01b038a16600090815260036020526040812090610571610fbd565b6001600160a01b03168152602081019190915260400160002054919061135f565b610fc1565b5060019392505050565b60006007548211156105e45760405162461bcd60e51b815260040180806020018281038252602a815260200180611b9e602a913960400191505060405180910390fd5b60006105ee6113f6565b90506105fa8382611419565b9150505b919050565b600890565b6000610504610615610fbd565b846105928560036000610626610fbd565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611462565b61065e610fbd565b6000546001600160a01b039081169116146106ae576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b603281101580156106c157506103e88111155b610712576040805162461bcd60e51b815260206004820152601b60248201527f6275726e4665652073686f756c6420626520696e2031202d2031300000000000604482015290519081900360640190fd5b600b55565b6000610721610fbd565b6001600160a01b03811660009081526004602052604090205490915060ff161561077c5760405162461bcd60e51b815260040180806020018281038252602c815260200180611d35602c913960400191505060405180910390fd5b6000610787836114bc565b505050506001600160a01b0384166000908152600160205260409020549192506107b391905082611519565b6001600160a01b0383166000908152600160205260409020556007546107d99082611519565b6007556008546107e99084611462565b600855505050565b60095490565b6000600654831115610850576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161086f576000610860846114bc565b50939550610508945050505050565b600061087a846114bc565b50929550610508945050505050565b610891610fbd565b6000546001600160a01b039081169116146108e1576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b603281101580156108f457506103e88111155b610945576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b600a55565b6001600160a01b03811660009081526004602052604081205460ff161561098a57506001600160a01b0381166000908152600260205260409020546105fe565b6001600160a01b038216600090815260016020526040902054610508906105a1565b6109b4610fbd565b6000546001600160a01b03908116911614610a04576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6000610504610a6a610fbd565b8461059285604051806060016040528060258152602001611d616025913960036000610a94610fbd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061135f565b6000610504610ad2610fbd565b84846110ad565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610b2a610fbd565b6000546001600160a01b03908116911614610b7a576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610bd65760405162461bcd60e51b8152600401808060200182810382526022815260200180611d136022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610c44576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610c9e576001600160a01b038116600090815260016020526040902054610c84906105a1565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610d0c610fbd565b6000546001600160a01b03908116911614610d5c576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b6001600160a01b038116610da15760405162461bcd60e51b8152600401808060200182810382526026815260200180611bc86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610e04610fbd565b6000546001600160a01b03908116911614610e54576040805162461bcd60e51b81526020600482018190526024820152600080516020611c81833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610ec1576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610fb957816001600160a01b031660058281548110610ee557fe5b6000918252602090912001546001600160a01b03161415610fb157600580546000198101908110610f1257fe5b600091825260209091200154600580546001600160a01b039092169183908110610f3857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610f8a57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fb9565b600101610ec4565b5050565b3390565b6001600160a01b0383166110065760405162461bcd60e51b8152600401808060200182810382526024815260200180611cef6024913960400191505060405180910390fd5b6001600160a01b03821661104b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611bee6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110f25760405162461bcd60e51b8152600401808060200182810382526025815260200180611cca6025913960400191505060405180910390fd5b6001600160a01b0382166111375760405162461bcd60e51b8152600401808060200182810382526023815260200180611b7b6023913960400191505060405180910390fd5b600081116111765760405162461bcd60e51b8152600401808060200182810382526029815260200180611ca16029913960400191505060405180910390fd5b61117e610a4e565b6001600160a01b0316836001600160a01b0316141580156111b857506111a2610a4e565b6001600160a01b0316826001600160a01b031614155b156112065769152d02c7e14af68000008111156112065760405162461bcd60e51b8152600401808060200182810382526028815260200180611c106028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561124757506001600160a01b03821660009081526004602052604090205460ff16155b1561125c5761125783838361155b565b61135a565b6001600160a01b03831660009081526004602052604090205460ff1615801561129d57506001600160a01b03821660009081526004602052604090205460ff165b156112ad5761125783838361169b565b6001600160a01b03831660009081526004602052604090205460ff161580156112ef57506001600160a01b03821660009081526004602052604090205460ff16155b156112ff57611257838383611765565b6001600160a01b03831660009081526004602052604090205460ff16801561133f57506001600160a01b03821660009081526004602052604090205460ff165b1561134f576112578383836117ca565b61135a838383611765565b505050565b600081848411156113ee5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113b357818101518382015260200161139b565b50505050905090810190601f1680156113e05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061140361185e565b90925090506114128282611419565b9250505090565b600061145b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119c1565b9392505050565b60008282018381101561145b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006114d98a600a54600b54611a26565b92509250925060006114e96113f6565b905060008060006114fc8e878787611a7f565b919e509c509a509598509396509194505050505091939550919395565b600061145b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061135f565b60006115656113f6565b9050600080600080600080611579886114bc565b955095509550955095509550600061159a8883611acf90919063ffffffff16565b6001600160a01b038c166000908152600260205260409020549091506115c0908a611519565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546115ef9088611519565b6001600160a01b03808d1660009081526001602052604080822093909355908c168152205461161e9087611462565b6001600160a01b038b1660009081526001602052604090205561164385828585611b28565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b60006116a56113f6565b90506000806000806000806116b9886114bc565b95509550955095509550955060006116da8883611acf90919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506117009088611519565b6001600160a01b03808d16600090815260016020908152604080832094909455918d168152600290915220546117369085611462565b6001600160a01b038b1660009081526002602090815260408083209390935560019052205461161e9087611462565b600061176f6113f6565b9050600080600080600080611783886114bc565b95509550955095509550955060006117a48883611acf90919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506115ef9088611519565b60006117d46113f6565b90506000806000806000806117e8886114bc565b95509550955095509550955060006118098883611acf90919063ffffffff16565b6001600160a01b038c1660009081526002602052604090205490915061182f908a611519565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546117009088611519565b6007546006546000918291825b60055481101561198f5782600160006005848154811061188757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806118ec57508160026000600584815481106118c557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561190357600754600654945094505050506119bd565b611943600160006005848154811061191757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611519565b9250611985600260006005848154811061195957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611519565b915060010161186b565b5060065460075461199f91611419565b8210156119b7576007546006549350935050506119bd565b90925090505b9091565b60008183611a105760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b357818101518382015260200161139b565b506000838581611a1c57fe5b0495945050505050565b6000808080611a426064611a3c81818b8b611acf565b90611419565b90506000611a576064611a3c81818c8b611acf565b90506000611a6f82611a698b86611519565b90611519565b9992985090965090945050505050565b6000808080611a8e8886611acf565b90506000611a9c8887611acf565b90506000611aaa8888611acf565b90506000611abc82611a698686611519565b939b939a50919850919650505050505050565b600082611ade57506000610508565b82820282848281611aeb57fe5b041461145b5760405162461bcd60e51b8152600401808060200182810382526021815260200180611c386021913960400191505060405180910390fd5b611b4183611a698660075461151990919063ffffffff16565b600755600854611b519083611462565b600855600954611b619082611462565b600955600654611b719082611519565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c26cd4380b1f0c6538ce0305c8418fe27adc1515a724a0378ccd2a0ef89b6e8d64736f6c634300060c0033
Deployed Bytecode Sourcemap
16827:12402:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18051:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18963:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18963:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20074:87;;;:::i;:::-;;;;;;;;;;;;;;;;18328:95;;;:::i;19132:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19132:313:0;;;;;;;;;;;;;;;;;:::i;21098:253::-;;;;;;;;;;;;;;;;-1:-1:-1;21098:253:0;;:::i;18237:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19453:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19453:218:0;;;;;;;;:::i;28943:180::-;;;;;;;;;;;;;;;;-1:-1:-1;28943:180:0;;:::i;:::-;;20269:377;;;;;;;;;;;;;;;;-1:-1:-1;20269:377:0;;:::i;20173:88::-;;;:::i;20654:436::-;;;;;;;;;;;;;;;;-1:-1:-1;20654:436:0;;;;;;;;;:::i;28762:173::-;;;;;;;;;;;;;;;;-1:-1:-1;28762:173:0;;:::i;18431:198::-;;;;;;;;;;;;;;;;-1:-1:-1;18431:198:0;-1:-1:-1;;;;;18431:198:0;;:::i;16273:148::-;;;:::i;15631:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15631:79:0;;;;;;;;;;;;;;19679:269;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19679:269:0;;;;;;;;:::i;18637:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18637:167:0;;;;;;;;:::i;19956:110::-;;;;;;;;;;;;;;;;-1:-1:-1;19956:110:0;-1:-1:-1;;;;;19956:110:0;;:::i;18812:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18812:143:0;;;;;;;;;;:::i;21359:443::-;;;;;;;;;;;;;;;;-1:-1:-1;21359:443:0;-1:-1:-1;;;;;21359:443:0;;:::i;16576:244::-;;;;;;;;;;;;;;;;-1:-1:-1;16576:244:0;-1:-1:-1;;;;;16576:244:0;;:::i;21810:478::-;;;;;;;;;;;;;;;;-1:-1:-1;21810:478:0;-1:-1:-1;;;;;21810:478:0;;:::i;18051:83::-;18121:5;;;;;;;;;;;;-1:-1:-1;;;18121:5:0;;;;18051:83;:::o;18963:161::-;19038:4;19055:39;19064:12;:10;:12::i;:::-;19078:7;19087:6;19055:8;:39::i;:::-;-1:-1:-1;19112:4:0;18963:161;;;;;:::o;20074:87::-;20143:10;;20074:87;:::o;18328:95::-;18408:7;;18328:95;:::o;19132:313::-;19230:4;19247:36;19257:6;19265:9;19276:6;19247:9;:36::i;:::-;19294:121;19303:6;19311:12;:10;:12::i;:::-;19325:89;19363:6;19325:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19325:19:0;;;;;;:11;:19;;;;;;19345:12;:10;:12::i;:::-;-1:-1:-1;;;;;19325:33:0;;;;;;;;;;;;-1:-1:-1;19325:33:0;;;:89;:37;:89::i;:::-;19294:8;:121::i;:::-;-1:-1:-1;19433:4:0;19132:313;;;;;:::o;21098:253::-;21164:7;21203;;21192;:18;;21184:73;;;;-1:-1:-1;;;21184:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21268:19;21291:10;:8;:10::i;:::-;21268:33;-1:-1:-1;21319:24:0;:7;21268:33;21319:11;:24::i;:::-;21312:31;;;21098:253;;;;:::o;18237:83::-;17355:1;18237:83;:::o;19453:218::-;19541:4;19558:83;19567:12;:10;:12::i;:::-;19581:7;19590:50;19629:10;19590:11;:25;19602:12;:10;:12::i;:::-;-1:-1:-1;;;;;19590:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19590:25:0;;;:34;;;;;;;;;;;:38;:50::i;28943:180::-;15853:12;:10;:12::i;:::-;15843:6;;-1:-1:-1;;;;;15843:6:0;;;:22;;;15835:67;;;;;-1:-1:-1;;;15835:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15835:67:0;;;;;;;;;;;;;;;29032:2:::1;29021:7;:13;;:32;;;;;29049:4;29038:7;:15;;29021:32;29013:72;;;::::0;;-1:-1:-1;;;29013:72:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29096:9;:19:::0;28943:180::o;20269:377::-;20321:14;20338:12;:10;:12::i;:::-;-1:-1:-1;;;;;20370:19:0;;;;;;:11;:19;;;;;;20321:29;;-1:-1:-1;20370:19:0;;20369:20;20361:77;;;;-1:-1:-1;;;20361:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20450:15;20474:19;20485:7;20474:10;:19::i;:::-;-1:-1:-1;;;;;;;;;20522:15:0;;;;;;:7;:15;;;;;;20449:44;;-1:-1:-1;20522:28:0;;:15;-1:-1:-1;20449:44:0;20522:19;:28::i;:::-;-1:-1:-1;;;;;20504:15:0;;;;;;:7;:15;;;;;:46;20571:7;;:20;;20583:7;20571:11;:20::i;:::-;20561:7;:30;20615:10;;:23;;20630:7;20615:14;:23::i;:::-;20602:10;:36;-1:-1:-1;;;20269:377:0:o;20173:88::-;20242:11;;20173:88;:::o;20654:436::-;20744:7;20783;;20772;:18;;20764:62;;;;;-1:-1:-1;;;20764:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20842:17;20837:246;;20877:15;20901:19;20912:7;20901:10;:19::i;:::-;-1:-1:-1;20876:44:0;;-1:-1:-1;20935:14:0;;-1:-1:-1;;;;;20935:14:0;20837:246;20984:23;21015:19;21026:7;21015:10;:19::i;:::-;-1:-1:-1;20982:52:0;;-1:-1:-1;21049:22:0;;-1:-1:-1;;;;;21049:22:0;28762:173;15853:12;:10;:12::i;:::-;15843:6;;-1:-1:-1;;;;;15843:6:0;;;:22;;;15835:67;;;;;-1:-1:-1;;;15835:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15835:67:0;;;;;;;;;;;;;;;28848:2:::1;28838:6;:12;;:30;;;;;28864:4;28854:6;:14;;28838:30;28830:69;;;::::0;;-1:-1:-1;;;28830:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;28910:8;:17:::0;28762:173::o;18431:198::-;-1:-1:-1;;;;;18521:20:0;;18497:7;18521:20;;;:11;:20;;;;;;;;18517:49;;;-1:-1:-1;;;;;;18550:16:0;;;;;;:7;:16;;;;;;18543:23;;18517:49;-1:-1:-1;;;;;18604:16:0;;;;;;:7;:16;;;;;;18584:37;;:19;:37::i;16273:148::-;15853:12;:10;:12::i;:::-;15843:6;;-1:-1:-1;;;;;15843:6:0;;;:22;;;15835:67;;;;;-1:-1:-1;;;15835:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15835:67:0;;;;;;;;;;;;;;;16380:1:::1;16364:6:::0;;16343:40:::1;::::0;-1:-1:-1;;;;;16364:6:0;;::::1;::::0;16343:40:::1;::::0;16380:1;;16343:40:::1;16411:1;16394:19:::0;;-1:-1:-1;;;;;;16394:19:0::1;::::0;;16273:148::o;15631:79::-;15669:7;15696:6;-1:-1:-1;;;;;15696:6:0;15631:79;:::o;19679:269::-;19772:4;19789:129;19798:12;:10;:12::i;:::-;19812:7;19821:96;19860:15;19821:96;;;;;;;;;;;;;;;;;:11;:25;19833:12;:10;:12::i;:::-;-1:-1:-1;;;;;19821:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19821:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18637:167::-;18715:4;18732:42;18742:12;:10;:12::i;:::-;18756:9;18767:6;18732:9;:42::i;19956:110::-;-1:-1:-1;;;;;20038:20:0;20014:4;20038:20;;;:11;:20;;;;;;;;;19956:110::o;18812:143::-;-1:-1:-1;;;;;18920:18:0;;;18893:7;18920:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18812:143::o;21359:443::-;15853:12;:10;:12::i;:::-;15843:6;;-1:-1:-1;;;;;15843:6:0;;;:22;;;15835:67;;;;;-1:-1:-1;;;15835:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15835:67:0;;;;;;;;;;;;;;;21451:42:::1;-1:-1:-1::0;;;;;21440:53:0;::::1;;;21432:100;;;;-1:-1:-1::0;;;21432:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21552:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21551:21;21543:61;;;::::0;;-1:-1:-1;;;21543:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;21618:16:0;::::1;21637:1;21618:16:::0;;;:7:::1;:16;::::0;;;;;:20;21615:108:::1;;-1:-1:-1::0;;;;;21694:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;21674:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;21655:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;21615:108:::1;-1:-1:-1::0;;;;;21733:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;21733:27:0::1;21756:4;21733:27:::0;;::::1;::::0;;;21771:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;21771:23:0::1;::::0;;::::1;::::0;;21359:443::o;16576:244::-;15853:12;:10;:12::i;:::-;15843:6;;-1:-1:-1;;;;;15843:6:0;;;:22;;;15835:67;;;;;-1:-1:-1;;;15835:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15835:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16665:22:0;::::1;16657:73;;;;-1:-1:-1::0;;;16657:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16767:6;::::0;;16746:38:::1;::::0;-1:-1:-1;;;;;16746:38:0;;::::1;::::0;16767:6;::::1;::::0;16746:38:::1;::::0;::::1;16795:6;:17:::0;;-1:-1:-1;;;;;;16795:17:0::1;-1:-1:-1::0;;;;;16795:17:0;;;::::1;::::0;;;::::1;::::0;;16576:244::o;21810:478::-;15853:12;:10;:12::i;:::-;15843:6;;-1:-1:-1;;;;;15843:6:0;;;:22;;;15835:67;;;;;-1:-1:-1;;;15835:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15835:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21891:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21883:60;;;::::0;;-1:-1:-1;;;21883:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;21959:9;21954:327;21978:9;:16:::0;21974:20;::::1;21954:327;;;22036:7;-1:-1:-1::0;;;;;22020:23:0::1;:9;22030:1;22020:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22020:12:0::1;:23;22016:254;;;22079:9;22089:16:::0;;-1:-1:-1;;22089:20:0;;;22079:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;22064:9:::1;:12:::0;;-1:-1:-1;;;;;22079:31:0;;::::1;::::0;22074:1;;22064:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22064:46:0::1;-1:-1:-1::0;;;;;22064:46:0;;::::1;;::::0;;22129:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22168:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22168:28:0::1;::::0;;22215:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22215:15:0;;;;;-1:-1:-1;;;;;;22215:15:0::1;::::0;;;;;22249:5:::1;;22016:254;21996:3;;21954:327;;;;21810:478:::0;:::o;95:106::-;183:10;95:106;:::o;22296:337::-;-1:-1:-1;;;;;22389:19:0;;22381:68;;;;-1:-1:-1;;;22381:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22468:21:0;;22460:68;;;;-1:-1:-1;;;22460:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22541:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22593:32;;;;;;;;;;;;;;;;;22296:337;;;:::o;22641:1096::-;-1:-1:-1;;;;;22738:20:0;;22730:70;;;;-1:-1:-1;;;22730:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22819:23:0;;22811:71;;;;-1:-1:-1;;;22811:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22910:1;22901:6;:10;22893:64;;;;-1:-1:-1;;;22893:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22991:7;:5;:7::i;:::-;-1:-1:-1;;;;;22981:17:0;:6;-1:-1:-1;;;;;22981:17:0;;;:41;;;;;23015:7;:5;:7::i;:::-;-1:-1:-1;;;;;23002:20:0;:9;-1:-1:-1;;;;;23002:20:0;;;22981:41;22978:134;;;17870:33;23045:22;;;23037:75;;;;-1:-1:-1;;;23037:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23137:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;23161:22:0;;;;;;:11;:22;;;;;;;;23160:23;23137:46;23133:597;;;23200:48;23222:6;23230:9;23241:6;23200:21;:48::i;:::-;23133:597;;;-1:-1:-1;;;;;23271:19:0;;;;;;:11;:19;;;;;;;;23270:20;:46;;;;-1:-1:-1;;;;;;23294:22:0;;;;;;:11;:22;;;;;;;;23270:46;23266:464;;;23333:46;23353:6;23361:9;23372:6;23333:19;:46::i;23266:464::-;-1:-1:-1;;;;;23402:19:0;;;;;;:11;:19;;;;;;;;23401:20;:47;;;;-1:-1:-1;;;;;;23426:22:0;;;;;;:11;:22;;;;;;;;23425:23;23401:47;23397:333;;;23465:44;23483:6;23491:9;23502:6;23465:17;:44::i;23397:333::-;-1:-1:-1;;;;;23531:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;23554:22:0;;;;;;:11;:22;;;;;;;;23531:45;23527:203;;;23593:48;23615:6;23623:9;23634:6;23593:21;:48::i;23527:203::-;23674:44;23692:6;23700:9;23711:6;23674:17;:44::i;:::-;22641:1096;;;:::o;4907:192::-;4993:7;5029:12;5021:6;;;;5013:29;;;;-1:-1:-1;;;5013:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5065:5:0;;;4907:192::o;27924:163::-;27965:7;27986:15;28003;28022:19;:17;:19::i;:::-;27985:56;;-1:-1:-1;27985:56:0;-1:-1:-1;28059:20:0;27985:56;;28059:11;:20::i;:::-;28052:27;;;;27924:163;:::o;6305:132::-;6363:7;6390:39;6394:1;6397;6390:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6383:46;6305:132;-1:-1:-1;;;6305:132:0:o;4004:181::-;4062:7;4094:5;;;4118:6;;;;4110:46;;;;;-1:-1:-1;;;4110:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26626:470;26685:7;26694;26703;26712;26721;26730;26751:23;26776:12;26790:13;26807:41;26819:7;26828:8;;26838:9;;26807:11;:41::i;:::-;26750:98;;;;;;26859:19;26882:10;:8;:10::i;:::-;26859:33;;26904:15;26921:23;26946:12;26962:46;26974:7;26983:4;26989:5;26996:11;26962;:46::i;:::-;26903:105;;-1:-1:-1;26903:105:0;-1:-1:-1;26903:105:0;-1:-1:-1;27059:15:0;;-1:-1:-1;27076:4:0;;-1:-1:-1;27082:5:0;;-1:-1:-1;;;;;26626:470:0;;;;;;;:::o;4468:136::-;4526:7;4553:43;4557:1;4560;4553:43;;;;;;;;;;;;;;;;;:3;:43::i;24988:632::-;25090:19;25113:10;:8;:10::i;:::-;25090:33;;25135:15;25152:23;25177:12;25191:23;25216:12;25230:13;25247:19;25258:7;25247:10;:19::i;:::-;25134:132;;;;;;;;;;;;25277:13;25294:22;25304:11;25294:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25345:15:0;;;;;;:7;:15;;;;;;25277:39;;-1:-1:-1;25345:28:0;;25365:7;25345:19;:28::i;:::-;-1:-1:-1;;;;;25327:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25402:7;:15;;;;:28;;25422:7;25402:19;:28::i;:::-;-1:-1:-1;;;;;25384:15:0;;;;;;;:7;:15;;;;;;:46;;;;25462:18;;;;;;;:39;;25485:15;25462:22;:39::i;:::-;-1:-1:-1;;;;;25441:18:0;;;;;;:7;:18;;;;;:60;25515:37;25527:4;25533:5;25540:4;25546:5;25515:11;:37::i;:::-;25585:9;-1:-1:-1;;;;;25568:44:0;25577:6;-1:-1:-1;;;;;25568:44:0;;25596:15;25568:44;;;;;;;;;;;;;;;;;;24988:632;;;;;;;;;;;:::o;24328:652::-;24428:19;24451:10;:8;:10::i;:::-;24428:33;;24473:15;24490:23;24515:12;24529:23;24554:12;24568:13;24585:19;24596:7;24585:10;:19::i;:::-;24472:132;;;;;;;;;;;;24615:13;24632:22;24642:11;24632:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24683:15:0;;;;;;:7;:15;;;;;;24615:39;;-1:-1:-1;24683:28:0;;24703:7;24683:19;:28::i;:::-;-1:-1:-1;;;;;24665:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;24743:18;;;;;:7;:18;;;;;:39;;24766:15;24743:22;:39::i;:::-;-1:-1:-1;;;;;24722:18:0;;;;;;:7;:18;;;;;;;;:60;;;;24814:7;:18;;;;:39;;24837:15;24814:22;:39::i;23745:575::-;23843:19;23866:10;:8;:10::i;:::-;23843:33;;23888:15;23905:23;23930:12;23944:23;23969:12;23983:13;24000:19;24011:7;24000:10;:19::i;:::-;23887:132;;;;;;;;;;;;24030:13;24047:22;24057:11;24047:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24098:15:0;;;;;;:7;:15;;;;;;24030:39;;-1:-1:-1;24098:28:0;;24118:7;24098:19;:28::i;25628:708::-;25730:19;25753:10;:8;:10::i;:::-;25730:33;;25775:15;25792:23;25817:12;25831:23;25856:12;25870:13;25887:19;25898:7;25887:10;:19::i;:::-;25774:132;;;;;;;;;;;;25917:13;25934:22;25944:11;25934:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25985:15:0;;;;;;:7;:15;;;;;;25917:39;;-1:-1:-1;25985:28:0;;26005:7;25985:19;:28::i;:::-;-1:-1:-1;;;;;25967:15:0;;;;;;:7;:15;;;;;;;;:46;;;;26042:7;:15;;;;:28;;26062:7;26042:19;:28::i;28095:561::-;28192:7;;28228;;28145;;;;;28252:289;28276:9;:16;28272:20;;28252:289;;;28342:7;28318;:21;28326:9;28336:1;28326:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28326:12:0;28318:21;;;;;;;;;;;;;:31;;:66;;;28377:7;28353;:21;28361:9;28371:1;28361:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28361:12:0;28353:21;;;;;;;;;;;;;:31;28318:66;28314:97;;;28394:7;;28403;;28386:25;;;;;;;;;28314:97;28436:34;28448:7;:21;28456:9;28466:1;28456:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28456:12:0;28448:21;;;;;;;;;;;;;28436:7;;:11;:34::i;:::-;28426:44;;28495:34;28507:7;:21;28515:9;28525:1;28515:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28515:12:0;28507:21;;;;;;;;;;;;;28495:7;;:11;:34::i;:::-;28485:44;-1:-1:-1;28294:3:0;;28252:289;;;-1:-1:-1;28577:7:0;;28565;;:20;;:11;:20::i;:::-;28555:7;:30;28551:61;;;28595:7;;28604;;28587:25;;;;;;;;28551:61;28631:7;;-1:-1:-1;28640:7:0;-1:-1:-1;28095:561:0;;;:::o;6933:278::-;7019:7;7054:12;7047:5;7039:28;;;;-1:-1:-1;;;7039:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7078:9;7094:1;7090;:5;;;;;;;6933:278;-1:-1:-1;;;;;6933:278:0:o;27104:395::-;27197:7;;;;27250:50;27296:3;27251:39;27296:3;27251:39;27252:7;27264:6;27252:11;:19::i;:::-;27251:25;;:39::i;27250:50::-;27235:65;-1:-1:-1;27311:13:0;27327:51;27374:3;27328:40;27374:3;27328:40;27329:7;27341;27329:11;:20::i;27327:51::-;27311:67;-1:-1:-1;27389:23:0;27415:28;27311:67;27415:17;:7;27427:4;27415:11;:17::i;:::-;:21;;:28::i;:::-;27389:54;27479:4;;-1:-1:-1;27485:5:0;;-1:-1:-1;27104:395:0;;-1:-1:-1;;;;;27104:395:0:o;27507:409::-;27617:7;;;;27673:24;:7;27685:11;27673;:24::i;:::-;27655:42;-1:-1:-1;27708:12:0;27723:21;:4;27732:11;27723:8;:21::i;:::-;27708:36;-1:-1:-1;27755:13:0;27771:22;:5;27781:11;27771:9;:22::i;:::-;27755:38;-1:-1:-1;27804:23:0;27830:28;27755:38;27830:17;:7;27842:4;27830:11;:17::i;:28::-;27877:7;;;;-1:-1:-1;27903:4:0;;-1:-1:-1;27507:409:0;;-1:-1:-1;;;;;;;27507:409:0:o;5358:471::-;5416:7;5661:6;5657:47;;-1:-1:-1;5691:1:0;5684:8;;5657:47;5728:5;;;5732:1;5728;:5;:1;5752:5;;;;;:10;5744:56;;;;-1:-1:-1;;;5744:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26344:274;26452:28;26474:5;26452:17;26464:4;26452:7;;:11;;:17;;;;:::i;:28::-;26442:7;:38;26504:10;;:20;;26519:4;26504:14;:20::i;:::-;26491:10;:33;26549:11;;:22;;26565:5;26549:15;:22::i;:::-;26535:11;:36;26592:7;;:18;;26604:5;26592:11;:18::i;:::-;26582:7;:28;-1:-1:-1;;;;26344:274:0:o
Swarm Source
ipfs://c26cd4380b1f0c6538ce0305c8418fe27adc1515a724a0378ccd2a0ef89b6e8d
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.