ERC-20
Overview
Max Total Supply
100,000,000,000 KAIKEN
Holders
15
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
306,335.199943920042059762 KAIKENValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KaikenToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-01 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ 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) { unchecked { 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) { unchecked { 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) { unchecked { // 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) { unchecked { 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) { unchecked { 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) { return a + b; } /** * @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 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) { return a * b; } /** * @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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { 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) { 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) { unchecked { 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. * * 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). * * 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) { unchecked { 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^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, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 override returns (uint8) { return 18; } /** * @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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); 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] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); 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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += 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 += amount; _balances[account] += 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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= 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 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: /verified-sources/0x5b982018545ff26f0cf2e3CdA8aeD859e3072e07/sources/github/kaikendev/kaikenCoin/contracts/mock/KaikenToken.sol pragma solidity 0.8.4; contract KaikenToken is ERC20 { using SafeMath for uint; // Addresses address owner; // dev address private investors = 0x456ee95063e52359530b9702C9A3d1EEB46864A7; address private exchanges = 0xa611d21b868f2A1d9Cfb383152DC3483Ea15F81F; address private marketing = 0x085BA6bef0b3fEACf2D4Cb3Dba5CA11520E2AD01; address private reserve = 0xFe76451745386702e091113170b703096dC9E024; //structs struct TaxRecord { uint timestamp; uint tax; uint balance; } struct GenesisRecord { uint timestamp; uint balance; } uint transferMode; uint[] startingTaxes = [ 5, 8, 10, 15, 20, 25, 30 ]; uint[] thresholds = [ 5, 10, 20, 30, 40, 50 ]; // constants uint private constant BPS = 100; uint private constant ONE_YEAR = 365; uint private constant TRANSFER = 0; uint private constant TRANSFER_FROM = 1; // constants for tokenomics (%) uint private OWNER = 20000000000; uint private RESERVE = 30000000000; uint private INVESTORS = 15000000000; uint private EXCHANGES = 20000000000; uint private MARKETING = 15000000000; // mappings mapping(address => bool) exempts; mapping(address => bool) totalExempts; mapping(address => TaxRecord[]) accountTaxMap; mapping(address => TaxRecord[]) sandboxAccountTaxMap; mapping(address => GenesisRecord) genesis; //modifiers modifier onlyOwner { require(msg.sender == owner, 'Only the owner can invoke this call.'); _; } // events event AddedExempt(address exempted); event RemovedExempt(address exempted); event RemovedTotalExempt(address exempted); event UpdatedExempt(address exempted, bool isValid); event UpdatedTotalExempt(address exempted, bool isValid); event UpdatedReserve(address reserve); event TaxRecordSet(address _addr, uint timestamp, uint balance, uint tax); event UpdatedStartingTaxes(uint[] startingTaxes); event UpdatedThresholds(uint[] thresholds); event InitializedExempts(uint initialized); event InitializedTotalExempts(uint initialized); // sandbox events event SandboxTaxRecordSet(address addr, uint timestamp, uint balance, uint tax); constructor( string memory _name, string memory _symbol ) public ERC20(_name, _symbol) { owner = msg.sender; _mint(owner, OWNER * (10 ** uint256(decimals()))); _mint(reserve, RESERVE * (10 ** uint256(decimals()))); _mint(exchanges, EXCHANGES * (10 ** uint256(decimals()))); _mint(investors, INVESTORS * (10 ** uint256(decimals()))); _mint(marketing, MARKETING * (10 ** uint256(decimals()))); _initializeExempts(); _initializeTotalExempts(); } // Overrides function transfer( address to, uint amount ) public virtual override returns (bool){ transferMode = TRANSFER; return _internalTransfer(msg.sender, to, amount); } function transferFrom( address from, address to, uint amount ) public virtual override returns (bool success) { transferMode = TRANSFER_FROM; return _internalTransfer(from, to, amount); } // Reads function getStartingTaxes() public view returns(uint[] memory) { return startingTaxes; } function getThresholds() public view returns(uint[] memory){ return thresholds; } function getExempt(address _addr) public view returns(bool){ return exempts[_addr]; } function getTotalExempt(address _addr) public view returns(bool){ return totalExempts[_addr]; } function getTaxRecord(address _addr) public view returns(TaxRecord[] memory){ return accountTaxMap[_addr]; } function getGenesisRecord(address _addr) public view returns(GenesisRecord memory){ return genesis[_addr]; } function getReserve() public view returns(address) { return reserve; } // Writes function updateStartingTaxes(uint[] memory _startingTaxes) public onlyOwner { startingTaxes = _startingTaxes; emit UpdatedStartingTaxes(startingTaxes); } function updateThresholds(uint[] memory _thresholds) public onlyOwner { thresholds = _thresholds; emit UpdatedThresholds(thresholds); } function updateReserve(address _reserve) public onlyOwner { reserve = _reserve; emit UpdatedReserve(reserve); } function addExempt(address _exempted, bool totalExempt) public onlyOwner { require(_exempted != owner, 'Cannot tax exempt the owner'); _addExempt(_exempted, totalExempt); } function updateExempt(address _exempted, bool isValid) public onlyOwner { require(_exempted != owner, 'Can not update Owners tax exempt status'); exempts[_exempted] = isValid; emit UpdatedExempt(_exempted, isValid); } function updateTotalExempt(address _exempted, bool isValid) public onlyOwner { require(_exempted != owner, 'Can not update Owners tax exempt status'); totalExempts[_exempted] = isValid; if(isValid) { exempts[_exempted] = false; } emit UpdatedTotalExempt(_exempted, isValid); } function removeExempt(address _exempted) public onlyOwner { require(exempts[_exempted], 'Exempt address is not existent'); exempts[_exempted] = false; emit RemovedExempt(_exempted); } function removeTotalExempt(address _exempted) public onlyOwner { require(totalExempts[_exempted], 'Total Exempt address is not existent'); totalExempts[_exempted] = false; emit RemovedTotalExempt(_exempted); } // internal functions function _addExempt(address _exempted, bool totalExempt) internal { require(!exempts[_exempted] || !totalExempts[_exempted], 'Exempt address already existent'); if(totalExempt == false) { exempts[_exempted] = true; } else { totalExempts[_exempted] = true; exempts[_exempted] = false; } emit AddedExempt(_exempted); } function _initializeExempts() internal { // initialize the following exempts: // These accounts are exempted from taxation exempts[exchanges] = true; exempts[investors] = true; exempts[marketing] = true; exempts[0xf164fC0Ec4E93095b804a4795bBe1e041497b92a] = true; // UniswapV1Router01 exempts[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true; // UniswapV2Router02 exempts[0xE592427A0AEce92De3Edee1F18E0157C05861564] = true; // UniswapV3Router03 exempts[0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F] = true; // Sushiswap: Router exempts[0xdb38ae75c5F44276803345f7F02e95A0aeEF5944] = true; // 1inch exempts[0xBA12222222228d8Ba445958a75a0704d566BF2C8] = true; // Balancer Vault emit InitializedExempts(1); } function _initializeTotalExempts() internal { // initialize the following total exempts: // These accounts are exempt the to and from accounts that // interact with them. This is for certain exchanges that fail // with any forms of taxation. totalExempts[reserve] = true; totalExempts[0xCCE8D59AFFdd93be338FC77FA0A298C2CB65Da59] = true; // Bilaxy1 totalExempts[0xB5Ef14898928FDCE71b54Ea80350B76F9a3617a6] = true; // Bilaxy2 totalExempts[0x9BA3560231e3E0aD7dde23106F5B98C72E30b468] = true; // Bilaxy3 emit InitializedTotalExempts(1); } function _getTaxPercentage( address _from, address _to, uint _sentAmount ) internal returns (uint tax) { uint taxPercentage = 0; uint balanceOfSenderOrFrom = balanceOf(_from); uint noww = block.timestamp; require( balanceOfSenderOrFrom > 0 && _sentAmount > 0, 'Intangible balance or amount to send' ); address accountLiable = transferMode == TRANSFER_FROM ? _from : msg.sender; bool isDueForTaxExemption = !exempts[accountLiable] && !totalExempts[accountLiable] && genesis[accountLiable].timestamp > 0 && genesis[accountLiable].balance > 0 && balanceOf(accountLiable) >= genesis[accountLiable].balance && noww - genesis[accountLiable].timestamp >= ONE_YEAR * 1 days; if(isDueForTaxExemption) _addExempt(accountLiable, false); // Do not tax any transfers associated with total exemptions // Do not tax any transfers from exempted accounts if ( exempts[accountLiable] || totalExempts[accountLiable] || totalExempts[_to] ) return taxPercentage; uint percentageTransferred = _sentAmount.mul(100).div(balanceOfSenderOrFrom); if (percentageTransferred <= thresholds[0]) { taxPercentage = startingTaxes[0]; } else if (percentageTransferred <= thresholds[1]) { taxPercentage = startingTaxes[1]; } else if (percentageTransferred <= thresholds[2]) { taxPercentage = startingTaxes[2]; } else if (percentageTransferred <= thresholds[3]) { taxPercentage = startingTaxes[3]; } else if (percentageTransferred <= thresholds[4]) { taxPercentage = startingTaxes[4]; } else if (percentageTransferred <= thresholds[5]) { taxPercentage = startingTaxes[5]; } else { taxPercentage = startingTaxes[6]; } _setTaxRecord(accountLiable, taxPercentage); return taxPercentage; } function _getReceivedAmount( address _from, address _to, uint _sentAmount ) internal returns (uint receivedAmount, uint taxAmount) { uint taxPercentage = _getTaxPercentage(_from, _to, _sentAmount); receivedAmount = _sentAmount.sub(_sentAmount.div(BPS).mul(taxPercentage)); taxAmount = _sentAmount.sub(receivedAmount); } function _setTaxRecord( address _addr, uint _tax ) internal { uint timestamp = block.timestamp; accountTaxMap[_addr].push(TaxRecord({ timestamp: timestamp, tax: _tax, balance: balanceOf(_addr) })); emit TaxRecordSet(_addr, timestamp, balanceOf(_addr), _tax); } function _internalTransfer( address _from, // `msg.sender` || `from` address _to, uint _amount ) internal returns (bool success){ uint noww = block.timestamp; if(_from == owner && !exempts[owner]) { // timelock owner-originated transfers for a year. require(noww >= 1653911772, 'Owner is timelocked for 1 year'); _addExempt(owner, false); } (, uint taxAmount) = _getReceivedAmount(_from, _to, _amount); require( balanceOf(_from) >= _amount.add(taxAmount), 'Exclusive taxation: Cannot afford to pay tax' ); if(taxAmount > 0) { _burn(_from, taxAmount); _mint(reserve, taxAmount); } transferMode == TRANSFER ? super.transfer(_to, _amount) : super.transferFrom(_from, _to, _amount); if (genesis[_to].timestamp == 0) { genesis[_to].timestamp = noww; } genesis[_to].balance = balanceOf(_to); genesis[_from].balance = balanceOf(_from); genesis[_from].timestamp = noww; return true; } // Sandbox functions function sandboxSetTaxRecord( address addr, uint _tax ) public { uint noww = block.timestamp; sandboxAccountTaxMap[addr].push(TaxRecord({ timestamp: noww, tax: _tax, balance: balanceOf(addr) })); emit SandboxTaxRecordSet(addr, noww, balanceOf(addr), _tax); } function sandboxGetTaxRecord( address addr ) public view returns (TaxRecord[] memory tr){ tr = sandboxAccountTaxMap[addr]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exempted","type":"address"}],"name":"AddedExempt","type":"event"},{"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":"uint256","name":"initialized","type":"uint256"}],"name":"InitializedExempts","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"initialized","type":"uint256"}],"name":"InitializedTotalExempts","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exempted","type":"address"}],"name":"RemovedExempt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exempted","type":"address"}],"name":"RemovedTotalExempt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"SandboxTaxRecordSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"TaxRecordSet","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exempted","type":"address"},{"indexed":false,"internalType":"bool","name":"isValid","type":"bool"}],"name":"UpdatedExempt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"reserve","type":"address"}],"name":"UpdatedReserve","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"startingTaxes","type":"uint256[]"}],"name":"UpdatedStartingTaxes","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"thresholds","type":"uint256[]"}],"name":"UpdatedThresholds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exempted","type":"address"},{"indexed":false,"internalType":"bool","name":"isValid","type":"bool"}],"name":"UpdatedTotalExempt","type":"event"},{"inputs":[{"internalType":"address","name":"_exempted","type":"address"},{"internalType":"bool","name":"totalExempt","type":"bool"}],"name":"addExempt","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":"address","name":"_addr","type":"address"}],"name":"getExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getGenesisRecord","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"internalType":"struct KaikenToken.GenesisRecord","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStartingTaxes","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getTaxRecord","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"tax","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"internalType":"struct KaikenToken.TaxRecord[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getThresholds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getTotalExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_exempted","type":"address"}],"name":"removeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_exempted","type":"address"}],"name":"removeTotalExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"sandboxGetTaxRecord","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"tax","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"internalType":"struct KaikenToken.TaxRecord[]","name":"tr","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"sandboxSetTaxRecord","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_exempted","type":"address"},{"internalType":"bool","name":"isValid","type":"bool"}],"name":"updateExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_reserve","type":"address"}],"name":"updateReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_startingTaxes","type":"uint256[]"}],"name":"updateStartingTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_thresholds","type":"uint256[]"}],"name":"updateThresholds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_exempted","type":"address"},{"internalType":"bool","name":"isValid","type":"bool"}],"name":"updateTotalExempt","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600680546001600160a01b031990811673456ee95063e52359530b9702c9a3d1eeb46864a71790915560078054821673a611d21b868f2a1d9cfb383152dc3483ea15f81f17815560088054831673085ba6bef0b3feacf2d4cb3dba5ca11520e2ad011781556009805490931673fe76451745386702e091113170b703096dc9e024179092556101606040526005608090815260a092909252600a60c052600f60e052601461010052601961012052601e61014052620000c191600b916200061d565b506040805160c08101825260058152600a6020820152601491810191909152601e606082015260286080820152603260a08201526200010590600c9060066200061d565b506404a817c800600d556406fc23ac00600e5564037e11d600600f556404a817c80060105564037e11d6006011553480156200014057600080fd5b5060405162002c2a38038062002c2a8339810160408190526200016391620007b9565b8151829082906200017c90600390602085019062000672565b5080516200019290600490602084019062000672565b5050600580546001600160a01b03191633908117909155620001dd9150620001b8601290565b620001c89060ff16600a62000884565b600d54620001d791906200094f565b620002b1565b6009546200020b906001600160a01b0316620001fc6012600a62000884565b600e54620001d791906200094f565b60075462000239906001600160a01b03166200022a6012600a62000884565b601054620001d791906200094f565b60065462000267906001600160a01b0316620002586012600a62000884565b600f54620001d791906200094f565b60085462000295906001600160a01b0316620002866012600a62000884565b601154620001d791906200094f565b6200029f62000399565b620002a96200052f565b5050620009da565b6001600160a01b0382166200030c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000320919062000820565b90915550506001600160a01b038216600090815260208190526040812080548392906200034f90849062000820565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6007546001600160a01b0390811660009081526012602090815260408083208054600160ff199182168117909255600654861685528285208054821683179055600854909516845281842080548616821790557f5aa7596e35dce516ef2c38af957bbf8c90b6dce317fce27181f9dc8c2732ddce80548616821790557f3c6737805ae477fd0cfdda13dc5f99b32fcbfecb81e47f9e11e1b03813c08ec280548616821790557f1ca0b149dbfd1580fe7f496f7f1457fe9a95cc13335fac5329a4de487a81ed0f80548616821790557f57a20713886ddd7dca712cf0536d08dc25d8eb4a22c93a801d9cd62a4569825c80548616821790557f6d3ced6c07822cd8901f7456c3654c9a183199560ec2b4b0d9721c175ddf3268805486168217905573ba12222222228d8ba445958a75a0704d566bf2c89093527f5de2cd7300897fe70198e190763465ee5c3cab3fe3a3753381e7755000dc89118054909416831790935591519081527fad4d7f63393d86a66a01652719d97d2ed81e450d58dd7b155cf96b7b29c5ca8191015b60405180910390a1565b6009546001600160a01b031660009081526013602090815260408083208054600160ff1991821681179092557ff22978bb0935f454ace443fc6b10f07ac08c46a23183c1e04533d8e931e0eb9980548216831790557feb5466c33414cc6af8d14db9d184509440dfe41f9c210096b52f6bb6cc949ea08054821683179055739ba3560231e3e0ad7dde23106f5b98c72e30b4689094527f7ba99e3e0f584fd7be19388fada2beed97dadc08d4f15d526c927ee3625af10880549094168117909355519182527f29365c12ba82b7f2c31a4687b5681735fae7d0aa2e89156f024fd66893fda1ed910162000525565b82805482825590600052602060002090810192821562000660579160200282015b8281111562000660578251829060ff169055916020019190600101906200063e565b506200066e929150620006ef565b5090565b828054620006809062000971565b90600052602060002090601f016020900481019282620006a4576000855562000660565b82601f10620006bf57805160ff191683800117855562000660565b8280016001018555821562000660579182015b8281111562000660578251825591602001919060010190620006d2565b5b808211156200066e5760008155600101620006f0565b600082601f83011262000717578081fd5b81516001600160401b0380821115620007345762000734620009c4565b604051601f8301601f19908116603f011681019082821181831017156200075f576200075f620009c4565b816040528381526020925086838588010111156200077b578485fd5b8491505b838210156200079e57858201830151818301840152908201906200077f565b83821115620007af57848385830101525b9695505050505050565b60008060408385031215620007cc578182fd5b82516001600160401b0380821115620007e3578384fd5b620007f18683870162000706565b9350602085015191508082111562000807578283fd5b50620008168582860162000706565b9150509250929050565b60008219821115620008365762000836620009ae565b500190565b600181815b808511156200087c578160001904821115620008605762000860620009ae565b808516156200086e57918102915b93841c939080029062000840565b509250929050565b600062000892838362000899565b9392505050565b600082620008aa5750600162000949565b81620008b95750600062000949565b8160018114620008d25760028114620008dd57620008fd565b600191505062000949565b60ff841115620008f157620008f1620009ae565b50506001821b62000949565b5060208310610133831016604e8410600b841016171562000922575081810a62000949565b6200092e83836200083b565b8060001904821115620009455762000945620009ae565b0290505b92915050565b60008160001904831182151516156200096c576200096c620009ae565b500290565b600181811c908216806200098657607f821691505b60208210811415620009a857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61224080620009ea6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f95780639c3977b511610097578063b24ac7b711610071578063b24ac7b714610444578063dd62ed3e14610457578063ee742b6b14610490578063f56d053c146104a357600080fd5b80639c3977b514610409578063a457c2d71461041e578063a9059cbb1461043157600080fd5b80639004a3cf116100d35780639004a3cf146103c857806395d89b41146103db5780639905a060146103e35780639af82ce9146103f657600080fd5b806370a08231146103765780637cb73a1f146103895780638fe160e1146103b557600080fd5b8063313ce56711610166578063590faef911610140578063590faef91461031557806359bf5d391461033557806365fe4ffd1461035057806369b047771461036357600080fd5b8063313ce567146102e057806336ffc2d3146102ef578063395093511461030257600080fd5b80631a7e8597116101a25780631a7e85971461021c57806323b872dd1461028c578063262bdda31461029f5780632ff36d46146102b457600080fd5b806306fdde03146101c9578063095ea7b3146101e757806318160ddd1461020a575b600080fd5b6101d16104ab565b6040516101de9190612057565b60405180910390f35b6101fa6101f5366004611e96565b61053d565b60405190151581526020016101de565b6002545b6040519081526020016101de565b61027161022a366004611dd5565b6040805180820190915260008082526020820152506001600160a01b0316600090815260166020908152604091829020825180840190935280548352600101549082015290565b604080518251815260209283015192810192909252016101de565b6101fa61029a366004611e21565b610553565b6102b26102ad366004611e5c565b61056f565b005b6101fa6102c2366004611dd5565b6001600160a01b031660009081526012602052604090205460ff1690565b604051601281526020016101de565b6102b26102fd366004611dd5565b61060e565b6101fa610310366004611e96565b610704565b610328610323366004611dd5565b610740565b6040516101de9190611f7f565b6009546040516001600160a01b0390911681526020016101de565b6102b261035e366004611e5c565b6107d3565b6102b2610371366004611ebf565b61088f565b61020e610384366004611dd5565b6108fd565b6101fa610397366004611dd5565b6001600160a01b031660009081526013602052604090205460ff1690565b6102b26103c3366004611e96565b610918565b6102b26103d6366004611e5c565b6109f8565b6101d1610ade565b6102b26103f1366004611ebf565b610aed565b610328610404366004611dd5565b610b5b565b610411610be0565b6040516101de9190611fd8565b6101fa61042c366004611e96565b610c37565b6101fa61043f366004611e96565b610cd2565b6102b2610452366004611dd5565b610ce4565b61020e610465366004611def565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102b261049e366004611dd5565b610dc7565b610411610e3f565b6060600380546104ba906121a3565b80601f01602080910402602001604051908101604052809291908181526020018280546104e6906121a3565b80156105335780601f1061050857610100808354040283529160200191610533565b820191906000526020600020905b81548152906001019060200180831161051657829003601f168201915b5050505050905090565b600061054a338484610e95565b50600192915050565b6001600a556000610565848484610fba565b90505b9392505050565b6005546001600160a01b031633146105a25760405162461bcd60e51b8152600401610599906120f1565b60405180910390fd5b6005546001600160a01b03838116911614156106005760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f7420746178206578656d707420746865206f776e657200000000006044820152606401610599565b61060a82826111cd565b5050565b6005546001600160a01b031633146106385760405162461bcd60e51b8152600401610599906120f1565b6001600160a01b03811660009081526013602052604090205460ff166106ac5760405162461bcd60e51b8152602060048201526024808201527f546f74616c204578656d70742061646472657373206973206e6f7420657869736044820152631d195b9d60e21b6064820152608401610599565b6001600160a01b038116600081815260136020908152604091829020805460ff1916905590519182527f06419e2dc00935e4ec76dffc065c793d4f2843fe4be5c4ebea715e8361bad90591015b60405180910390a150565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161054a91859061073b908690612135565b610e95565b6001600160a01b0381166000908152601560209081526040808320805482518185028101850190935280835260609492939192909184015b828210156107c85783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190610778565b505050509050919050565b6005546001600160a01b031633146107fd5760405162461bcd60e51b8152600401610599906120f1565b6005546001600160a01b038381169116141561082b5760405162461bcd60e51b8152600401610599906120aa565b6001600160a01b038216600081815260126020908152604091829020805460ff19168515159081179091558251938452908301527f2f5464dedfc9c7e0801f6bbb88f27616c999957a090e3613fba15304cec32dae91015b60405180910390a15050565b6005546001600160a01b031633146108b95760405162461bcd60e51b8152600401610599906120f1565b80516108cc90600c906020840190611d59565b507f2b7ddefab100602642738d2ef98dae1f01507518f499931d49052353e5ec7116600c6040516106f9919061201c565b6001600160a01b031660009081526020819052604090205490565b600042905060156000846001600160a01b03166001600160a01b031681526020019081526020016000206040518060600160405280838152602001848152602001610962866108fd565b9052815460018181018455600093845260209384902083516003909302019182559282015192810192909255604001516002909101557f6b785de9d99adb0cee10abec5e29aefa186d51f89d5a3146eba52d27a3b7d1e783826109c4826108fd565b604080516001600160a01b0390941684526020840192909252908201526060810184905260800160405180910390a1505050565b6005546001600160a01b03163314610a225760405162461bcd60e51b8152600401610599906120f1565b6005546001600160a01b0383811691161415610a505760405162461bcd60e51b8152600401610599906120aa565b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155610a9e576001600160a01b0382166000908152601260205260409020805460ff191690555b604080516001600160a01b038416815282151560208201527f2c34a81f6992f3a3271a848cf9de2e116a04dcf4fd84baf0bc970123612a18ca9101610883565b6060600480546104ba906121a3565b6005546001600160a01b03163314610b175760405162461bcd60e51b8152600401610599906120f1565b8051610b2a90600b906020840190611d59565b507f793bf89e1f5735707ce59a54f5f29ee979d06ca240e09027a69bc86dd0001f87600b6040516106f9919061201c565b6001600160a01b03811660009081526014602090815260408083208054825181850281018501909352808352606094929391929091840182156107c85783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190610778565b6060600c80548060200260200160405190810160405280929190818152602001828054801561053357602002820191906000526020600020905b815481526020019060010190808311610c1a575050505050905090565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610599565b610cc8338561073b868561218c565b5060019392505050565b6000600a819055610568338484610fba565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b8152600401610599906120f1565b6001600160a01b03811660009081526012602052604090205460ff16610d765760405162461bcd60e51b815260206004820152601e60248201527f4578656d70742061646472657373206973206e6f74206578697374656e7400006044820152606401610599565b6001600160a01b038116600081815260126020908152604091829020805460ff1916905590519182527feb6e11af6901799726bf7474a0a2f35414580dc5743d89013bad0aa7f506fad491016106f9565b6005546001600160a01b03163314610df15760405162461bcd60e51b8152600401610599906120f1565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f1789efb3eab49302df559b4d7dba3b406d2b9d065ecacf6e27c16b48835c273e906020016106f9565b6060600b8054806020026020016040519081016040528092919081815260200182805480156105335760200282019190600052602060002090815481526020019060010190808311610c1a575050505050905090565b6001600160a01b038316610ef75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610599565b6001600160a01b038216610f585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610599565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60055460009042906001600160a01b038681169116148015610ff757506005546001600160a01b031660009081526012602052604090205460ff16155b1561106757636294b0dc8110156110505760405162461bcd60e51b815260206004820152601e60248201527f4f776e65722069732074696d656c6f636b656420666f722031207965617200006044820152606401610599565b600554611067906001600160a01b031660006111cd565b60006110748686866112f9565b915061108290508482611341565b61108b876108fd565b10156110ee5760405162461bcd60e51b815260206004820152602c60248201527f4578636c7573697665207461786174696f6e3a2043616e6e6f74206166666f7260448201526b0c840e8de40e0c2f240e8c2f60a31b6064820152608401610599565b8015611114576110fe868261134d565b600954611114906001600160a01b03168261149c565b600a541561112c5761112786868661157b565b611136565b6111368585611627565b506001600160a01b038516600090815260166020526040902054611170576001600160a01b03851660009081526016602052604090208290555b611179856108fd565b6001600160a01b03861660009081526016602052604090206001015561119e866108fd565b6001600160a01b0387166000908152601660205260409020600180820192909255929092555090509392505050565b6001600160a01b03821660009081526012602052604090205460ff16158061120e57506001600160a01b03821660009081526013602052604090205460ff16155b61125a5760405162461bcd60e51b815260206004820152601f60248201527f4578656d7074206164647265737320616c7265616479206578697374656e74006044820152606401610599565b80611287576001600160a01b0382166000908152601260205260409020805460ff191660011790556112c0565b6001600160a01b0382166000908152601360209081526040808320805460ff199081166001179091556012909252909120805490911690555b6040516001600160a01b03831681527f622908417e33f2d102bfc1b18904f1578f8b2ee8f5f66311062769763a48385690602001610883565b6000806000611309868686611634565b905061132a6113238261131d876064611ab1565b90611abd565b8590611ac9565b92506113368484611ac9565b915050935093915050565b60006105688284612135565b6001600160a01b0382166113ad5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610599565b6001600160a01b038216600090815260208190526040902054818110156114215760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610599565b61142b828261218c565b6001600160a01b0384166000908152602081905260408120919091556002805484929061145990849061218c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610fad565b6001600160a01b0382166114f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610599565b80600260008282546115049190612135565b90915550506001600160a01b03821660009081526020819052604081208054839290611531908490612135565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000611588848484611ad5565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561160d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610599565b61161c853361073b868561218c565b506001949350505050565b600061054a338484611ad5565b60008080611641866108fd565b90504281158015906116535750600085115b6116ab5760405162461bcd60e51b8152602060048201526024808201527f496e74616e6769626c652062616c616e6365206f7220616d6f756e7420746f206044820152631cd95b9960e21b6064820152608401610599565b60006001600a54146116bd57336116bf565b875b6001600160a01b0381166000908152601260205260408120549192509060ff1615801561170557506001600160a01b03821660009081526013602052604090205460ff16155b801561172857506001600160a01b03821660009081526016602052604090205415155b801561174e57506001600160a01b03821660009081526016602052604090206001015415155b801561177d57506001600160a01b03821660009081526016602052604090206001015461177a836108fd565b10155b80156117b9575061179361016d6201518061216d565b6001600160a01b0383166000908152601660205260409020546117b6908561218c565b10155b905080156117cc576117cc8260006111cd565b6001600160a01b03821660009081526012602052604090205460ff168061180b57506001600160a01b03821660009081526013602052604090205460ff165b8061182e57506001600160a01b03881660009081526013602052604090205460ff165b15611840578495505050505050610568565b6000611857856118518a6064611abd565b90611ab1565b9050600c60008154811061187b57634e487b7160e01b600052603260045260246000fd5b906000526020600020015481116118c057600b6000815481106118ae57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549550611a99565b600c6001815481106118e257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154811161191557600b6001815481106118ae57634e487b7160e01b600052603260045260246000fd5b600c60028154811061193757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154811161196a57600b6002815481106118ae57634e487b7160e01b600052603260045260246000fd5b600c60038154811061198c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015481116119bf57600b6003815481106118ae57634e487b7160e01b600052603260045260246000fd5b600c6004815481106119e157634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611a1457600b6004815481106118ae57634e487b7160e01b600052603260045260246000fd5b600c600581548110611a3657634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611a6957600b6005815481106118ae57634e487b7160e01b600052603260045260246000fd5b600b600681548110611a8b57634e487b7160e01b600052603260045260246000fd5b906000526020600020015495505b611aa38387611cad565b509398975050505050505050565b6000610568828461214d565b6000610568828461216d565b6000610568828461218c565b6001600160a01b038316611b395760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610599565b6001600160a01b038216611b9b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610599565b6001600160a01b03831660009081526020819052604090205481811015611c135760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610599565b611c1d828261218c565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611c53908490612135565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c9f91815260200190565b60405180910390a350505050565b600042905060146000846001600160a01b03166001600160a01b031681526020019081526020016000206040518060600160405280838152602001848152602001611cf7866108fd565b9052815460018181018455600093845260209384902083516003909302019182559282015192810192909255604001516002909101557ffc75473a3e9ee26aff1c5d83ba766038a0382e0ebb944323f0a119264d5637f083826109c4826108fd565b828054828255906000526020600020908101928215611d94579160200282015b82811115611d94578251825591602001919060010190611d79565b50611da0929150611da4565b5090565b5b80821115611da05760008155600101611da5565b80356001600160a01b0381168114611dd057600080fd5b919050565b600060208284031215611de6578081fd5b61056882611db9565b60008060408385031215611e01578081fd5b611e0a83611db9565b9150611e1860208401611db9565b90509250929050565b600080600060608486031215611e35578081fd5b611e3e84611db9565b9250611e4c60208501611db9565b9150604084013590509250925092565b60008060408385031215611e6e578182fd5b611e7783611db9565b915060208301358015158114611e8b578182fd5b809150509250929050565b60008060408385031215611ea8578182fd5b611eb183611db9565b946020939093013593505050565b60006020808385031215611ed1578182fd5b823567ffffffffffffffff80821115611ee8578384fd5b818501915085601f830112611efb578384fd5b813581811115611f0d57611f0d6121f4565b8060051b604051601f19603f83011681018181108582111715611f3257611f326121f4565b604052828152858101935084860182860187018a1015611f50578788fd5b8795505b83861015611f72578035855260019590950194938601938601611f54565b5098975050505050505050565b602080825282518282018190526000919060409081850190868401855b82811015611fcb5781518051855286810151878601528501518585015260609093019290850190600101611f9c565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561201057835183529284019291840191600101611ff4565b50909695505050505050565b6020808252825482820181905260008481528281209092916040850190845b818110156120105783548352600193840193928501920161203b565b6000602080835283518082850152825b8181101561208357858101830151858201604001528201612067565b818111156120945783604083870101525b50601f01601f1916929092016040019392505050565b60208082526027908201527f43616e206e6f7420757064617465204f776e65727320746178206578656d70746040820152662073746174757360c81b606082015260800190565b60208082526024908201527f4f6e6c7920746865206f776e65722063616e20696e766f6b652074686973206360408201526330b6361760e11b606082015260800190565b60008219821115612148576121486121de565b500190565b60008261216857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612187576121876121de565b500290565b60008282101561219e5761219e6121de565b500390565b600181811c908216806121b757607f821691505b602082108114156121d857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212208aa16c8f9ec2119ab334b111aa7d7a45e2f0b1cfaa26c04c9da5a03305142e2264736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b4b61696b656e546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064b41494b454e0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f95780639c3977b511610097578063b24ac7b711610071578063b24ac7b714610444578063dd62ed3e14610457578063ee742b6b14610490578063f56d053c146104a357600080fd5b80639c3977b514610409578063a457c2d71461041e578063a9059cbb1461043157600080fd5b80639004a3cf116100d35780639004a3cf146103c857806395d89b41146103db5780639905a060146103e35780639af82ce9146103f657600080fd5b806370a08231146103765780637cb73a1f146103895780638fe160e1146103b557600080fd5b8063313ce56711610166578063590faef911610140578063590faef91461031557806359bf5d391461033557806365fe4ffd1461035057806369b047771461036357600080fd5b8063313ce567146102e057806336ffc2d3146102ef578063395093511461030257600080fd5b80631a7e8597116101a25780631a7e85971461021c57806323b872dd1461028c578063262bdda31461029f5780632ff36d46146102b457600080fd5b806306fdde03146101c9578063095ea7b3146101e757806318160ddd1461020a575b600080fd5b6101d16104ab565b6040516101de9190612057565b60405180910390f35b6101fa6101f5366004611e96565b61053d565b60405190151581526020016101de565b6002545b6040519081526020016101de565b61027161022a366004611dd5565b6040805180820190915260008082526020820152506001600160a01b0316600090815260166020908152604091829020825180840190935280548352600101549082015290565b604080518251815260209283015192810192909252016101de565b6101fa61029a366004611e21565b610553565b6102b26102ad366004611e5c565b61056f565b005b6101fa6102c2366004611dd5565b6001600160a01b031660009081526012602052604090205460ff1690565b604051601281526020016101de565b6102b26102fd366004611dd5565b61060e565b6101fa610310366004611e96565b610704565b610328610323366004611dd5565b610740565b6040516101de9190611f7f565b6009546040516001600160a01b0390911681526020016101de565b6102b261035e366004611e5c565b6107d3565b6102b2610371366004611ebf565b61088f565b61020e610384366004611dd5565b6108fd565b6101fa610397366004611dd5565b6001600160a01b031660009081526013602052604090205460ff1690565b6102b26103c3366004611e96565b610918565b6102b26103d6366004611e5c565b6109f8565b6101d1610ade565b6102b26103f1366004611ebf565b610aed565b610328610404366004611dd5565b610b5b565b610411610be0565b6040516101de9190611fd8565b6101fa61042c366004611e96565b610c37565b6101fa61043f366004611e96565b610cd2565b6102b2610452366004611dd5565b610ce4565b61020e610465366004611def565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102b261049e366004611dd5565b610dc7565b610411610e3f565b6060600380546104ba906121a3565b80601f01602080910402602001604051908101604052809291908181526020018280546104e6906121a3565b80156105335780601f1061050857610100808354040283529160200191610533565b820191906000526020600020905b81548152906001019060200180831161051657829003601f168201915b5050505050905090565b600061054a338484610e95565b50600192915050565b6001600a556000610565848484610fba565b90505b9392505050565b6005546001600160a01b031633146105a25760405162461bcd60e51b8152600401610599906120f1565b60405180910390fd5b6005546001600160a01b03838116911614156106005760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f7420746178206578656d707420746865206f776e657200000000006044820152606401610599565b61060a82826111cd565b5050565b6005546001600160a01b031633146106385760405162461bcd60e51b8152600401610599906120f1565b6001600160a01b03811660009081526013602052604090205460ff166106ac5760405162461bcd60e51b8152602060048201526024808201527f546f74616c204578656d70742061646472657373206973206e6f7420657869736044820152631d195b9d60e21b6064820152608401610599565b6001600160a01b038116600081815260136020908152604091829020805460ff1916905590519182527f06419e2dc00935e4ec76dffc065c793d4f2843fe4be5c4ebea715e8361bad90591015b60405180910390a150565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161054a91859061073b908690612135565b610e95565b6001600160a01b0381166000908152601560209081526040808320805482518185028101850190935280835260609492939192909184015b828210156107c85783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190610778565b505050509050919050565b6005546001600160a01b031633146107fd5760405162461bcd60e51b8152600401610599906120f1565b6005546001600160a01b038381169116141561082b5760405162461bcd60e51b8152600401610599906120aa565b6001600160a01b038216600081815260126020908152604091829020805460ff19168515159081179091558251938452908301527f2f5464dedfc9c7e0801f6bbb88f27616c999957a090e3613fba15304cec32dae91015b60405180910390a15050565b6005546001600160a01b031633146108b95760405162461bcd60e51b8152600401610599906120f1565b80516108cc90600c906020840190611d59565b507f2b7ddefab100602642738d2ef98dae1f01507518f499931d49052353e5ec7116600c6040516106f9919061201c565b6001600160a01b031660009081526020819052604090205490565b600042905060156000846001600160a01b03166001600160a01b031681526020019081526020016000206040518060600160405280838152602001848152602001610962866108fd565b9052815460018181018455600093845260209384902083516003909302019182559282015192810192909255604001516002909101557f6b785de9d99adb0cee10abec5e29aefa186d51f89d5a3146eba52d27a3b7d1e783826109c4826108fd565b604080516001600160a01b0390941684526020840192909252908201526060810184905260800160405180910390a1505050565b6005546001600160a01b03163314610a225760405162461bcd60e51b8152600401610599906120f1565b6005546001600160a01b0383811691161415610a505760405162461bcd60e51b8152600401610599906120aa565b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155610a9e576001600160a01b0382166000908152601260205260409020805460ff191690555b604080516001600160a01b038416815282151560208201527f2c34a81f6992f3a3271a848cf9de2e116a04dcf4fd84baf0bc970123612a18ca9101610883565b6060600480546104ba906121a3565b6005546001600160a01b03163314610b175760405162461bcd60e51b8152600401610599906120f1565b8051610b2a90600b906020840190611d59565b507f793bf89e1f5735707ce59a54f5f29ee979d06ca240e09027a69bc86dd0001f87600b6040516106f9919061201c565b6001600160a01b03811660009081526014602090815260408083208054825181850281018501909352808352606094929391929091840182156107c85783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190610778565b6060600c80548060200260200160405190810160405280929190818152602001828054801561053357602002820191906000526020600020905b815481526020019060010190808311610c1a575050505050905090565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610599565b610cc8338561073b868561218c565b5060019392505050565b6000600a819055610568338484610fba565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b8152600401610599906120f1565b6001600160a01b03811660009081526012602052604090205460ff16610d765760405162461bcd60e51b815260206004820152601e60248201527f4578656d70742061646472657373206973206e6f74206578697374656e7400006044820152606401610599565b6001600160a01b038116600081815260126020908152604091829020805460ff1916905590519182527feb6e11af6901799726bf7474a0a2f35414580dc5743d89013bad0aa7f506fad491016106f9565b6005546001600160a01b03163314610df15760405162461bcd60e51b8152600401610599906120f1565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f1789efb3eab49302df559b4d7dba3b406d2b9d065ecacf6e27c16b48835c273e906020016106f9565b6060600b8054806020026020016040519081016040528092919081815260200182805480156105335760200282019190600052602060002090815481526020019060010190808311610c1a575050505050905090565b6001600160a01b038316610ef75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610599565b6001600160a01b038216610f585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610599565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60055460009042906001600160a01b038681169116148015610ff757506005546001600160a01b031660009081526012602052604090205460ff16155b1561106757636294b0dc8110156110505760405162461bcd60e51b815260206004820152601e60248201527f4f776e65722069732074696d656c6f636b656420666f722031207965617200006044820152606401610599565b600554611067906001600160a01b031660006111cd565b60006110748686866112f9565b915061108290508482611341565b61108b876108fd565b10156110ee5760405162461bcd60e51b815260206004820152602c60248201527f4578636c7573697665207461786174696f6e3a2043616e6e6f74206166666f7260448201526b0c840e8de40e0c2f240e8c2f60a31b6064820152608401610599565b8015611114576110fe868261134d565b600954611114906001600160a01b03168261149c565b600a541561112c5761112786868661157b565b611136565b6111368585611627565b506001600160a01b038516600090815260166020526040902054611170576001600160a01b03851660009081526016602052604090208290555b611179856108fd565b6001600160a01b03861660009081526016602052604090206001015561119e866108fd565b6001600160a01b0387166000908152601660205260409020600180820192909255929092555090509392505050565b6001600160a01b03821660009081526012602052604090205460ff16158061120e57506001600160a01b03821660009081526013602052604090205460ff16155b61125a5760405162461bcd60e51b815260206004820152601f60248201527f4578656d7074206164647265737320616c7265616479206578697374656e74006044820152606401610599565b80611287576001600160a01b0382166000908152601260205260409020805460ff191660011790556112c0565b6001600160a01b0382166000908152601360209081526040808320805460ff199081166001179091556012909252909120805490911690555b6040516001600160a01b03831681527f622908417e33f2d102bfc1b18904f1578f8b2ee8f5f66311062769763a48385690602001610883565b6000806000611309868686611634565b905061132a6113238261131d876064611ab1565b90611abd565b8590611ac9565b92506113368484611ac9565b915050935093915050565b60006105688284612135565b6001600160a01b0382166113ad5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610599565b6001600160a01b038216600090815260208190526040902054818110156114215760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610599565b61142b828261218c565b6001600160a01b0384166000908152602081905260408120919091556002805484929061145990849061218c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610fad565b6001600160a01b0382166114f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610599565b80600260008282546115049190612135565b90915550506001600160a01b03821660009081526020819052604081208054839290611531908490612135565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000611588848484611ad5565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561160d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610599565b61161c853361073b868561218c565b506001949350505050565b600061054a338484611ad5565b60008080611641866108fd565b90504281158015906116535750600085115b6116ab5760405162461bcd60e51b8152602060048201526024808201527f496e74616e6769626c652062616c616e6365206f7220616d6f756e7420746f206044820152631cd95b9960e21b6064820152608401610599565b60006001600a54146116bd57336116bf565b875b6001600160a01b0381166000908152601260205260408120549192509060ff1615801561170557506001600160a01b03821660009081526013602052604090205460ff16155b801561172857506001600160a01b03821660009081526016602052604090205415155b801561174e57506001600160a01b03821660009081526016602052604090206001015415155b801561177d57506001600160a01b03821660009081526016602052604090206001015461177a836108fd565b10155b80156117b9575061179361016d6201518061216d565b6001600160a01b0383166000908152601660205260409020546117b6908561218c565b10155b905080156117cc576117cc8260006111cd565b6001600160a01b03821660009081526012602052604090205460ff168061180b57506001600160a01b03821660009081526013602052604090205460ff165b8061182e57506001600160a01b03881660009081526013602052604090205460ff165b15611840578495505050505050610568565b6000611857856118518a6064611abd565b90611ab1565b9050600c60008154811061187b57634e487b7160e01b600052603260045260246000fd5b906000526020600020015481116118c057600b6000815481106118ae57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549550611a99565b600c6001815481106118e257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154811161191557600b6001815481106118ae57634e487b7160e01b600052603260045260246000fd5b600c60028154811061193757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154811161196a57600b6002815481106118ae57634e487b7160e01b600052603260045260246000fd5b600c60038154811061198c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015481116119bf57600b6003815481106118ae57634e487b7160e01b600052603260045260246000fd5b600c6004815481106119e157634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611a1457600b6004815481106118ae57634e487b7160e01b600052603260045260246000fd5b600c600581548110611a3657634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611a6957600b6005815481106118ae57634e487b7160e01b600052603260045260246000fd5b600b600681548110611a8b57634e487b7160e01b600052603260045260246000fd5b906000526020600020015495505b611aa38387611cad565b509398975050505050505050565b6000610568828461214d565b6000610568828461216d565b6000610568828461218c565b6001600160a01b038316611b395760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610599565b6001600160a01b038216611b9b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610599565b6001600160a01b03831660009081526020819052604090205481811015611c135760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610599565b611c1d828261218c565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611c53908490612135565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c9f91815260200190565b60405180910390a350505050565b600042905060146000846001600160a01b03166001600160a01b031681526020019081526020016000206040518060600160405280838152602001848152602001611cf7866108fd565b9052815460018181018455600093845260209384902083516003909302019182559282015192810192909255604001516002909101557ffc75473a3e9ee26aff1c5d83ba766038a0382e0ebb944323f0a119264d5637f083826109c4826108fd565b828054828255906000526020600020908101928215611d94579160200282015b82811115611d94578251825591602001919060010190611d79565b50611da0929150611da4565b5090565b5b80821115611da05760008155600101611da5565b80356001600160a01b0381168114611dd057600080fd5b919050565b600060208284031215611de6578081fd5b61056882611db9565b60008060408385031215611e01578081fd5b611e0a83611db9565b9150611e1860208401611db9565b90509250929050565b600080600060608486031215611e35578081fd5b611e3e84611db9565b9250611e4c60208501611db9565b9150604084013590509250925092565b60008060408385031215611e6e578182fd5b611e7783611db9565b915060208301358015158114611e8b578182fd5b809150509250929050565b60008060408385031215611ea8578182fd5b611eb183611db9565b946020939093013593505050565b60006020808385031215611ed1578182fd5b823567ffffffffffffffff80821115611ee8578384fd5b818501915085601f830112611efb578384fd5b813581811115611f0d57611f0d6121f4565b8060051b604051601f19603f83011681018181108582111715611f3257611f326121f4565b604052828152858101935084860182860187018a1015611f50578788fd5b8795505b83861015611f72578035855260019590950194938601938601611f54565b5098975050505050505050565b602080825282518282018190526000919060409081850190868401855b82811015611fcb5781518051855286810151878601528501518585015260609093019290850190600101611f9c565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561201057835183529284019291840191600101611ff4565b50909695505050505050565b6020808252825482820181905260008481528281209092916040850190845b818110156120105783548352600193840193928501920161203b565b6000602080835283518082850152825b8181101561208357858101830151858201604001528201612067565b818111156120945783604083870101525b50601f01601f1916929092016040019392505050565b60208082526027908201527f43616e206e6f7420757064617465204f776e65727320746178206578656d70746040820152662073746174757360c81b606082015260800190565b60208082526024908201527f4f6e6c7920746865206f776e65722063616e20696e766f6b652074686973206360408201526330b6361760e11b606082015260800190565b60008219821115612148576121486121de565b500190565b60008261216857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612187576121876121de565b500290565b60008282101561219e5761219e6121de565b500390565b600181811c908216806121b757607f821691505b602082108114156121d857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212208aa16c8f9ec2119ab334b111aa7d7a45e2f0b1cfaa26c04c9da5a03305142e2264736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b4b61696b656e546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064b41494b454e0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): KaikenToken
Arg [1] : _symbol (string): KAIKEN
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 4b61696b656e546f6b656e000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4b41494b454e0000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
22537:12811:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13596:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15763:169;;;;;;:::i;:::-;;:::i;:::-;;;6074:14:1;;6067:22;6049:41;;6037:2;6022:18;15763:169:0;6004:92:1;14716:108:0;14804:12;;14716:108;;;14642:25:1;;;14630:2;14615:18;14716:108:0;14597:76:1;26631:122:0;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;26731:14:0;;;;;:7;:14;;;;;;;;;26724:21;;;;;;;;;;;;;;;;;;;;26631:122;;;;;14408:13:1;;14390:32;;14478:4;14466:17;;;14460:24;14438:20;;;14431:54;;;;14363:18;26631:122:0;14345:146:1;25792:242:0;;;;;;:::i;:::-;;:::i;27360:195::-;;;;;;:::i;:::-;;:::i;:::-;;26269:99;;;;;;:::i;:::-;-1:-1:-1;;;;;26346:14:0;26323:4;26346:14;;;:7;:14;;;;;;;;;26269:99;14558:93;;;14641:2;14820:36:1;;14808:2;14793:18;14558:93:0;14775:87:1;28393:244:0;;;;;;:::i;:::-;;:::i;17245:215::-;;;;;;:::i;:::-;;:::i;35189:156::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26761:84::-;26830:7;;26761:84;;-1:-1:-1;;;;;26830:7:0;;;2974:51:1;;2962:2;2947:18;26761:84:0;2929:102:1;27563:249:0;;;;;;:::i;:::-;;:::i;27052:158::-;;;;;;:::i;:::-;;:::i;14887:127::-;;;;;;:::i;:::-;;:::i;26376:109::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26458:19:0;26435:4;26458:19;;;:12;:19;;;;;;;;;26376:109;34809:367;;;;;;:::i;:::-;;:::i;27820:339::-;;;;;;:::i;:::-;;:::i;13815:104::-;;;:::i;26868:176::-;;;;;;:::i;:::-;;:::i;26497:122::-;;;;;;:::i;:::-;;:::i;26166:95::-;;;:::i;:::-;;;;;;;:::i;17963:377::-;;;;;;:::i;:::-;;:::i;25577:207::-;;;;;;:::i;:::-;;:::i;28167:218::-;;;;;;:::i;:::-;;:::i;15465:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15581:18:0;;;15554:7;15581:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15465:151;27218:134;;;;;;:::i;:::-;;:::i;26056:102::-;;;:::i;13596:100::-;13650:13;13683:5;13676:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13596:100;:::o;15763:169::-;15846:4;15863:39;7813:10;15886:7;15895:6;15863:8;:39::i;:::-;-1:-1:-1;15920:4:0;15763:169;;;;:::o;25792:242::-;23614:1;25945:12;:28;25920:12;25991:35;26009:4;26015:2;26019:6;25991:17;:35::i;:::-;25984:42;;25792:242;;;;;;:::o;27360:195::-;24212:5;;-1:-1:-1;;;;;24212:5:0;24198:10;:19;24190:68;;;;-1:-1:-1;;;24190:68:0;;;;;;;:::i;:::-;;;;;;;;;27465:5:::1;::::0;-1:-1:-1;;;;;27452:18:0;;::::1;27465:5:::0;::::1;27452:18;;27444:58;;;::::0;-1:-1:-1;;;27444:58:0;;14030:2:1;27444:58:0::1;::::0;::::1;14012:21:1::0;14069:2;14049:18;;;14042:30;14108:29;14088:18;;;14081:57;14155:18;;27444:58:0::1;14002:177:1::0;27444:58:0::1;27513:34;27524:9;27535:11;27513:10;:34::i;:::-;27360:195:::0;;:::o;28393:244::-;24212:5;;-1:-1:-1;;;;;24212:5:0;24198:10;:19;24190:68;;;;-1:-1:-1;;;24190:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28475:23:0;::::1;;::::0;;;:12:::1;:23;::::0;;;;;::::1;;28467:72;;;::::0;-1:-1:-1;;;28467:72:0;;9700:2:1;28467:72:0::1;::::0;::::1;9682:21:1::0;9739:2;9719:18;;;9712:30;9778:34;9758:18;;;9751:62;-1:-1:-1;;;9829:18:1;;;9822:34;9873:19;;28467:72:0::1;9672:226:1::0;28467:72:0::1;-1:-1:-1::0;;;;;28553:23:0;::::1;28579:5;28553:23:::0;;;:12:::1;:23;::::0;;;;;;;;:31;;-1:-1:-1;;28553:31:0::1;::::0;;28600:29;;2974:51:1;;;28600:29:0::1;::::0;2947:18:1;28600:29:0::1;;;;;;;;28393:244:::0;:::o;17245:215::-;7813:10;17333:4;17382:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17382:34:0;;;;;;;;;;17333:4;;17350:80;;17373:7;;17382:47;;17419:10;;17382:47;:::i;:::-;17350:8;:80::i;35189:156::-;-1:-1:-1;;;;;35311:26:0;;;;;;:20;:26;;;;;;;;35306:31;;;;;;;;;;;;;;;;;35273:21;;35306:31;;35311:26;;35306:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35189:156;;;:::o;27563:249::-;24212:5;;-1:-1:-1;;;;;24212:5:0;24198:10;:19;24190:68;;;;-1:-1:-1;;;24190:68:0;;;;;;;:::i;:::-;27667:5:::1;::::0;-1:-1:-1;;;;;27654:18:0;;::::1;27667:5:::0;::::1;27654:18;;27646:70;;;;-1:-1:-1::0;;;27646:70:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27727:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;;;;;:28;;-1:-1:-1;;27727:28:0::1;::::0;::::1;;::::0;;::::1;::::0;;;27771:33;;3204:51:1;;;3271:18;;;3264:50;27771:33:0::1;::::0;3177:18:1;27771:33:0::1;;;;;;;;27563:249:::0;;:::o;27052:158::-;24212:5;;-1:-1:-1;;;;;24212:5:0;24198:10;:19;24190:68;;;;-1:-1:-1;;;24190:68:0;;;;;;;:::i;:::-;27133:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;27173:29;27191:10;27173:29;;;;;;:::i;14887:127::-:0;-1:-1:-1;;;;;14988:18:0;14961:7;14988:18;;;;;;;;;;;;14887:127::o;34809:367::-;34911:9;34923:15;34911:27;;34949:20;:26;34970:4;-1:-1:-1;;;;;34949:26:0;-1:-1:-1;;;;;34949:26:0;;;;;;;;;;;;34981:116;;;;;;;;35018:4;34981:116;;;;35042:4;34981:116;;;;35070:15;35080:4;35070:9;:15::i;:::-;34981:116;;34949:149;;;;;;;;-1:-1:-1;34949:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35114:54;35134:4;35140;35146:15;35134:4;35146:9;:15::i;:::-;35114:54;;;-1:-1:-1;;;;;3574:32:1;;;3556:51;;3638:2;3623:18;;3616:34;;;;3666:18;;;3659:34;3724:2;3709:18;;3702:34;;;3543:3;3528:19;35114:54:0;;;;;;;34809:367;;;:::o;27820:339::-;24212:5;;-1:-1:-1;;;;;24212:5:0;24198:10;:19;24190:68;;;;-1:-1:-1;;;24190:68:0;;;;;;;:::i;:::-;27929:5:::1;::::0;-1:-1:-1;;;;;27916:18:0;;::::1;27929:5:::0;::::1;27916:18;;27908:70;;;;-1:-1:-1::0;;;27908:70:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27989:23:0;::::1;;::::0;;;:12:::1;:23;::::0;;;;:33;;-1:-1:-1;;27989:33:0::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;28033:65:::1;;-1:-1:-1::0;;;;;28060:18:0;::::1;28081:5;28060:18:::0;;;:7:::1;:18;::::0;;;;:26;;-1:-1:-1;;28060:26:0::1;::::0;;28033:65:::1;28113:38;::::0;;-1:-1:-1;;;;;3222:32:1;;3204:51;;3298:14;;3291:22;3286:2;3271:18;;3264:50;28113:38:0::1;::::0;3177:18:1;28113:38:0::1;3159:161:1::0;13815:104:0;13871:13;13904:7;13897:14;;;;;:::i;26868:176::-;24212:5;;-1:-1:-1;;;;;24212:5:0;24198:10;:19;24190:68;;;;-1:-1:-1;;;24190:68:0;;;;;;;:::i;:::-;26955:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;27001:35;27022:13;27001:35;;;;;;:::i;26497:122::-:0;-1:-1:-1;;;;;26591:20:0;;;;;;:13;:20;;;;;;;;26584:27;;;;;;;;;;;;;;;;;26554:18;;26584:27;;26591:20;;26584:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26166:95;26211:13;26243:10;26236:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26166:95;:::o;17963:377::-;7813:10;18056:4;18100:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18100:34:0;;;;;;;;;;18153:35;;;;18145:85;;;;-1:-1:-1;;;18145:85:0;;13264:2:1;18145:85:0;;;13246:21:1;13303:2;13283:18;;;13276:30;13342:34;13322:18;;;13315:62;-1:-1:-1;;;13393:18:1;;;13386:35;13438:19;;18145:85:0;13236:227:1;18145:85:0;18241:67;7813:10;18264:7;18273:34;18292:15;18273:16;:34;:::i;18241:67::-;-1:-1:-1;18328:4:0;;17963:377;-1:-1:-1;;;17963:377:0:o;25577:207::-;25678:4;25694:12;:23;;;25735:41;25753:10;25765:2;25769:6;25735:17;:41::i;28167:218::-;24212:5;;-1:-1:-1;;;;;24212:5:0;24198:10;:19;24190:68;;;;-1:-1:-1;;;24190:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28244:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;;::::1;;28236:61;;;::::0;-1:-1:-1;;;28236:61:0;;12094:2:1;28236:61:0::1;::::0;::::1;12076:21:1::0;12133:2;12113:18;;;12106:30;12172:32;12152:18;;;12145:60;12222:18;;28236:61:0::1;12066:180:1::0;28236:61:0::1;-1:-1:-1::0;;;;;28311:18:0;::::1;28332:5;28311:18:::0;;;:7:::1;:18;::::0;;;;;;;;:26;;-1:-1:-1;;28311:26:0::1;::::0;;28353:24;;2974:51:1;;;28353:24:0::1;::::0;2947:18:1;28353:24:0::1;2929:102:1::0;27218:134:0;24212:5;;-1:-1:-1;;;;;24212:5:0;24198:10;:19;24190:68;;;;-1:-1:-1;;;24190:68:0;;;;;;;:::i;:::-;27287:7:::1;:18:::0;;-1:-1:-1;;;;;;27287:18:0::1;-1:-1:-1::0;;;;;27287:18:0;::::1;::::0;;::::1;::::0;;;27321:23:::1;::::0;2974:51:1;;;27321:23:0::1;::::0;2962:2:1;2947:18;27321:23:0::1;2929:102:1::0;26056::0;26104:13;26137;26130:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26056:102;:::o;21319:346::-;-1:-1:-1;;;;;21421:19:0;;21413:68;;;;-1:-1:-1;;;21413:68:0;;12859:2:1;21413:68:0;;;12841:21:1;12898:2;12878:18;;;12871:30;12937:34;12917:18;;;12910:62;-1:-1:-1;;;12988:18:1;;;12981:34;13032:19;;21413:68:0;12831:226:1;21413:68:0;-1:-1:-1;;;;;21500:21:0;;21492:68;;;;-1:-1:-1;;;21492:68:0;;7718:2:1;21492:68:0;;;7700:21:1;7757:2;7737:18;;;7730:30;7796:34;7776:18;;;7769:62;-1:-1:-1;;;7847:18:1;;;7840:32;7889:19;;21492:68:0;7690:224:1;21492:68:0;-1:-1:-1;;;;;21573:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21625:32;;14642:25:1;;;21625:32:0;;14615:18:1;21625:32:0;;;;;;;;21319:346;;;:::o;33531:1244::-;33762:5;;33678:12;;33714:15;;-1:-1:-1;;;;;33753:14:0;;;33762:5;;33753:14;:33;;;;-1:-1:-1;33780:5:0;;-1:-1:-1;;;;;33780:5:0;33772:14;;;;:7;:14;;;;;;;;33771:15;33753:33;33750:230;;;33884:10;33876:4;:18;;33868:61;;;;-1:-1:-1;;;33868:61:0;;8528:2:1;33868:61:0;;;8510:21:1;8567:2;8547:18;;;8540:30;8606:32;8586:18;;;8579:60;8656:18;;33868:61:0;8500:180:1;33868:61:0;33955:5;;33944:24;;-1:-1:-1;;;;;33955:5:0;;33944:10;:24::i;:::-;34003:14;34021:39;34040:5;34047:3;34052:7;34021:18;:39::i;:::-;34000:60;-1:-1:-1;34113:22:0;;-1:-1:-1;34113:7:0;34000:60;34113:11;:22::i;:::-;34093:16;34103:5;34093:9;:16::i;:::-;:42;;34071:136;;;;-1:-1:-1;;;34071:136:0;;11279:2:1;34071:136:0;;;11261:21:1;11318:2;11298:18;;;11291:30;11357:34;11337:18;;;11330:62;-1:-1:-1;;;11408:18:1;;;11401:42;11460:19;;34071:136:0;11251:234:1;34071:136:0;34232:13;;34229:108;;34262:23;34268:5;34275:9;34262:5;:23::i;:::-;34306:7;;34300:25;;-1:-1:-1;;;;;34306:7:0;34315:9;34300:5;:25::i;:::-;34357:12;;:24;:125;;34443:39;34462:5;34469:3;34474:7;34443:18;:39::i;:::-;34357:125;;;34398:28;34413:3;34418:7;34398:14;:28::i;:::-;-1:-1:-1;;;;;;34511:12:0;;;;;;:7;:12;;;;;:22;34507:89;;-1:-1:-1;;;;;34555:12:0;;;;;;:7;:12;;;;;:29;;;34507:89;34635:14;34645:3;34635:9;:14::i;:::-;-1:-1:-1;;;;;34612:12:0;;;;;;:7;:12;;;;;:20;;:37;34685:16;34695:5;34685:9;:16::i;:::-;-1:-1:-1;;;;;34660:14:0;;;;;;:7;:14;;;;;:22;;;;:41;;;;34712:31;;;;-1:-1:-1;34660:22:0;-1:-1:-1;33531:1244:0;;;;;:::o;28672:412::-;-1:-1:-1;;;;;28758:18:0;;;;;;:7;:18;;;;;;;;28757:19;;:47;;-1:-1:-1;;;;;;28781:23:0;;;;;;:12;:23;;;;;;;;28780:24;28757:47;28749:91;;;;-1:-1:-1;;;28749:91:0;;10105:2:1;28749:91:0;;;10087:21:1;10144:2;10124:18;;;10117:30;10183:33;10163:18;;;10156:61;10234:18;;28749:91:0;10077:181:1;28749:91:0;28857:20;28854:181;;-1:-1:-1;;;;;28894:18:0;;;;;;:7;:18;;;;;:25;;-1:-1:-1;;28894:25:0;28915:4;28894:25;;;28854:181;;;-1:-1:-1;;;;;28952:23:0;;;;;;:12;:23;;;;;;;;:30;;-1:-1:-1;;28952:30:0;;;28978:4;28952:30;;;;28997:7;:18;;;;;;:26;;;;;;;28854:181;29050:22;;-1:-1:-1;;;;;2992:32:1;;2974:51;;29050:22:0;;2962:2:1;2947:18;29050:22:0;2929:102:1;32763:383:0;32889:19;32910:14;32937:18;32958:42;32976:5;32983:3;32988:11;32958:17;:42::i;:::-;32937:63;-1:-1:-1;33028:56:0;33044:39;32937:63;33044:20;:11;23482:3;33044:15;:20::i;:::-;:24;;:39::i;:::-;33028:11;;:15;:56::i;:::-;33011:73;-1:-1:-1;33107:31:0;:11;33011:73;33107:15;:31::i;:::-;33095:43;;32763:383;;;;;;;:::o;2823:98::-;2881:7;2908:5;2912:1;2908;:5;:::i;20387:494::-;-1:-1:-1;;;;;20471:21:0;;20463:67;;;;-1:-1:-1;;;20463:67:0;;11692:2:1;20463:67:0;;;11674:21:1;11731:2;11711:18;;;11704:30;11770:34;11750:18;;;11743:62;-1:-1:-1;;;11821:18:1;;;11814:31;11862:19;;20463:67:0;11664:223:1;20463:67:0;-1:-1:-1;;;;;20630:18:0;;20605:22;20630:18;;;;;;;;;;;20667:24;;;;20659:71;;;;-1:-1:-1;;;20659:71:0;;7315:2:1;20659:71:0;;;7297:21:1;7354:2;7334:18;;;7327:30;7393:34;7373:18;;;7366:62;-1:-1:-1;;;7444:18:1;;;7437:32;7486:19;;20659:71:0;7287:224:1;20659:71:0;20762:23;20779:6;20762:14;:23;:::i;:::-;-1:-1:-1;;;;;20741:18:0;;:9;:18;;;;;;;;;;:44;;;;20796:12;:22;;20812:6;;20741:9;20796:22;;20812:6;;20796:22;:::i;:::-;;;;-1:-1:-1;;20836:37:0;;14642:25:1;;;20862:1:0;;-1:-1:-1;;;;;20836:37:0;;;;;14630:2:1;14615:18;20836:37:0;14597:76:1;19716:338:0;-1:-1:-1;;;;;19800:21:0;;19792:65;;;;-1:-1:-1;;;19792:65:0;;13670:2:1;19792:65:0;;;13652:21:1;13709:2;13689:18;;;13682:30;13748:33;13728:18;;;13721:61;13799:18;;19792:65:0;13642:181:1;19792:65:0;19948:6;19932:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;19965:18:0;;:9;:18;;;;;;;;;;:28;;19987:6;;19965:9;:28;;19987:6;;19965:28;:::i;:::-;;;;-1:-1:-1;;20009:37:0;;14642:25:1;;;-1:-1:-1;;;;;20009:37:0;;;20026:1;;20009:37;;14630:2:1;14615:18;20009:37:0;;;;;;;19716:338;;:::o;16414:422::-;16520:4;16537:36;16547:6;16555:9;16566:6;16537:9;:36::i;:::-;-1:-1:-1;;;;;16613:19:0;;16586:24;16613:19;;;:11;:19;;;;;;;;7813:10;16613:33;;;;;;;;16665:26;;;;16657:79;;;;-1:-1:-1;;;16657:79:0;;10465:2:1;16657:79:0;;;10447:21:1;10504:2;10484:18;;;10477:30;10543:34;10523:18;;;10516:62;-1:-1:-1;;;10594:18:1;;;10587:38;10642:19;;16657:79:0;10437:230:1;16657:79:0;16747:57;16756:6;7813:10;16778:25;16797:6;16778:16;:25;:::i;16747:57::-;-1:-1:-1;16824:4:0;;16414:422;-1:-1:-1;;;;16414:422:0:o;15227:175::-;15313:4;15330:42;7813:10;15354:9;15365:6;15330:9;:42::i;30568:2187::-;30693:8;;;30776:16;30786:5;30776:9;:16::i;:::-;30747:45;-1:-1:-1;30815:15:0;30865:25;;;;;:44;;;30908:1;30894:11;:15;30865:44;30843:130;;;;-1:-1:-1;;;30843:130:0;;10874:2:1;30843:130:0;;;10856:21:1;10913:2;10893:18;;;10886:30;10952:34;10932:18;;;10925:62;-1:-1:-1;;;11003:18:1;;;10996:34;11047:19;;30843:130:0;10846:226:1;30843:130:0;30986:21;23614:1;31010:12;;:29;:76;;31076:10;31010:76;;;31055:5;31010:76;-1:-1:-1;;;;;31141:22:0;;31099:25;31141:22;;;:7;:22;;;;;;30986:100;;-1:-1:-1;31099:25:0;31141:22;;31140:23;:68;;;;-1:-1:-1;;;;;;31181:27:0;;;;;;:12;:27;;;;;;;;31180:28;31140:68;:121;;;;-1:-1:-1;;;;;;31225:22:0;;31260:1;31225:22;;;:7;:22;;;;;:32;:36;;31140:121;:172;;;;-1:-1:-1;;;;;;31278:22:0;;31311:1;31278:22;;;:7;:22;;;;;:30;;;:34;;31140:172;:247;;;;-1:-1:-1;;;;;;31357:22:0;;;;;;:7;:22;;;;;:30;;;31329:24;31365:13;31329:9;:24::i;:::-;:58;;31140:247;:325;;;;-1:-1:-1;31448:17:0;23525:3;31459:6;31448:17;:::i;:::-;-1:-1:-1;;;;;31412:22:0;;;;;;:7;:22;;;;;:32;31405:39;;:4;:39;:::i;:::-;:60;;31140:325;31099:366;;31481:20;31478:57;;;31503:32;31514:13;31529:5;31503:10;:32::i;:::-;-1:-1:-1;;;;;31704:22:0;;;;;;:7;:22;;;;;;;;;:67;;-1:-1:-1;;;;;;31744:27:0;;;;;;:12;:27;;;;;;;;31704:67;:102;;;-1:-1:-1;;;;;;31789:17:0;;;;;;:12;:17;;;;;;;;31704:102;31686:152;;;31825:13;31818:20;;;;;;;;;31686:152;31851:26;31880:47;31905:21;31880:20;:11;31896:3;31880:15;:20::i;:::-;:24;;:47::i;:::-;31851:76;;31969:10;31980:1;31969:13;;;;;;-1:-1:-1;;;31969:13:0;;;;;;;;;;;;;;;;;31944:21;:38;31940:713;;32015:13;32029:1;32015:16;;;;;;-1:-1:-1;;;32015:16:0;;;;;;;;;;;;;;;;;31999:32;;31940:713;;;32078:10;32089:1;32078:13;;;;;;-1:-1:-1;;;32078:13:0;;;;;;;;;;;;;;;;;32053:21;:38;32049:604;;32124:13;32138:1;32124:16;;;;;;-1:-1:-1;;;32124:16:0;;;;;;;;32049:604;32187:10;32198:1;32187:13;;;;;;-1:-1:-1;;;32187:13:0;;;;;;;;;;;;;;;;;32162:21;:38;32158:495;;32233:13;32247:1;32233:16;;;;;;-1:-1:-1;;;32233:16:0;;;;;;;;32158:495;32296:10;32307:1;32296:13;;;;;;-1:-1:-1;;;32296:13:0;;;;;;;;;;;;;;;;;32271:21;:38;32267:386;;32342:13;32356:1;32342:16;;;;;;-1:-1:-1;;;32342:16:0;;;;;;;;32267:386;32405:10;32416:1;32405:13;;;;;;-1:-1:-1;;;32405:13:0;;;;;;;;;;;;;;;;;32380:21;:38;32376:277;;32451:13;32465:1;32451:16;;;;;;-1:-1:-1;;;32451:16:0;;;;;;;;32376:277;32514:10;32525:1;32514:13;;;;;;-1:-1:-1;;;32514:13:0;;;;;;;;;;;;;;;;;32489:21;:38;32485:168;;32560:13;32574:1;32560:16;;;;;;-1:-1:-1;;;32560:16:0;;;;;;;;32485:168;32625:13;32639:1;32625:16;;;;;;-1:-1:-1;;;32625:16:0;;;;;;;;;;;;;;;;;32609:32;;32485:168;32673:43;32687:13;32702;32673;:43::i;:::-;-1:-1:-1;32734:13:0;;30568:2187;-1:-1:-1;;;;;;;;30568:2187:0:o;3960:98::-;4018:7;4045:5;4049:1;4045;:5;:::i;3561:98::-;3619:7;3646:5;3650:1;3646;:5;:::i;3204:98::-;3262:7;3289:5;3293:1;3289;:5;:::i;18830:604::-;-1:-1:-1;;;;;18936:20:0;;18928:70;;;;-1:-1:-1;;;18928:70:0;;12453:2:1;18928:70:0;;;12435:21:1;12492:2;12472:18;;;12465:30;12531:34;12511:18;;;12504:62;-1:-1:-1;;;12582:18:1;;;12575:35;12627:19;;18928:70:0;12425:227:1;18928:70:0;-1:-1:-1;;;;;19017:23:0;;19009:71;;;;-1:-1:-1;;;19009:71:0;;6911:2:1;19009:71:0;;;6893:21:1;6950:2;6930:18;;;6923:30;6989:34;6969:18;;;6962:62;-1:-1:-1;;;7040:18:1;;;7033:33;7083:19;;19009:71:0;6883:225:1;19009:71:0;-1:-1:-1;;;;;19177:17:0;;19153:21;19177:17;;;;;;;;;;;19213:23;;;;19205:74;;;;-1:-1:-1;;;19205:74:0;;8121:2:1;19205:74:0;;;8103:21:1;8160:2;8140:18;;;8133:30;8199:34;8179:18;;;8172:62;-1:-1:-1;;;8250:18:1;;;8243:36;8296:19;;19205:74:0;8093:228:1;19205:74:0;19310:22;19326:6;19310:13;:22;:::i;:::-;-1:-1:-1;;;;;19290:17:0;;;:9;:17;;;;;;;;;;;:42;;;;19343:20;;;;;;;;:30;;19367:6;;19290:9;19343:30;;19367:6;;19343:30;:::i;:::-;;;;;;;;19408:9;-1:-1:-1;;;;;19391:35:0;19400:6;-1:-1:-1;;;;;19391:35:0;;19419:6;19391:35;;;;14642:25:1;;14630:2;14615:18;;14597:76;19391:35:0;;;;;;;;18830:604;;;;:::o;33154:369::-;33253:14;33270:15;33253:32;;33296:13;:20;33310:5;-1:-1:-1;;;;;33296:20:0;-1:-1:-1;;;;;33296:20:0;;;;;;;;;;;;33322:122;;;;;;;;33359:9;33322:122;;;;33388:4;33322:122;;;;33416:16;33426:5;33416:9;:16::i;:::-;33322:122;;33296:149;;;;;;;;-1:-1:-1;33296:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33461:54;33474:5;33481:9;33492:16;33474:5;33492:9;:16::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:367::-;1076:6;1084;1137:2;1125:9;1116:7;1112:23;1108:32;1105:2;;;1158:6;1150;1143:22;1105:2;1186:29;1205:9;1186:29;:::i;:::-;1176:39;;1265:2;1254:9;1250:18;1237:32;1312:5;1305:13;1298:21;1291:5;1288:32;1278:2;;1339:6;1331;1324:22;1278:2;1367:5;1357:15;;;1095:283;;;;;:::o;1383:264::-;1451:6;1459;1512:2;1500:9;1491:7;1487:23;1483:32;1480:2;;;1533:6;1525;1518:22;1480:2;1561:29;1580:9;1561:29;:::i;:::-;1551:39;1637:2;1622:18;;;;1609:32;;-1:-1:-1;;;1470:177:1:o;1652:1171::-;1736:6;1767:2;1810;1798:9;1789:7;1785:23;1781:32;1778:2;;;1831:6;1823;1816:22;1778:2;1876:9;1863:23;1905:18;1946:2;1938:6;1935:14;1932:2;;;1967:6;1959;1952:22;1932:2;2010:6;1999:9;1995:22;1985:32;;2055:7;2048:4;2044:2;2040:13;2036:27;2026:2;;2082:6;2074;2067:22;2026:2;2123;2110:16;2145:2;2141;2138:10;2135:2;;;2151:18;;:::i;:::-;2197:2;2194:1;2190:10;2229:2;2223:9;2292:2;2288:7;2283:2;2279;2275:11;2271:25;2263:6;2259:38;2347:6;2335:10;2332:22;2327:2;2315:10;2312:18;2309:46;2306:2;;;2358:18;;:::i;:::-;2394:2;2387:22;2444:18;;;2478:15;;;;-1:-1:-1;2513:11:1;;;2543;;;2539:20;;2536:33;-1:-1:-1;2533:2:1;;;2587:6;2579;2572:22;2533:2;2614:6;2605:15;;2629:163;2643:2;2640:1;2637:9;2629:163;;;2700:17;;2688:30;;2661:1;2654:9;;;;;2738:12;;;;2770;;2629:163;;;-1:-1:-1;2811:6:1;1747:1076;-1:-1:-1;;;;;;;;1747:1076:1:o;3747:848::-;3970:2;4022:21;;;4092:13;;3995:18;;;4114:22;;;3941:4;;3970:2;4155;;4173:18;;;;4214:15;;;3941:4;4260:309;4274:6;4271:1;4268:13;4260:309;;;4333:13;;4371:9;;4359:22;;4421:11;;;4415:18;4401:12;;;4394:40;4474:11;;4468:18;4454:12;;;4447:40;4516:4;4507:14;;;;4544:15;;;;4296:1;4289:9;4260:309;;;-1:-1:-1;4586:3:1;;3950:645;-1:-1:-1;;;;;;;3950:645:1:o;4600:635::-;4771:2;4823:21;;;4893:13;;4796:18;;;4915:22;;;4742:4;;4771:2;4994:15;;;;4968:2;4953:18;;;4742:4;5040:169;5054:6;5051:1;5048:13;5040:169;;;5115:13;;5103:26;;5184:15;;;;5149:12;;;;5076:1;5069:9;5040:169;;;-1:-1:-1;5226:3:1;;4751:484;-1:-1:-1;;;;;;4751:484:1:o;5240:664::-;5408:2;5460:21;;;5530:13;;5433:18;;;5552:22;;;5379:4;5617:20;;;5660:19;;;5379:4;;5408:2;5605;5590:18;;;5379:4;5710:168;5724:6;5721:1;5718:13;5710:168;;;5785:13;;5773:26;;5866:1;5854:14;;;;5819:12;;;;5739:9;5710:168;;6101:603;6213:4;6242:2;6271;6260:9;6253:21;6303:6;6297:13;6346:6;6341:2;6330:9;6326:18;6319:34;6371:4;6384:140;6398:6;6395:1;6392:13;6384:140;;;6493:14;;;6489:23;;6483:30;6459:17;;;6478:2;6455:26;6448:66;6413:10;;6384:140;;;6542:6;6539:1;6536:13;6533:2;;;6612:4;6607:2;6598:6;6587:9;6583:22;6579:31;6572:45;6533:2;-1:-1:-1;6688:2:1;6667:15;-1:-1:-1;;6663:29:1;6648:45;;;;6695:2;6644:54;;6222:482;-1:-1:-1;;;6222:482:1:o;8685:403::-;8887:2;8869:21;;;8926:2;8906:18;;;8899:30;8965:34;8960:2;8945:18;;8938:62;-1:-1:-1;;;9031:2:1;9016:18;;9009:37;9078:3;9063:19;;8859:229::o;9093:400::-;9295:2;9277:21;;;9334:2;9314:18;;;9307:30;9373:34;9368:2;9353:18;;9346:62;-1:-1:-1;;;9439:2:1;9424:18;;9417:34;9483:3;9468:19;;9267:226::o;14867:128::-;14907:3;14938:1;14934:6;14931:1;14928:13;14925:2;;;14944:18;;:::i;:::-;-1:-1:-1;14980:9:1;;14915:80::o;15000:217::-;15040:1;15066;15056:2;;-1:-1:-1;;;15091:31:1;;15145:4;15142:1;15135:15;15173:4;15098:1;15163:15;15056:2;-1:-1:-1;15202:9:1;;15046:171::o;15222:168::-;15262:7;15328:1;15324;15320:6;15316:14;15313:1;15310:21;15305:1;15298:9;15291:17;15287:45;15284:2;;;15335:18;;:::i;:::-;-1:-1:-1;15375:9:1;;15274:116::o;15395:125::-;15435:4;15463:1;15460;15457:8;15454:2;;;15468:18;;:::i;:::-;-1:-1:-1;15505:9:1;;15444:76::o;15525:380::-;15604:1;15600:12;;;;15647;;;15668:2;;15722:4;15714:6;15710:17;15700:27;;15668:2;15775;15767:6;15764:14;15744:18;15741:38;15738:2;;;15821:10;15816:3;15812:20;15809:1;15802:31;15856:4;15853:1;15846:15;15884:4;15881:1;15874:15;15738:2;;15580:325;;;:::o;15910:127::-;15971:10;15966:3;15962:20;15959:1;15952:31;16002:4;15999:1;15992:15;16026:4;16023:1;16016:15;16042:127;16103:10;16098:3;16094:20;16091:1;16084:31;16134:4;16131:1;16124:15;16158:4;16155:1;16148:15
Swarm Source
ipfs://8aa16c8f9ec2119ab334b111aa7d7a45e2f0b1cfaa26c04c9da5a03305142e22
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.