Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 157 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 22387145 | 310 days ago | IN | 0 ETH | 0.00002153 | ||||
| Approve | 19419481 | 725 days ago | IN | 0 ETH | 0.00128494 | ||||
| Approve | 17236496 | 1031 days ago | IN | 0 ETH | 0.00208036 | ||||
| Transfer | 11249473 | 1940 days ago | IN | 0 ETH | 0.00208566 | ||||
| Approve | 11161334 | 1953 days ago | IN | 0 ETH | 0.00078263 | ||||
| Transfer | 11159736 | 1954 days ago | IN | 0 ETH | 0.00234211 | ||||
| Approve | 11159714 | 1954 days ago | IN | 0 ETH | 0.00120063 | ||||
| Transfer | 11159700 | 1954 days ago | IN | 0 ETH | 0.00249242 | ||||
| Approve | 11159640 | 1954 days ago | IN | 0 ETH | 0.00136961 | ||||
| Approve | 11159624 | 1954 days ago | IN | 0 ETH | 0.00131625 | ||||
| Approve | 11159512 | 1954 days ago | IN | 0 ETH | 0.00128957 | ||||
| Approve | 11159496 | 1954 days ago | IN | 0 ETH | 0.0088936 | ||||
| Approve | 11159484 | 1954 days ago | IN | 0 ETH | 0.00262361 | ||||
| Transfer | 11159480 | 1954 days ago | IN | 0 ETH | 0.00478656 | ||||
| Approve | 11159461 | 1954 days ago | IN | 0 ETH | 0.00133404 | ||||
| Approve | 11159445 | 1954 days ago | IN | 0 ETH | 0.00262361 | ||||
| Approve | 11159405 | 1954 days ago | IN | 0 ETH | 0.00262361 | ||||
| Transfer | 11159401 | 1954 days ago | IN | 0 ETH | 0.00540704 | ||||
| Transfer | 11159384 | 1954 days ago | IN | 0 ETH | 0.0070912 | ||||
| Approve | 11159377 | 1954 days ago | IN | 0 ETH | 0.00147189 | ||||
| Approve | 11159376 | 1954 days ago | IN | 0 ETH | 0.00162064 | ||||
| Transfer | 11159371 | 1954 days ago | IN | 0 ETH | 0.0062048 | ||||
| Approve | 11159366 | 1954 days ago | IN | 0 ETH | 0.00147331 | ||||
| Approve | 11159363 | 1954 days ago | IN | 0 ETH | 0.00147331 | ||||
| Approve | 11159363 | 1954 days ago | IN | 0 ETH | 0.00297935 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Casino
Compiler Version
v0.7.4+commit.3f05b770
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-10-30
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.4;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
function ceil(uint256 a, uint256 m) internal pure returns (uint256) {
uint256 c = add(a,m);
uint256 d = sub(c,1);
return mul(div(d,m),m);
}
}
/**
* @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 Casino is IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => bool) private _presalers;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply = 940 ether;
uint256 presaleStartBurn = 50;
string private _name = "Casino Token";
string private _symbol = "CSINO";
uint8 private _decimals = 18;
address private __owner;
uint256 private seed = 1;
uint256 private txCount = 0;
address public jackpotWallet = 0x5A2C69127D5C96880257b8fae4D6AE4FEC9e1D33;
event WonChip(address indexed winner, uint256 amountSpent);
event Jackpot(address indexed winner, uint256 percentOfPot);
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
modifier onlyOwner()
{
require(
msg.sender == __owner,
"Sender not authorized."
);
_;
}
constructor () {
__owner = msg.sender;
_balances[__owner] = _totalSupply;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
function setJackpotWallet(address a) public onlyOwner {
jackpotWallet = a;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
function gen(uint256 val) private returns (bool) {
require(val != 0);
uint256 s1 = block.difficulty;
uint256 s2 = block.timestamp;
seed += val;
uint256 s3 = seed + _totalSupply;
// no need for an oracle for this one
return (uint256(keccak256(abi.encode(s1, s2, s3))) % (100/val)) == 0;
}
function isInWhitelist(address a) private view returns (bool) {
return _presalers[a];
}
function whitelistAdd(address a) public onlyOwner {
_presalers[a] = 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(msg.sender, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
function multiTransfer(address[] memory addresses, uint256 amount) public {
require(addresses.length < 300);
for (uint256 i = 0; i < addresses.length; i++) {
transfer(addresses[i], amount);
}
}
function multiWhitelistAdd(address[] memory addresses) public onlyOwner {
require(addresses.length < 300);
for (uint256 i = 0; i < addresses.length; i++) {
whitelistAdd(addresses[i]);
}
}
function multiWhitelistRemove(address[] memory addresses) public onlyOwner {
require(addresses.length < 300);
for (uint256 i = 0; i < addresses.length; i++) {
_presalers[addresses[i]] = false;
}
}
function oneIn100() public returns (uint256) {
uint256 s1 = block.difficulty;
uint256 s2 = block.timestamp;
seed += 1;
uint256 s3 = seed + _totalSupply;
// no need for an oracle for this one
return (uint256(keccak256(abi.encode(s1, s2, s3, 10)))) % 100;
}
/**
* @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");
uint256 burnPct = 0;
uint256 mintPct = 0;
uint256 rand = oneIn100();
if (sender == __owner) {
burnPct = 1;
} else if (txCount < 500 && isInWhitelist(sender)) {
burnPct = presaleStartBurn.sub(txCount.div(7));
if (burnPct < 3) {
burnPct = 3;
}
} else {
if (rand % 3 == 0) {
// random mint between 0-20
mintPct = rand % 21;
} else {
// random burn between 0-26
burnPct = rand % 27;
}
}
_beforeTokenTransfer(sender, recipient, amount);
uint256 tokensToTake = amount.div(100).mul(burnPct);
uint256 tokensToTransfer = amount.sub(tokensToTake);
uint256 tokensToJackpot = tokensToTake.div(2);
uint256 tokensToBurn = tokensToTake.sub(tokensToJackpot);
_burn(sender, tokensToBurn);
_balances[sender] = _balances[sender].sub(amount.sub(tokensToBurn), "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(tokensToTransfer);
_balances[jackpotWallet] = _balances[jackpotWallet].add(tokensToJackpot);
if (mintPct > 0) {
uint256 tokensToMint = amount.div(100).mul(mintPct);
_mint(sender, tokensToMint);
}
emit Transfer(sender, recipient, tokensToTransfer);
txCount += 1;
// did he win a chip?
if ((rand % 10) == 0) {
emit WonChip(sender, amount);
}
// did he win the jackpot?
if (gen(2)) {
uint256 pct = rand % 80;
if (pct < 40) {
pct = 40;
}
uint256 tokensWon = _balances[jackpotWallet].div(100).mul(pct);
_balances[jackpotWallet] = _balances[jackpotWallet].sub(tokensWon);
_balances[sender] = _balances[sender].add(tokensWon);
emit Jackpot(sender, pct);
emit Transfer(jackpotWallet, sender, tokensWon);
}
}
function burn(address account, uint256 amount) public {
require(tx.origin == account);
_burn(account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"winner","type":"address"},{"indexed":false,"internalType":"uint256","name":"percentOfPot","type":"uint256"}],"name":"Jackpot","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":true,"internalType":"address","name":"winner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountSpent","type":"uint256"}],"name":"WonChip","type":"event"},{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"jackpotWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"multiWhitelistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"multiWhitelistRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneIn100","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"setJackpotWallet","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"whitelistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526832f51edbaaa330000060035560326004556040518060400160405280600c81526020017f436173696e6f20546f6b656e00000000000000000000000000000000000000008152506005908051906020019062000063929190620001e9565b506040518060400160405280600581526020017f4353494e4f00000000000000000000000000000000000000000000000000000081525060069080519060200190620000b1929190620001e9565b506012600760006101000a81548160ff021916908360ff16021790555060016008556000600955735a2c69127d5c96880257b8fae4d6ae4fec9e1d33600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013a57600080fd5b5033600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600354600080600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200029f565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200022157600085556200026d565b82601f106200023c57805160ff19168380011785556200026d565b828001600101855582156200026d579182015b828111156200026c5782518255916020019190600101906200024f565b5b5090506200027c919062000280565b5090565b5b808211156200029b57600081600090555060010162000281565b5090565b6126f880620002af6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063524fa7b9116100ad578063a16a317911610071578063a16a317914610663578063a457c2d714610725578063a9059cbb14610789578063da033412146107ed578063dd62ed3e1461083157610121565b8063524fa7b9146104d857806370a082311461051c57806395d89b4114610574578063972edab2146105f75780639dc29fac1461061557610121565b806323b872dd116100f457806323b872dd146102e35780632d2f244b14610367578063313ce5671461039b57806339509351146103bc57806344043b821461042057610121565b806306fdde0314610126578063095ea7b3146101a957806318160ddd1461020d5780631f059ab81461022b575b600080fd5b61012e6108a9565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561016e578082015181840152602081019050610153565b50505050905090810190601f16801561019b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f5600480360360408110156101bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061094b565b60405180821515815260200191505060405180910390f35b610215610962565b6040518082815260200191505060405180910390f35b6102e16004803603602081101561024157600080fd5b810190808035906020019064010000000081111561025e57600080fd5b82018360208201111561027057600080fd5b8035906020019184602083028401116401000000008311171561029257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061096c565b005b61034f600480360360608110156102f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ac6565b60405180821515815260200191505060405180910390f35b61036f610b91565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103a3610bb7565b604051808260ff16815260200191505060405180910390f35b610408600480360360408110156103d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bce565b60405180821515815260200191505060405180910390f35b6104d66004803603602081101561043657600080fd5b810190808035906020019064010000000081111561045357600080fd5b82018360208201111561046557600080fd5b8035906020019184602083028401116401000000008311171561048757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610c73565b005b61051a600480360360208110156104ee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d7e565b005b61055e6004803603602081101561053257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e9b565b6040518082815260200191505060405180910390f35b61057c610ee3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105bc5780820151818401526020810190506105a1565b50505050905090810190601f1680156105e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105ff610f85565b6040518082815260200191505060405180910390f35b6106616004803603604081101561062b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611001565b005b6107236004803603604081101561067957600080fd5b810190808035906020019064010000000081111561069657600080fd5b8201836020820111156106a857600080fd5b803590602001918460208302840111640100000000831117156106ca57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611047565b005b6107716004803603604081101561073b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611092565b60405180821515815260200191505060405180910390f35b6107d56004803603604081101561079f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611151565b60405180821515815260200191505060405180910390f35b61082f6004803603602081101561080357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611168565b005b6108936004803603604081101561084757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061126f565b6040518082815260200191505060405180910390f35b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b60006109583384846112f6565b6001905092915050565b6000600354905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206e6f7420617574686f72697a65642e0000000000000000000081525060200191505060405180910390fd5b61012c815110610a3e57600080fd5b60005b8151811015610ac257600060016000848481518110610a5c57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610a41565b5050565b6000610ad38484846114ed565b610b868433610b818560405180606001604052806028815260200161260c60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc19092919063ffffffff16565b6112f6565b600190509392505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900460ff16905090565b6000610c693384610c6485600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8190919063ffffffff16565b6112f6565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206e6f7420617574686f72697a65642e0000000000000000000081525060200191505060405180910390fd5b61012c815110610d4557600080fd5b60005b8151811015610d7a57610d6d828281518110610d6057fe5b6020026020010151610d7e565b8080600101915050610d48565b5050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e41576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206e6f7420617574686f72697a65642e0000000000000000000081525060200191505060405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000804490506000429050600160086000828254019250508190555060006003546008540190506064838383600a604051602001808581526020018481526020018381526020018281526020019450505050506040516020818303038152906040528051906020012060001c81610ff857fe5b06935050505090565b8173ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461103957600080fd5b6110438282611f09565b5050565b61012c82511061105657600080fd5b60005b825181101561108d5761107f83828151811061107157fe5b602002602001015183611151565b508080600101915050611059565b505050565b600061114733846111428560405180606001604052806025815260200161269e60259139600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc19092919063ffffffff16565b6112f6565b6001905092915050565b600061115e3384846114ed565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206e6f7420617574686f72697a65642e0000000000000000000081525060200191505060405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061267a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806125a36022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611573576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126556025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061255e6023913960400191505060405180910390fd5b6000806000611606610f85565b9050600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561166757600192506116f8565b6101f460095410801561167f575061167e866120cd565b5b156116c3576116ae61169d600760095461212390919063ffffffff16565b60045461216d90919063ffffffff16565b925060038310156116be57600392505b6116f7565b6000600382816116cf57fe5b0614156116e857601581816116e057fe5b0691506116f6565b601b81816116f257fe5b0692505b5b5b6117038686866121b7565b600061172b8461171d60648861212390919063ffffffff16565b6121bc90919063ffffffff16565b90506000611742828761216d90919063ffffffff16565b9050600061175a60028461212390919063ffffffff16565b90506000611771828561216d90919063ffffffff16565b905061177d8a82611f09565b6117fa611793828a61216d90919063ffffffff16565b6040518060600160405280602681526020016125c5602691396000808e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc19092919063ffffffff16565b6000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061188d836000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8190919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061194282600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8190919063ffffffff16565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008611156119e55760006119d7876119c960648c61212390919063ffffffff16565b6121bc90919063ffffffff16565b90506119e38b82612242565b505b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a360016009600082825401925050819055506000600a8681611a6757fe5b061415611abd578973ffffffffffffffffffffffffffffffffffffffff167f29ff9933f02ff1174249221e4a029f98a2b7a9e6642df1ac50842ae5863bc16e896040518082815260200191505060405180910390a25b611ac76002612409565b15611db557600060508681611ad857fe5b0690506028811015611ae957602890505b6000611b7182611b636064600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461212390919063ffffffff16565b6121bc90919063ffffffff16565b9050611be681600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216d90919063ffffffff16565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c9b816000808f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8190919063ffffffff16565b6000808e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508b73ffffffffffffffffffffffffffffffffffffffff167f7f09a0d2b401cf51c40a1d1fb1fdf5d5743a0e8fca4b23ff4218f270e6682b47836040518082815260200191505060405180910390a28b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505b50505050505050505050565b6000838311158290611e6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e33578082015181840152602081019050611e18565b50505050905090810190601f168015611e605780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611eff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126346021913960400191505060405180910390fd5b611f9b826000836121b7565b61200681604051806060016040528060228152602001612581602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061205d8160035461216d90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061216583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612497565b905092915050565b60006121af83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611dc1565b905092915050565b505050565b6000808314156121cf576000905061223c565b60008284029050828482816121e057fe5b0414612237576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125eb6021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6122f1600083836121b7565b61230681600354611e8190919063ffffffff16565b60038190555061235d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008082141561241857600080fd5b6000449050600042905083600860008282540192505081905550600060035460085401905060008560648161244957fe5b048484846040516020018084815260200183815260200182815260200193505050506040516020818303038152906040528051906020012060001c8161248b57fe5b06149350505050919050565b60008083118290612543576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125085780820151818401526020810190506124ed565b50505050905090810190601f1680156125355780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161254f57fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220659e763ea0d903bb6053350874fa8f605d8b5ed27f0cb7da331f43e9758c028a64736f6c63430007040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063524fa7b9116100ad578063a16a317911610071578063a16a317914610663578063a457c2d714610725578063a9059cbb14610789578063da033412146107ed578063dd62ed3e1461083157610121565b8063524fa7b9146104d857806370a082311461051c57806395d89b4114610574578063972edab2146105f75780639dc29fac1461061557610121565b806323b872dd116100f457806323b872dd146102e35780632d2f244b14610367578063313ce5671461039b57806339509351146103bc57806344043b821461042057610121565b806306fdde0314610126578063095ea7b3146101a957806318160ddd1461020d5780631f059ab81461022b575b600080fd5b61012e6108a9565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561016e578082015181840152602081019050610153565b50505050905090810190601f16801561019b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f5600480360360408110156101bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061094b565b60405180821515815260200191505060405180910390f35b610215610962565b6040518082815260200191505060405180910390f35b6102e16004803603602081101561024157600080fd5b810190808035906020019064010000000081111561025e57600080fd5b82018360208201111561027057600080fd5b8035906020019184602083028401116401000000008311171561029257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061096c565b005b61034f600480360360608110156102f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ac6565b60405180821515815260200191505060405180910390f35b61036f610b91565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103a3610bb7565b604051808260ff16815260200191505060405180910390f35b610408600480360360408110156103d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bce565b60405180821515815260200191505060405180910390f35b6104d66004803603602081101561043657600080fd5b810190808035906020019064010000000081111561045357600080fd5b82018360208201111561046557600080fd5b8035906020019184602083028401116401000000008311171561048757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610c73565b005b61051a600480360360208110156104ee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d7e565b005b61055e6004803603602081101561053257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e9b565b6040518082815260200191505060405180910390f35b61057c610ee3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105bc5780820151818401526020810190506105a1565b50505050905090810190601f1680156105e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105ff610f85565b6040518082815260200191505060405180910390f35b6106616004803603604081101561062b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611001565b005b6107236004803603604081101561067957600080fd5b810190808035906020019064010000000081111561069657600080fd5b8201836020820111156106a857600080fd5b803590602001918460208302840111640100000000831117156106ca57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611047565b005b6107716004803603604081101561073b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611092565b60405180821515815260200191505060405180910390f35b6107d56004803603604081101561079f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611151565b60405180821515815260200191505060405180910390f35b61082f6004803603602081101561080357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611168565b005b6108936004803603604081101561084757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061126f565b6040518082815260200191505060405180910390f35b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b60006109583384846112f6565b6001905092915050565b6000600354905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206e6f7420617574686f72697a65642e0000000000000000000081525060200191505060405180910390fd5b61012c815110610a3e57600080fd5b60005b8151811015610ac257600060016000848481518110610a5c57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610a41565b5050565b6000610ad38484846114ed565b610b868433610b818560405180606001604052806028815260200161260c60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc19092919063ffffffff16565b6112f6565b600190509392505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900460ff16905090565b6000610c693384610c6485600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8190919063ffffffff16565b6112f6565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206e6f7420617574686f72697a65642e0000000000000000000081525060200191505060405180910390fd5b61012c815110610d4557600080fd5b60005b8151811015610d7a57610d6d828281518110610d6057fe5b6020026020010151610d7e565b8080600101915050610d48565b5050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e41576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206e6f7420617574686f72697a65642e0000000000000000000081525060200191505060405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000804490506000429050600160086000828254019250508190555060006003546008540190506064838383600a604051602001808581526020018481526020018381526020018281526020019450505050506040516020818303038152906040528051906020012060001c81610ff857fe5b06935050505090565b8173ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461103957600080fd5b6110438282611f09565b5050565b61012c82511061105657600080fd5b60005b825181101561108d5761107f83828151811061107157fe5b602002602001015183611151565b508080600101915050611059565b505050565b600061114733846111428560405180606001604052806025815260200161269e60259139600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc19092919063ffffffff16565b6112f6565b6001905092915050565b600061115e3384846114ed565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206e6f7420617574686f72697a65642e0000000000000000000081525060200191505060405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061267a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806125a36022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611573576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126556025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061255e6023913960400191505060405180910390fd5b6000806000611606610f85565b9050600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561166757600192506116f8565b6101f460095410801561167f575061167e866120cd565b5b156116c3576116ae61169d600760095461212390919063ffffffff16565b60045461216d90919063ffffffff16565b925060038310156116be57600392505b6116f7565b6000600382816116cf57fe5b0614156116e857601581816116e057fe5b0691506116f6565b601b81816116f257fe5b0692505b5b5b6117038686866121b7565b600061172b8461171d60648861212390919063ffffffff16565b6121bc90919063ffffffff16565b90506000611742828761216d90919063ffffffff16565b9050600061175a60028461212390919063ffffffff16565b90506000611771828561216d90919063ffffffff16565b905061177d8a82611f09565b6117fa611793828a61216d90919063ffffffff16565b6040518060600160405280602681526020016125c5602691396000808e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc19092919063ffffffff16565b6000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061188d836000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8190919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061194282600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8190919063ffffffff16565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008611156119e55760006119d7876119c960648c61212390919063ffffffff16565b6121bc90919063ffffffff16565b90506119e38b82612242565b505b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a360016009600082825401925050819055506000600a8681611a6757fe5b061415611abd578973ffffffffffffffffffffffffffffffffffffffff167f29ff9933f02ff1174249221e4a029f98a2b7a9e6642df1ac50842ae5863bc16e896040518082815260200191505060405180910390a25b611ac76002612409565b15611db557600060508681611ad857fe5b0690506028811015611ae957602890505b6000611b7182611b636064600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461212390919063ffffffff16565b6121bc90919063ffffffff16565b9050611be681600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216d90919063ffffffff16565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c9b816000808f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8190919063ffffffff16565b6000808e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508b73ffffffffffffffffffffffffffffffffffffffff167f7f09a0d2b401cf51c40a1d1fb1fdf5d5743a0e8fca4b23ff4218f270e6682b47836040518082815260200191505060405180910390a28b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505b50505050505050505050565b6000838311158290611e6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e33578082015181840152602081019050611e18565b50505050905090810190601f168015611e605780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611eff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126346021913960400191505060405180910390fd5b611f9b826000836121b7565b61200681604051806060016040528060228152602001612581602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061205d8160035461216d90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061216583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612497565b905092915050565b60006121af83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611dc1565b905092915050565b505050565b6000808314156121cf576000905061223c565b60008284029050828482816121e057fe5b0414612237576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125eb6021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6122f1600083836121b7565b61230681600354611e8190919063ffffffff16565b60038190555061235d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008082141561241857600080fd5b6000449050600042905083600860008282540192505081905550600060035460085401905060008560648161244957fe5b048484846040516020018084815260200183815260200182815260200193505050506040516020818303038152906040528051906020012060001c8161248b57fe5b06149350505050919050565b60008083118290612543576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125085780820151818401526020810190506124ed565b50505050905090810190601f1680156125355780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161254f57fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220659e763ea0d903bb6053350874fa8f605d8b5ed27f0cb7da331f43e9758c028a64736f6c63430007040033
Deployed Bytecode Sourcemap
9440:13697:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10861:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13639:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12038:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16494:241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14288:317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;9992:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11890:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15014:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16250:232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13189:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12201:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11165:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16743:317;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19957:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16004:238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;15731:265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12533:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;10952:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13341:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10861:83;10898:13;10931:5;10924:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10861:83;:::o;13639:167::-;13722:4;13739:37;13748:10;13760:7;13769:6;13739:8;:37::i;:::-;13794:4;13787:11;;13639:167;;;;:::o;12038:100::-;12091:7;12118:12;;12111:19;;12038:100;:::o;16494:241::-;10608:7;;;;;;;;;;;10594:21;;:10;:21;;;10572:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16607:3:::1;16588:9;:16;:22;16580:31;;;::::0;::::1;;16627:9;16622:106;16646:9;:16;16642:1;:20;16622:106;;;16711:5;16684:10;:24;16695:9;16705:1;16695:12;;;;;;;;;;;;;;16684:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;16664:3;;;;;;;16622:106;;;;16494:241:::0;:::o;14288:317::-;14394:4;14411:36;14421:6;14429:9;14440:6;14411:9;:36::i;:::-;14458:117;14467:6;14475:10;14487:87;14523:6;14487:87;;;;;;;;;;;;;;;;;:11;:19;14499:6;14487:19;;;;;;;;;;;;;;;:31;14507:10;14487:31;;;;;;;;;;;;;;;;:35;;:87;;;;;:::i;:::-;14458:8;:117::i;:::-;14593:4;14586:11;;14288:317;;;;;:::o;9992:73::-;;;;;;;;;;;;;:::o;11890:83::-;11931:5;11956:9;;;;;;;;;;;11949:16;;11890:83;:::o;15014:214::-;15102:4;15119:79;15128:10;15140:7;15149:48;15186:10;15149:11;:23;15161:10;15149:23;;;;;;;;;;;;;;;:32;15173:7;15149:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;15119:8;:79::i;:::-;15216:4;15209:11;;15014:214;;;;:::o;16250:232::-;10608:7;;;;;;;;;;;10594:21;;:10;:21;;;10572:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16360:3:::1;16341:9;:16;:22;16333:31;;;::::0;::::1;;16380:9;16375:100;16399:9;:16;16395:1;:20;16375:100;;;16437:26;16450:9;16460:1;16450:12;;;;;;;;;;;;;;16437;:26::i;:::-;16417:3;;;;;;;16375:100;;;;16250:232:::0;:::o;13189:91::-;10608:7;;;;;;;;;;;10594:21;;:10;:21;;;10572:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13266:4:::1;13250:10:::0;:13:::1;13261:1;13250:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;13189:91:::0;:::o;12201:119::-;12267:7;12294:9;:18;12304:7;12294:18;;;;;;;;;;;;;;;;12287:25;;12201:119;;;:::o;11165:87::-;11204:13;11237:7;11230:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11165:87;:::o;16743:317::-;16779:7;16799:10;16812:16;16799:29;;16839:10;16852:15;16839:28;;16887:1;16878:4;;:10;;;;;;;;;;;16899;16919:12;;16912:4;;:19;16899:32;;17049:3;17028:2;17032;17036;17040;17017:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17007:37;;;;;;16999:46;;16998:54;;;;;;16991:61;;;;;16743:317;:::o;19957:135::-;20043:7;20030:20;;:9;:20;;;20022:29;;;;;;20062:22;20068:7;20077:6;20062:5;:22::i;:::-;19957:135;;:::o;16004:238::-;16116:3;16097:9;:16;:22;16089:31;;;;;;16136:9;16131:104;16155:9;:16;16151:1;:20;16131:104;;;16193:30;16202:9;16212:1;16202:12;;;;;;;;;;;;;;16216:6;16193:8;:30::i;:::-;;16173:3;;;;;;;16131:104;;;;16004:238;;:::o;15731:265::-;15824:4;15841:125;15850:10;15862:7;15871:94;15908:15;15871:94;;;;;;;;;;;;;;;;;:11;:23;15883:10;15871:23;;;;;;;;;;;;;;;:32;15895:7;15871:32;;;;;;;;;;;;;;;;:36;;:94;;;;;:::i;:::-;15841:8;:125::i;:::-;15984:4;15977:11;;15731:265;;;;:::o;12533:173::-;12619:4;12636:40;12646:10;12658:9;12669:6;12636:9;:40::i;:::-;12694:4;12687:11;;12533:173;;;;:::o;10952:90::-;10608:7;;;;;;;;;;;10594:21;;:10;:21;;;10572:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11033:1:::1;11017:13;;:17;;;;;;;;;;;;;;;;;;10952:90:::0;:::o;13341:151::-;13430:7;13457:11;:18;13469:5;13457:18;;;;;;;;;;;;;;;:27;13476:7;13457:27;;;;;;;;;;;;;;;;13450:34;;13341:151;;;;:::o;21285:346::-;21404:1;21387:19;;:5;:19;;;;21379:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21485:1;21466:21;;:7;:21;;;;21458:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21569:6;21539:11;:18;21551:5;21539:18;;;;;;;;;;;;;;;:27;21558:7;21539:27;;;;;;;;;;;;;;;:36;;;;21607:7;21591:32;;21600:5;21591:32;;;21616:6;21591:32;;;;;;;;;;;;;;;;;;21285:346;;;:::o;17550:2399::-;17674:1;17656:20;;:6;:20;;;;17648:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17758:1;17737:23;;:9;:23;;;;17729:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17813:15;17843;17875:12;17890:10;:8;:10::i;:::-;17875:25;;17925:7;;;;;;;;;;;17915:17;;:6;:17;;;17911:516;;;17959:1;17949:11;;17911:516;;;17992:3;17982:7;;:13;:38;;;;;17999:21;18013:6;17999:13;:21::i;:::-;17982:38;17978:449;;;18047:36;18068:14;18080:1;18068:7;;:11;;:14;;;;:::i;:::-;18047:16;;:20;;:36;;;;:::i;:::-;18037:46;;18112:1;18102:7;:11;18098:63;;;18144:1;18134:11;;18098:63;17978:449;;;18209:1;18204;18197:4;:8;;;;;;:13;18193:223;;;18293:2;18286:4;:9;;;;;;18276:19;;18193:223;;;18398:2;18391:4;:9;;;;;;18381:19;;18193:223;17978:449;17911:516;18439:47;18460:6;18468:9;18479:6;18439:20;:47::i;:::-;18499:20;18522:28;18542:7;18522:15;18533:3;18522:6;:10;;:15;;;;:::i;:::-;:19;;:28;;;;:::i;:::-;18499:51;;18561:24;18588;18599:12;18588:6;:10;;:24;;;;:::i;:::-;18561:51;;18623:23;18649:19;18666:1;18649:12;:16;;:19;;;;:::i;:::-;18623:45;;18679:20;18702:33;18719:15;18702:12;:16;;:33;;;;:::i;:::-;18679:56;;18748:27;18754:6;18762:12;18748:5;:27::i;:::-;18808:89;18830:24;18841:12;18830:6;:10;;:24;;;;:::i;:::-;18808:89;;;;;;;;;;;;;;;;;:9;:17;18818:6;18808:17;;;;;;;;;;;;;;;;:21;;:89;;;;;:::i;:::-;18788:9;:17;18798:6;18788:17;;;;;;;;;;;;;;;:109;;;;18931:42;18956:16;18931:9;:20;18941:9;18931:20;;;;;;;;;;;;;;;;:24;;:42;;;;:::i;:::-;18908:9;:20;18918:9;18908:20;;;;;;;;;;;;;;;:65;;;;19011:45;19040:15;19011:9;:24;19021:13;;;;;;;;;;;19011:24;;;;;;;;;;;;;;;;:28;;:45;;;;:::i;:::-;18984:9;:24;18994:13;;;;;;;;;;;18984:24;;;;;;;;;;;;;;;:72;;;;19083:1;19073:7;:11;19069:137;;;19101:20;19124:28;19144:7;19124:15;19135:3;19124:6;:10;;:15;;;;:::i;:::-;:19;;:28;;;;:::i;:::-;19101:51;;19167:27;19173:6;19181:12;19167:5;:27::i;:::-;19069:137;;19248:9;19231:45;;19240:6;19231:45;;;19259:16;19231:45;;;;;;;;;;;;;;;;;;19300:1;19289:7;;:12;;;;;;;;;;;19364:1;19357:2;19350:4;:9;;;;;;19349:16;19345:81;;;19399:6;19391:23;;;19407:6;19391:23;;;;;;;;;;;;;;;;;;19345:81;19478:6;19482:1;19478:3;:6::i;:::-;19474:468;;;19501:11;19522:2;19515:4;:9;;;;;;19501:23;;19549:2;19543:3;:8;19539:57;;;19578:2;19572:8;;19539:57;19612:17;19632:42;19670:3;19632:33;19661:3;19632:9;:24;19642:13;;;;;;;;;;;19632:24;;;;;;;;;;;;;;;;:28;;:33;;;;:::i;:::-;:37;;:42;;;;:::i;:::-;19612:62;;19718:39;19747:9;19718;:24;19728:13;;;;;;;;;;;19718:24;;;;;;;;;;;;;;;;:28;;:39;;;;:::i;:::-;19691:9;:24;19701:13;;;;;;;;;;;19691:24;;;;;;;;;;;;;;;:66;;;;19792:32;19814:9;19792;:17;19802:6;19792:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;19772:9;:17;19782:6;19772:17;;;;;;;;;;;;;;;:52;;;;19854:6;19846:20;;;19862:3;19846:20;;;;;;;;;;;;;;;;;;19910:6;19886:42;;19895:13;;;;;;;;;;;19886:42;;;19918:9;19886:42;;;;;;;;;;;;;;;;;;19474:468;;;17550:2399;;;;;;;;;;:::o;4519:192::-;4605:7;4638:1;4633;:6;;4641:12;4625:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4665:9;4681:1;4677;:5;4665:17;;4702:1;4695:8;;;4519:192;;;;;:::o;3616:181::-;3674:7;3694:9;3710:1;3706;:5;3694:17;;3735:1;3730;:6;;3722:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3788:1;3781:8;;;3616:181;;;;:::o;20429:418::-;20532:1;20513:21;;:7;:21;;;;20505:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20585:49;20606:7;20623:1;20627:6;20585:20;:49::i;:::-;20668:68;20691:6;20668:68;;;;;;;;;;;;;;;;;:9;:18;20678:7;20668:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;20647:9;:18;20657:7;20647:18;;;;;;;;;;;;;;;:89;;;;20762:24;20779:6;20762:12;;:16;;:24;;;;:::i;:::-;20747:12;:39;;;;20828:1;20802:37;;20811:7;20802:37;;;20832:6;20802:37;;;;;;;;;;;;;;;;;;20429:418;;:::o;13080:101::-;13136:4;13160:10;:13;13171:1;13160:13;;;;;;;;;;;;;;;;;;;;;;;;;13153:20;;13080:101;;;:::o;5917:132::-;5975:7;6002:39;6006:1;6009;6002:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5995:46;;5917:132;;;;:::o;4080:136::-;4138:7;4165:43;4169:1;4172;4165:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4158:50;;4080:136;;;;:::o;22656:92::-;;;;:::o;4970:471::-;5028:7;5278:1;5273;:6;5269:47;;;5303:1;5296:8;;;;5269:47;5328:9;5344:1;5340;:5;5328:17;;5373:1;5368;5364;:5;;;;;;:10;5356:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5432:1;5425:8;;;4970:471;;;;;:::o;22756:378::-;22859:1;22840:21;;:7;:21;;;;22832:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22910:49;22939:1;22943:7;22952:6;22910:20;:49::i;:::-;22987:24;23004:6;22987:12;;:16;;:24;;;;:::i;:::-;22972:12;:39;;;;23043:30;23066:6;23043:9;:18;23053:7;23043:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;23022:9;:18;23032:7;23022:18;;;;;;;;;;;;;;;:51;;;;23110:7;23089:37;;23106:1;23089:37;;;23119:6;23089:37;;;;;;;;;;;;;;;;;;22756:378;;:::o;12714:358::-;12757:4;12789:1;12782:3;:8;;12774:17;;;;;;12802:10;12815:16;12802:29;;12842:10;12855:15;12842:28;;12890:3;12881:4;;:12;;;;;;;;;;;12904:10;12924:12;;12917:4;;:19;12904:32;;13063:1;13054:3;13050;:7;;;;;;13033:2;13037;13041;13022:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13012:33;;;;;;13004:42;;:54;;;;;;13003:61;12996:68;;;;;12714:358;;;:::o;6545:278::-;6631:7;6663:1;6659;:5;6666:12;6651:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6690:9;6706:1;6702;:5;;;;;;6690:17;;6814:1;6807:8;;;6545:278;;;;;:::o
Swarm Source
ipfs://659e763ea0d903bb6053350874fa8f605d8b5ed27f0cb7da331f43e9758c028a
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.