Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 8 from a total of 8 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 11669824 | 1884 days ago | IN | 0 ETH | 0.00368769 | ||||
| Renounce Ownersh... | 11669811 | 1884 days ago | IN | 0 ETH | 0.00107653 | ||||
| Update Fee | 11669768 | 1884 days ago | IN | 0 ETH | 0.00339912 | ||||
| Change Tax Retur... | 11669765 | 1884 days ago | IN | 0 ETH | 0.0019738 | ||||
| Exclude Account | 11669763 | 1884 days ago | IN | 0 ETH | 0.00536205 | ||||
| Exclude Account | 11669757 | 1884 days ago | IN | 0 ETH | 0.00801633 | ||||
| Update Fee | 11669691 | 1884 days ago | IN | 0 ETH | 0.00218388 | ||||
| Transfer | 11633983 | 1889 days ago | IN | 0 ETH | 0.0135687 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WOR
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-01-11
*/
/*
The Unofficial Official #WarOnRugs Token
For Fans, by a Fan, to Give Back to the Community
Sends a variable donation to @Shappy's address - 0xbD77bF4bCfE28690298C6283c919A1BCb3291130
-------------------------
#WarOnRugs Token FairSale
https://WarOnRugs.eth.link
-------------------------
-80 ETH Hardcap
-1000 #WOR Max Supply
-10 Team Tokens
-1 ETH Max Buy
-0.001 ETH Min Buy
-LockingLiquidity();
-RenouncingOwnership();
Send ETH to the Deployed PreSale Contract Address - 0xdCF33161e19dC15Cf66253d57dB187eAF6CFbBA8
-Set Gas Price to fast GWEI.
-Set Gas TX Limit to '180,000' unused refunded automatically)
Receive #WOR Token Allocation Automatically.
The token has a 1% TX fee that goes directly to the #WarOnRugs Donation Fund.
1000 Max Supply
10 Team Tokens
*/
pragma solidity ^0.6.0;
//SPDX-License-Identifier: MIT
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/**
* @dev 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 Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [// importANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* // importANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return _functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
// pragma solidity >=0.5.0;
interface IUniswapV2ERC20 {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor () internal {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
contract WOR is IERC20, Ownable, ReentrancyGuard {
using SafeMath for uint256;
mapping (address => mapping (address => uint256)) private _allowances;
bool transferPaused = true;
string private _name = "WarOnRugs.eth.link";
string private _symbol = "WOR";
uint8 private _decimals = 18;
IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
address public immutable uniswapV2Pair;
address public _burnPool = 0x0000000000000000000000000000000000000000;
address public presale;
address public WORAddr = 0xbD77bF4bCfE28690298C6283c919A1BCb3291130; // Set to WOR Addr
mapping (address => uint256) private _aOwned;
mapping (address => uint256) private _tOwned;
mapping (address => bool) private _isExcluded;
address[] private _excluded;
uint256 private constant MAX = ~uint256(0);
uint256 private constant _tTotal = 1 * 10**3 * 10**18;
uint256 private _aTotal = (MAX - (MAX % _tTotal));
uint256 private _tFeeTotal;
uint8 public feeDecimals;
uint32 public feePercentage;
uint256 taxToHolders = 9999999999999999999999999;
uint256 internal _minimumSupply;
uint256 public _totalBurnedTokens;
uint256 public _totalBurnedLpTokens;
uint256 public _balanceOfLpTokens;
event FeeUpdated(uint8 feeDecimals, uint32 feePercentage);
constructor(
uint8 _feeDecimals,
uint32 _feePercentage,
address _presale)public {
_aOwned[_msgSender()] = _aTotal;
presale = _presale;
// Create a uniswap pair for this new token
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
.createPair(address(this), uniswapV2Router.WETH());
// set the rest of the contract variables
updateFee(_feeDecimals, _feePercentage);
emit Transfer(address(0), _msgSender(), _tTotal);
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _tTotal;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
if (_isExcluded[account]) return _tOwned[account];
return tokenFromAllocation(_aOwned[account]);
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
function _transfer(
address from,
address to,
uint256 amount
) internal {
if (transferPaused){
if (to == address(uniswapV2Pair) || to == address(uniswapV2Router) || to == address(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f)){
revert(); // IUniswapV2Factory address
}
}
uint256 tokensToDonate = calcTokenFee(
amount,
feeDecimals,
feePercentage
);
if (tokensToDonate > 0){
if (_isExcluded[from] && !_isExcluded[to]) {
_transferFromExcluded(from, WORAddr, tokensToDonate);
} else if (!_isExcluded[from] && _isExcluded[to]) {
_transferToExcluded(from, WORAddr, tokensToDonate);
} else if (!_isExcluded[from] && !_isExcluded[to]) {
_transferStandard(from, WORAddr, tokensToDonate);
} else if (_isExcluded[from] && _isExcluded[to]) {
_transferBothExcluded(from, WORAddr, tokensToDonate);
} else {
_transferStandard(from, WORAddr, tokensToDonate);
}
}
// take the fee and send those tokens to War on Rugs.
// and then send the remainder of tokens to original recipient
uint256 tokensToTransfer = amount.sub(tokensToDonate);
if (_isExcluded[from] && !_isExcluded[to]) {
_transferFromExcluded(from, to, tokensToTransfer);
} else if (!_isExcluded[from] && _isExcluded[to]) {
_transferToExcluded(from, to, tokensToTransfer);
} else if (!_isExcluded[from] && !_isExcluded[to]) {
_transferStandard(from, to, tokensToTransfer);
} else if (_isExcluded[from] && _isExcluded[to]) {
_transferBothExcluded(from, to, tokensToTransfer);
} else {
_transferStandard(from, to, tokensToTransfer);
}
}
function unPauseTransferForever() external nonReentrant {
require (msg.sender == presale, "Only the presale contract can call this");
transferPaused = false;
}
/**
* @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 minimumSupply() external view returns (uint256){
return _minimumSupply;
}
/*
override the internal _transfer function so that we can
take the fee, and conditionally do the swap + liquditiy
*/
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(uniswapV2Router), tokenAmount);
// add the liquidity
uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
address(this),
block.timestamp
);
}
/*
calculates a percentage of tokens to hold as the fee
*/
function calcTokenFee(
uint256 _amount,
uint8 _feeDecimals,
uint32 _feePercentage
) public pure returns (uint256 locked) {
locked = _amount.mul(_feePercentage).div(
10**(uint256(_feeDecimals) + 2)
);
}
// ------------------------------------------------------------------------
// Don't accept ETH Directly to the Contract Address - For BigYeti
// ------------------------------------------------------------------------
receive () external payable {
revert();
}
///
/// Ownership adjustments
///
function updateFee(uint8 _feeDecimals, uint32 _feePercentage)
public
onlyOwner
nonReentrant
{
require(_feePercentage <= 1, "The fee can't be more than 1%");
feeDecimals = _feeDecimals;
feePercentage = _feePercentage;
emit FeeUpdated(_feeDecimals, _feePercentage);
}
function burnLiq(address _token, address _to, uint256 _amount) public onlyOwner nonReentrant {
require(_to != address(0),"ERC20 transfer to zero address");
IUniswapV2ERC20 token = IUniswapV2ERC20(_token);
_totalBurnedLpTokens = _totalBurnedLpTokens.sub(_amount);
token.transfer(_burnPool, _amount);
}
function _transferStandard(address sender, address recipient, uint256 tAmount) private {
(uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
_aOwned[sender] = _aOwned[sender].sub(aAmount);
_aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);
_allocationFee(aFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
(uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
_aOwned[sender] = _aOwned[sender].sub(aAmount);
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);
_allocationFee(aFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
(uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_aOwned[sender] = _aOwned[sender].sub(aAmount);
_aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);
_allocationFee(aFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
(uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_aOwned[sender] = _aOwned[sender].sub(aAmount);
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);
_allocationFee(aFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _allocationFee(uint256 aFee, uint256 tFee) private {
_aTotal = _aTotal.sub(aFee);
_tFeeTotal = _tFeeTotal.add(tFee);
}
function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
(uint256 tTransferAmount, uint256 tFee) = __getTValues(tAmount);
uint256 currentRate = _getRate();
(uint256 aAmount, uint256 aTransferAmount, uint256 aFee) = _getAValues(tAmount, tFee, currentRate);
return (aAmount, aTransferAmount, aFee, tTransferAmount, tFee);
}
function changeTaxReturnedToHolders(uint256 n) external onlyOwner {
require(n >= 100, "The Tax Returned to Holders not more than 1%");
require(n <= 1000, "The Tax Returned to Holders not less than 0.1%");
taxToHolders = n;
}
function __getTValues(uint256 tAmount) private view returns (uint256, uint256) {
uint256 tFee = tAmount.div(taxToHolders);
uint256 tTransferAmount = tAmount.sub(tFee);
return (tTransferAmount, tFee);
}
function _getAValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
uint256 aAmount = tAmount.mul(currentRate);
uint256 aFee = tFee.mul(currentRate);
uint256 aTransferAmount = aAmount.sub(aFee);
return (aAmount, aTransferAmount, aFee);
}
function _getRate() private view returns(uint256) {
(uint256 aSupply, uint256 tSupply) = _getCurrentSupply();
return aSupply.div(tSupply);
}
function _getCurrentSupply() private view returns(uint256, uint256) {
uint256 aSupply = _aTotal;
uint256 tSupply = _tTotal;
for (uint256 i = 0; i < _excluded.length; i++) {
if (_aOwned[_excluded[i]] > aSupply || _tOwned[_excluded[i]] > tSupply) return (_aTotal, _tTotal);
aSupply = aSupply.sub(_aOwned[_excluded[i]]);
tSupply = tSupply.sub(_tOwned[_excluded[i]]);
}
if (aSupply < _aTotal.div(_tTotal)) return (_aTotal, _tTotal);
return (aSupply, tSupply);
}
function allocate(uint256 tAmount) public {
address sender = _msgSender();
require(!_isExcluded[sender], "Excluded addresses cannot call this function");
(uint256 aAmount,,,,) = _getValues(tAmount);
_aOwned[sender] = _aOwned[sender].sub(aAmount);
_aTotal = _aTotal.sub(aAmount);
_tFeeTotal = _tFeeTotal.add(tAmount);
}
function allocationFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
require(tAmount <= _tTotal, "Amount must be less than supply");
if (!deductTransferFee) {
(uint256 aAmount,,,,) = _getValues(tAmount);
return aAmount;
} else {
(,uint256 aTransferAmount,,,) = _getValues(tAmount);
return aTransferAmount;
}
}
function tokenFromAllocation(uint256 aAmount) public view returns(uint256) {
require(aAmount <= _aTotal, "Amount must be less than the total allocations");
uint256 currentRate = _getRate();
return aAmount.div(currentRate);
}
function excludeAccount(address account) external onlyOwner nonReentrant {
require(!_isExcluded[account], "Account is already excluded");
if(_aOwned[account] > 0) {
_tOwned[account] = tokenFromAllocation(_aOwned[account]);
}
_isExcluded[account] = true;
_excluded.push(account);
}
function includeAccount(address account) external onlyOwner nonReentrant {
require(_isExcluded[account], "Account is already excluded");
for (uint256 i = 0; i < _excluded.length; i++) {
if (_excluded[i] == account) {
_excluded[i] = _excluded[_excluded.length - 1];
_tOwned[account] = 0;
_isExcluded[account] = false;
_excluded.pop();
break;
}
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"},{"internalType":"address","name":"_presale","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"feeDecimals","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"feePercentage","type":"uint32"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WORAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_balanceOfLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"allocate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"allocationFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnLiq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"calcTokenFee","outputs":[{"internalType":"uint256","name":"locked","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"changeTaxReturnedToHolders","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":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minimumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"aAmount","type":"uint256"}],"name":"tokenFromAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPauseTransferForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6003805460ff1916600117905560e0604052601260a0819052715761724f6e527567732e6574682e6c696e6b60701b60c09081526200004291600491906200056b565b50604080518082019091526003808252622ba7a960e91b60209092019182526200006f916005916200056b565b5060068054610100600160a81b031960ff19909116601217169055600880546001600160a01b03191673bd77bf4bcfe28690298c6283c919a1bcb32911301790556818ce40f6d0219fffff19600d556a0845951614014849ffffff601055348015620000da57600080fd5b5060405162002c0538038062002c05833981810160405260608110156200010057600080fd5b508051602082015160409092015190919060006200011d620003d3565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055600d54600960006200017c620003d3565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555080600760006101000a8154816001600160a01b0302191690836001600160a01b03160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021557600080fd5b505afa1580156200022a573d6000803e3d6000fd5b505050506040513d60208110156200024157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039092169163c9c65396913091737a250d5630b4cf539739df2c5dacb4c659f2488d9163ad5c4648916004808301926020929190829003018186803b158015620002a357600080fd5b505afa158015620002b8573d6000803e3d6000fd5b505050506040513d6020811015620002cf57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200032257600080fd5b505af115801562000337573d6000803e3d6000fd5b505050506040513d60208110156200034e57600080fd5b505160601b6001600160601b0319166080526200036c8383620003d7565b62000376620003d3565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef683635c9adc5dea000006040518082815260200191505060405180910390a350505062000607565b3390565b620003e1620003d3565b6000546001600160a01b0390811691161462000444576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600260015414156200049d576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600190815563ffffffff82161115620004ff576040805162461bcd60e51b815260206004820152601d60248201527f546865206665652063616e2774206265206d6f7265207468616e203125000000604482015290519081900360640190fd5b600f805463ffffffff8316610100810264ffffffff001960ff871660ff199094168417161790925560408051918252602082019290925281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a1505060018055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005ae57805160ff1916838001178555620005de565b82800160010185558215620005de579182015b82811115620005de578251825591602001919060010190620005c1565b50620005ec929150620005f0565b5090565b5b80821115620005ec5760008155600101620005f1565b60805160601c6125db6200062a60003980610abd52806118db52506125db6000f3fe6080604052600436106102085760003560e01c80638da5cb5b11610118578063cc0f1786116100a0578063f2fde38b1161006f578063f2fde38b1461076d578063f51d4df5146107a0578063f84354f1146107b5578063fdea8e0b146107e8578063ff7c4790146107fd57610212565b8063cc0f1786146106b1578063dd62ed3e146106c6578063eaa93e7814610701578063f2cc0c181461073a57610212565b8063a001ecdd116100e7578063a001ecdd146105d2578063a457c2d714610600578063a9059cbb14610639578063bc660b2f14610672578063c44b75b01461068757610212565b80638da5cb5b1461056957806390ca796b1461057e57806391fe5a64146105a857806395d89b41146105bd57610212565b8063395093511161019b578063647af8e61161016a578063647af8e6146104b4578063689dc62d146104c957806370a082311461050c578063715018a61461053f5780637ede036d1461055457610212565b806339509351146103f557806349bd5a5e1461042e5780634a45b7d91461044357806354bf93591461047557610212565b806323b872dd116101d757806323b872dd1461034657806328d2bc91146103895780632993e8e31461039e578063313ce567146103ca57610212565b806306fdde0314610217578063095ea7b3146102a15780631694505e146102ee57806318160ddd1461031f57610212565b3661021257600080fd5b600080fd5b34801561022357600080fd5b5061022c610812565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026657818101518382015260200161024e565b50505050905090810190601f1680156102935780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ad57600080fd5b506102da600480360360408110156102c457600080fd5b506001600160a01b0381351690602001356108a8565b604080519115158252519081900360200190f35b3480156102fa57600080fd5b506103036108c6565b604080516001600160a01b039092168252519081900360200190f35b34801561032b57600080fd5b506103346108de565b60408051918252519081900360200190f35b34801561035257600080fd5b506102da6004803603606081101561036957600080fd5b506001600160a01b038135811691602081013590911690604001356108eb565b34801561039557600080fd5b50610303610972565b3480156103aa57600080fd5b506103c8600480360360208110156103c157600080fd5b5035610986565b005b3480156103d657600080fd5b506103df610a64565b6040805160ff9092168252519081900360200190f35b34801561040157600080fd5b506102da6004803603604081101561041857600080fd5b506001600160a01b038135169060200135610a6d565b34801561043a57600080fd5b50610303610abb565b34801561044f57600080fd5b506103346004803603604081101561046657600080fd5b50803590602001351515610adf565b34801561048157600080fd5b506103346004803603606081101561049857600080fd5b50803590602081013560ff16906040013563ffffffff16610b76565b3480156104c057600080fd5b506103c8610ba6565b3480156104d557600080fd5b506103c8600480360360608110156104ec57600080fd5b506001600160a01b03813581169160208101359091169060400135610c4a565b34801561051857600080fd5b506103346004803603602081101561052f57600080fd5b50356001600160a01b0316610deb565b34801561054b57600080fd5b506103c8610e55565b34801561056057600080fd5b50610334610ef7565b34801561057557600080fd5b50610303610efd565b34801561058a57600080fd5b506103c8600480360360208110156105a157600080fd5b5035610f0c565b3480156105b457600080fd5b50610334610fe4565b3480156105c957600080fd5b5061022c610fea565b3480156105de57600080fd5b506105e761104b565b6040805163ffffffff9092168252519081900360200190f35b34801561060c57600080fd5b506102da6004803603604081101561062357600080fd5b506001600160a01b03813516906020013561105c565b34801561064557600080fd5b506102da6004803603604081101561065c57600080fd5b506001600160a01b0381351690602001356110c4565b34801561067e57600080fd5b506103036110d8565b34801561069357600080fd5b50610334600480360360208110156106aa57600080fd5b50356110e7565b3480156106bd57600080fd5b506103df611147565b3480156106d257600080fd5b50610334600480360360408110156106e957600080fd5b506001600160a01b0381358116916020013516611150565b34801561070d57600080fd5b506103c86004803603604081101561072457600080fd5b50803560ff16906020013563ffffffff1661117b565b34801561074657600080fd5b506103c86004803603602081101561075d57600080fd5b50356001600160a01b03166112e6565b34801561077957600080fd5b506103c86004803603602081101561079057600080fd5b50356001600160a01b03166114bb565b3480156107ac57600080fd5b506103346115b3565b3480156107c157600080fd5b506103c8600480360360208110156107d857600080fd5b50356001600160a01b03166115b9565b3480156107f457600080fd5b506103036117c9565b34801561080957600080fd5b506103346117d8565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089e5780601f106108735761010080835404028352916020019161089e565b820191906000526020600020905b81548152906001019060200180831161088157829003601f168201915b5050505050905090565b60006108bc6108b56117de565b84846117e2565b5060015b92915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b683635c9adc5dea0000090565b60006108f88484846118ce565b610968846109046117de565b61096385604051806060016040528060288152602001612496602891396001600160a01b038a166000908152600260205260408120906109426117de565b6001600160a01b031681526020810191909152604001600020549190611c8e565b6117e2565b5060019392505050565b60065461010090046001600160a01b031681565b61098e6117de565b6000546001600160a01b039081169116146109de576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b6064811015610a1e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806124de602c913960400191505060405180910390fd5b6103e8811115610a5f5760405162461bcd60e51b815260040180806020018281038252602e815260200180612447602e913960400191505060405180910390fd5b601055565b60065460ff1690565b60006108bc610a7a6117de565b846109638560026000610a8b6117de565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611d25565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000683635c9adc5dea00000831115610b3f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610b5d576000610b4f84611d7f565b509294506108c09350505050565b6000610b6884611d7f565b509194506108c09350505050565b6000610b9e600260ff851601600a0a610b988663ffffffff80871690611dcb16565b90611e24565b949350505050565b60026001541415610bec576040805162461bcd60e51b815260206004820152601f60248201526000805160206123b1833981519152604482015290519081900360640190fd5b60026001556007546001600160a01b03163314610c3a5760405162461bcd60e51b815260040180806020018281038252602781526020018061255a6027913960400191505060405180910390fd5b6003805460ff1916905560018055565b610c526117de565b6000546001600160a01b03908116911614610ca2576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b60026001541415610ce8576040805162461bcd60e51b815260206004820152601f60248201526000805160206123b1833981519152604482015290519081900360640190fd5b60026001556001600160a01b038216610d48576040805162461bcd60e51b815260206004820152601e60248201527f4552433230207472616e7366657220746f207a65726f20616464726573730000604482015290519081900360640190fd5b6013548390610d579083611e66565b6013556006546040805163a9059cbb60e01b81526101009092046001600160a01b0390811660048401526024830185905290519083169163a9059cbb9160448083019260209291908290030181600087803b158015610db557600080fd5b505af1158015610dc9573d6000803e3d6000fd5b505050506040513d6020811015610ddf57600080fd5b50506001805550505050565b6001600160a01b0381166000908152600b602052604081205460ff1615610e2b57506001600160a01b0381166000908152600a6020526040902054610e50565b6001600160a01b038216600090815260096020526040902054610e4d906110e7565b90505b919050565b610e5d6117de565b6000546001600160a01b03908116911614610ead576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60115490565b6000546001600160a01b031690565b6000610f166117de565b6001600160a01b0381166000908152600b602052604090205490915060ff1615610f715760405162461bcd60e51b815260040180806020018281038252602c81526020018061252e602c913960400191505060405180910390fd5b6000610f7c83611d7f565b505050506001600160a01b038316600090815260096020526040902054909150610fa69082611e66565b6001600160a01b038316600090815260096020526040902055600d54610fcc9082611e66565b600d55600e54610fdc9084611d25565b600e55505050565b60125481565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089e5780601f106108735761010080835404028352916020019161089e565b600f54610100900463ffffffff1681565b60006108bc6110696117de565b846109638560405180606001604052806025815260200161258160259139600260006110936117de565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c8e565b60006108bc6110d16117de565b84846118ce565b6008546001600160a01b031681565b6000600d5482111561112a5760405162461bcd60e51b815260040180806020018281038252602e815260200180612419602e913960400191505060405180910390fd5b6000611134611ea8565b90506111408382611e24565b9392505050565b600f5460ff1681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6111836117de565b6000546001600160a01b039081169116146111d3576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b60026001541415611219576040805162461bcd60e51b815260206004820152601f60248201526000805160206123b1833981519152604482015290519081900360640190fd5b6002600190815563ffffffff8216111561127a576040805162461bcd60e51b815260206004820152601d60248201527f546865206665652063616e2774206265206d6f7265207468616e203125000000604482015290519081900360640190fd5b600f805463ffffffff8316610100810264ffffffff001960ff871660ff199094168417161790925560408051918252602082019290925281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a1505060018055565b6112ee6117de565b6000546001600160a01b0390811691161461133e576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b60026001541415611384576040805162461bcd60e51b815260206004820152601f60248201526000805160206123b1833981519152604482015290519081900360640190fd5b60026001556001600160a01b0381166000908152600b602052604090205460ff16156113f7576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205415611451576001600160a01b038116600090815260096020526040902054611437906110e7565b6001600160a01b0382166000908152600a60205260409020555b6001600160a01b03166000818152600b60205260408120805460ff19166001908117909155600c8054808301825592527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c790910180546001600160a01b0319169092179091558055565b6114c36117de565b6000546001600160a01b03908116911614611513576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b6001600160a01b0381166115585760405162461bcd60e51b81526004018080602001828103825260268152602001806123d16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60135481565b6115c16117de565b6000546001600160a01b03908116911614611611576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b60026001541415611657576040805162461bcd60e51b815260206004820152601f60248201526000805160206123b1833981519152604482015290519081900360640190fd5b60026001556001600160a01b0381166000908152600b602052604090205460ff166116c9576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600c548110156117c157816001600160a01b0316600c82815481106116ed57fe5b6000918252602090912001546001600160a01b031614156117b957600c8054600019810190811061171a57fe5b600091825260209091200154600c80546001600160a01b03909216918390811061174057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600a82526040808220829055600b90925220805460ff19169055600c80548061179257fe5b600082815260209020810160001990810180546001600160a01b03191690550190556117c1565b6001016116cc565b505060018055565b6007546001600160a01b031681565b60145481565b3390565b6001600160a01b0383166118275760405162461bcd60e51b815260040180806020018281038252602481526020018061250a6024913960400191505060405180910390fd5b6001600160a01b03821661186c5760405162461bcd60e51b81526004018080602001828103825260228152602001806123f76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60035460ff1615611966577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148061193557506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d145b8061195c57506001600160a01b038216735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f145b1561196657600080fd5b600f5460009061198790839060ff811690610100900463ffffffff16610b76565b90508015611b24576001600160a01b0384166000908152600b602052604090205460ff1680156119d057506001600160a01b0383166000908152600b602052604090205460ff16155b156119f2576008546119ed9085906001600160a01b031683611ecb565b611b24565b6001600160a01b0384166000908152600b602052604090205460ff16158015611a3357506001600160a01b0383166000908152600b602052604090205460ff165b15611a50576008546119ed9085906001600160a01b031683611fe2565b6001600160a01b0384166000908152600b602052604090205460ff16158015611a9257506001600160a01b0383166000908152600b602052604090205460ff16155b15611aaf576008546119ed9085906001600160a01b031683612088565b6001600160a01b0384166000908152600b602052604090205460ff168015611aef57506001600160a01b0383166000908152600b602052604090205460ff165b15611b0c576008546119ed9085906001600160a01b0316836120c9565b600854611b249085906001600160a01b031683612088565b6000611b308383611e66565b6001600160a01b0386166000908152600b602052604090205490915060ff168015611b7457506001600160a01b0384166000908152600b602052604090205460ff16155b15611b8957611b84858583611ecb565b611c87565b6001600160a01b0385166000908152600b602052604090205460ff16158015611bca57506001600160a01b0384166000908152600b602052604090205460ff165b15611bda57611b84858583611fe2565b6001600160a01b0385166000908152600b602052604090205460ff16158015611c1c57506001600160a01b0384166000908152600b602052604090205460ff16155b15611c2c57611b84858583612088565b6001600160a01b0385166000908152600b602052604090205460ff168015611c6c57506001600160a01b0384166000908152600b602052604090205460ff165b15611c7c57611b848585836120c9565b611c87858583612088565b5050505050565b60008184841115611d1d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ce2578181015183820152602001611cca565b50505050905090810190601f168015611d0f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611140576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000611d9388612139565b915091506000611da1611ea8565b90506000806000611db38c868661216c565b919e909d50909b509599509397509395505050505050565b600082611dda575060006108c0565b82820282848281611de757fe5b04146111405760405162461bcd60e51b81526004018080602001828103825260218152602001806124756021913960400191505060405180910390fd5b600061114083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121a8565b600061114083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c8e565b6000806000611eb561220d565b9092509050611ec48282611e24565b9250505090565b6000806000806000611edc86611d7f565b6001600160a01b038d166000908152600a602052604090205494995092975090955093509150611f0c9087611e66565b6001600160a01b0389166000908152600a6020908152604080832093909355600990522054611f3b9086611e66565b6001600160a01b03808a166000908152600960205260408082209390935590891681522054611f6a9085611d25565b6001600160a01b038816600090815260096020526040902055611f8d838261238c565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000611ff386611d7f565b6001600160a01b038d16600090815260096020526040902054949950929750909550935091506120239086611e66565b6001600160a01b03808a16600090815260096020908152604080832094909455918a168152600a90915220546120599083611d25565b6001600160a01b0388166000908152600a6020908152604080832093909355600990522054611f6a9085611d25565b600080600080600061209986611d7f565b6001600160a01b038d1660009081526009602052604090205494995092975090955093509150611f3b9086611e66565b60008060008060006120da86611d7f565b6001600160a01b038d166000908152600a60205260409020549499509297509095509350915061210a9087611e66565b6001600160a01b0389166000908152600a60209081526040808320939093556009905220546120239086611e66565b600080600061215360105485611e2490919063ffffffff16565b905060006121618583611e66565b935090915050915091565b600080808061217b8786611dcb565b905060006121898787611dcb565b905060006121978383611e66565b929992985090965090945050505050565b600081836121f75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ce2578181015183820152602001611cca565b50600083858161220357fe5b0495945050505050565b600d546000908190683635c9adc5dea00000825b600c5481101561234c578260096000600c848154811061223d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806122a2575081600a6000600c848154811061227b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122c057600d54683635c9adc5dea0000094509450505050612388565b61230060096000600c84815481106122d457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e66565b9250612342600a6000600c848154811061231657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e66565b9150600101612221565b50600d5461236390683635c9adc5dea00000611e24565b82101561238257600d54683635c9adc5dea00000935093505050612388565b90925090505b9091565b600d546123999083611e66565b600d55600e546123a99082611d25565b600e55505056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73546865205461782052657475726e656420746f20486f6c64657273206e6f74206c657373207468616e20302e3125536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572546865205461782052657475726e656420746f20486f6c64657273206e6f74206d6f7265207468616e20312545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208bff964ca01f570baa403c3644117731f80f9445bcc5b19516489f68869c118b64736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dcf33161e19dc15cf66253d57db187eaf6cfbba8
Deployed Bytecode
0x6080604052600436106102085760003560e01c80638da5cb5b11610118578063cc0f1786116100a0578063f2fde38b1161006f578063f2fde38b1461076d578063f51d4df5146107a0578063f84354f1146107b5578063fdea8e0b146107e8578063ff7c4790146107fd57610212565b8063cc0f1786146106b1578063dd62ed3e146106c6578063eaa93e7814610701578063f2cc0c181461073a57610212565b8063a001ecdd116100e7578063a001ecdd146105d2578063a457c2d714610600578063a9059cbb14610639578063bc660b2f14610672578063c44b75b01461068757610212565b80638da5cb5b1461056957806390ca796b1461057e57806391fe5a64146105a857806395d89b41146105bd57610212565b8063395093511161019b578063647af8e61161016a578063647af8e6146104b4578063689dc62d146104c957806370a082311461050c578063715018a61461053f5780637ede036d1461055457610212565b806339509351146103f557806349bd5a5e1461042e5780634a45b7d91461044357806354bf93591461047557610212565b806323b872dd116101d757806323b872dd1461034657806328d2bc91146103895780632993e8e31461039e578063313ce567146103ca57610212565b806306fdde0314610217578063095ea7b3146102a15780631694505e146102ee57806318160ddd1461031f57610212565b3661021257600080fd5b600080fd5b34801561022357600080fd5b5061022c610812565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026657818101518382015260200161024e565b50505050905090810190601f1680156102935780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ad57600080fd5b506102da600480360360408110156102c457600080fd5b506001600160a01b0381351690602001356108a8565b604080519115158252519081900360200190f35b3480156102fa57600080fd5b506103036108c6565b604080516001600160a01b039092168252519081900360200190f35b34801561032b57600080fd5b506103346108de565b60408051918252519081900360200190f35b34801561035257600080fd5b506102da6004803603606081101561036957600080fd5b506001600160a01b038135811691602081013590911690604001356108eb565b34801561039557600080fd5b50610303610972565b3480156103aa57600080fd5b506103c8600480360360208110156103c157600080fd5b5035610986565b005b3480156103d657600080fd5b506103df610a64565b6040805160ff9092168252519081900360200190f35b34801561040157600080fd5b506102da6004803603604081101561041857600080fd5b506001600160a01b038135169060200135610a6d565b34801561043a57600080fd5b50610303610abb565b34801561044f57600080fd5b506103346004803603604081101561046657600080fd5b50803590602001351515610adf565b34801561048157600080fd5b506103346004803603606081101561049857600080fd5b50803590602081013560ff16906040013563ffffffff16610b76565b3480156104c057600080fd5b506103c8610ba6565b3480156104d557600080fd5b506103c8600480360360608110156104ec57600080fd5b506001600160a01b03813581169160208101359091169060400135610c4a565b34801561051857600080fd5b506103346004803603602081101561052f57600080fd5b50356001600160a01b0316610deb565b34801561054b57600080fd5b506103c8610e55565b34801561056057600080fd5b50610334610ef7565b34801561057557600080fd5b50610303610efd565b34801561058a57600080fd5b506103c8600480360360208110156105a157600080fd5b5035610f0c565b3480156105b457600080fd5b50610334610fe4565b3480156105c957600080fd5b5061022c610fea565b3480156105de57600080fd5b506105e761104b565b6040805163ffffffff9092168252519081900360200190f35b34801561060c57600080fd5b506102da6004803603604081101561062357600080fd5b506001600160a01b03813516906020013561105c565b34801561064557600080fd5b506102da6004803603604081101561065c57600080fd5b506001600160a01b0381351690602001356110c4565b34801561067e57600080fd5b506103036110d8565b34801561069357600080fd5b50610334600480360360208110156106aa57600080fd5b50356110e7565b3480156106bd57600080fd5b506103df611147565b3480156106d257600080fd5b50610334600480360360408110156106e957600080fd5b506001600160a01b0381358116916020013516611150565b34801561070d57600080fd5b506103c86004803603604081101561072457600080fd5b50803560ff16906020013563ffffffff1661117b565b34801561074657600080fd5b506103c86004803603602081101561075d57600080fd5b50356001600160a01b03166112e6565b34801561077957600080fd5b506103c86004803603602081101561079057600080fd5b50356001600160a01b03166114bb565b3480156107ac57600080fd5b506103346115b3565b3480156107c157600080fd5b506103c8600480360360208110156107d857600080fd5b50356001600160a01b03166115b9565b3480156107f457600080fd5b506103036117c9565b34801561080957600080fd5b506103346117d8565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089e5780601f106108735761010080835404028352916020019161089e565b820191906000526020600020905b81548152906001019060200180831161088157829003601f168201915b5050505050905090565b60006108bc6108b56117de565b84846117e2565b5060015b92915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b683635c9adc5dea0000090565b60006108f88484846118ce565b610968846109046117de565b61096385604051806060016040528060288152602001612496602891396001600160a01b038a166000908152600260205260408120906109426117de565b6001600160a01b031681526020810191909152604001600020549190611c8e565b6117e2565b5060019392505050565b60065461010090046001600160a01b031681565b61098e6117de565b6000546001600160a01b039081169116146109de576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b6064811015610a1e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806124de602c913960400191505060405180910390fd5b6103e8811115610a5f5760405162461bcd60e51b815260040180806020018281038252602e815260200180612447602e913960400191505060405180910390fd5b601055565b60065460ff1690565b60006108bc610a7a6117de565b846109638560026000610a8b6117de565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611d25565b7f000000000000000000000000ca6c7232ba2e5555daf911c5dce730254673223f81565b6000683635c9adc5dea00000831115610b3f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610b5d576000610b4f84611d7f565b509294506108c09350505050565b6000610b6884611d7f565b509194506108c09350505050565b6000610b9e600260ff851601600a0a610b988663ffffffff80871690611dcb16565b90611e24565b949350505050565b60026001541415610bec576040805162461bcd60e51b815260206004820152601f60248201526000805160206123b1833981519152604482015290519081900360640190fd5b60026001556007546001600160a01b03163314610c3a5760405162461bcd60e51b815260040180806020018281038252602781526020018061255a6027913960400191505060405180910390fd5b6003805460ff1916905560018055565b610c526117de565b6000546001600160a01b03908116911614610ca2576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b60026001541415610ce8576040805162461bcd60e51b815260206004820152601f60248201526000805160206123b1833981519152604482015290519081900360640190fd5b60026001556001600160a01b038216610d48576040805162461bcd60e51b815260206004820152601e60248201527f4552433230207472616e7366657220746f207a65726f20616464726573730000604482015290519081900360640190fd5b6013548390610d579083611e66565b6013556006546040805163a9059cbb60e01b81526101009092046001600160a01b0390811660048401526024830185905290519083169163a9059cbb9160448083019260209291908290030181600087803b158015610db557600080fd5b505af1158015610dc9573d6000803e3d6000fd5b505050506040513d6020811015610ddf57600080fd5b50506001805550505050565b6001600160a01b0381166000908152600b602052604081205460ff1615610e2b57506001600160a01b0381166000908152600a6020526040902054610e50565b6001600160a01b038216600090815260096020526040902054610e4d906110e7565b90505b919050565b610e5d6117de565b6000546001600160a01b03908116911614610ead576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60115490565b6000546001600160a01b031690565b6000610f166117de565b6001600160a01b0381166000908152600b602052604090205490915060ff1615610f715760405162461bcd60e51b815260040180806020018281038252602c81526020018061252e602c913960400191505060405180910390fd5b6000610f7c83611d7f565b505050506001600160a01b038316600090815260096020526040902054909150610fa69082611e66565b6001600160a01b038316600090815260096020526040902055600d54610fcc9082611e66565b600d55600e54610fdc9084611d25565b600e55505050565b60125481565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089e5780601f106108735761010080835404028352916020019161089e565b600f54610100900463ffffffff1681565b60006108bc6110696117de565b846109638560405180606001604052806025815260200161258160259139600260006110936117de565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c8e565b60006108bc6110d16117de565b84846118ce565b6008546001600160a01b031681565b6000600d5482111561112a5760405162461bcd60e51b815260040180806020018281038252602e815260200180612419602e913960400191505060405180910390fd5b6000611134611ea8565b90506111408382611e24565b9392505050565b600f5460ff1681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6111836117de565b6000546001600160a01b039081169116146111d3576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b60026001541415611219576040805162461bcd60e51b815260206004820152601f60248201526000805160206123b1833981519152604482015290519081900360640190fd5b6002600190815563ffffffff8216111561127a576040805162461bcd60e51b815260206004820152601d60248201527f546865206665652063616e2774206265206d6f7265207468616e203125000000604482015290519081900360640190fd5b600f805463ffffffff8316610100810264ffffffff001960ff871660ff199094168417161790925560408051918252602082019290925281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a1505060018055565b6112ee6117de565b6000546001600160a01b0390811691161461133e576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b60026001541415611384576040805162461bcd60e51b815260206004820152601f60248201526000805160206123b1833981519152604482015290519081900360640190fd5b60026001556001600160a01b0381166000908152600b602052604090205460ff16156113f7576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205415611451576001600160a01b038116600090815260096020526040902054611437906110e7565b6001600160a01b0382166000908152600a60205260409020555b6001600160a01b03166000818152600b60205260408120805460ff19166001908117909155600c8054808301825592527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c790910180546001600160a01b0319169092179091558055565b6114c36117de565b6000546001600160a01b03908116911614611513576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b6001600160a01b0381166115585760405162461bcd60e51b81526004018080602001828103825260268152602001806123d16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60135481565b6115c16117de565b6000546001600160a01b03908116911614611611576040805162461bcd60e51b815260206004820181905260248201526000805160206124be833981519152604482015290519081900360640190fd5b60026001541415611657576040805162461bcd60e51b815260206004820152601f60248201526000805160206123b1833981519152604482015290519081900360640190fd5b60026001556001600160a01b0381166000908152600b602052604090205460ff166116c9576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600c548110156117c157816001600160a01b0316600c82815481106116ed57fe5b6000918252602090912001546001600160a01b031614156117b957600c8054600019810190811061171a57fe5b600091825260209091200154600c80546001600160a01b03909216918390811061174057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600a82526040808220829055600b90925220805460ff19169055600c80548061179257fe5b600082815260209020810160001990810180546001600160a01b03191690550190556117c1565b6001016116cc565b505060018055565b6007546001600160a01b031681565b60145481565b3390565b6001600160a01b0383166118275760405162461bcd60e51b815260040180806020018281038252602481526020018061250a6024913960400191505060405180910390fd5b6001600160a01b03821661186c5760405162461bcd60e51b81526004018080602001828103825260228152602001806123f76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60035460ff1615611966577f000000000000000000000000ca6c7232ba2e5555daf911c5dce730254673223f6001600160a01b0316826001600160a01b0316148061193557506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d145b8061195c57506001600160a01b038216735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f145b1561196657600080fd5b600f5460009061198790839060ff811690610100900463ffffffff16610b76565b90508015611b24576001600160a01b0384166000908152600b602052604090205460ff1680156119d057506001600160a01b0383166000908152600b602052604090205460ff16155b156119f2576008546119ed9085906001600160a01b031683611ecb565b611b24565b6001600160a01b0384166000908152600b602052604090205460ff16158015611a3357506001600160a01b0383166000908152600b602052604090205460ff165b15611a50576008546119ed9085906001600160a01b031683611fe2565b6001600160a01b0384166000908152600b602052604090205460ff16158015611a9257506001600160a01b0383166000908152600b602052604090205460ff16155b15611aaf576008546119ed9085906001600160a01b031683612088565b6001600160a01b0384166000908152600b602052604090205460ff168015611aef57506001600160a01b0383166000908152600b602052604090205460ff165b15611b0c576008546119ed9085906001600160a01b0316836120c9565b600854611b249085906001600160a01b031683612088565b6000611b308383611e66565b6001600160a01b0386166000908152600b602052604090205490915060ff168015611b7457506001600160a01b0384166000908152600b602052604090205460ff16155b15611b8957611b84858583611ecb565b611c87565b6001600160a01b0385166000908152600b602052604090205460ff16158015611bca57506001600160a01b0384166000908152600b602052604090205460ff165b15611bda57611b84858583611fe2565b6001600160a01b0385166000908152600b602052604090205460ff16158015611c1c57506001600160a01b0384166000908152600b602052604090205460ff16155b15611c2c57611b84858583612088565b6001600160a01b0385166000908152600b602052604090205460ff168015611c6c57506001600160a01b0384166000908152600b602052604090205460ff165b15611c7c57611b848585836120c9565b611c87858583612088565b5050505050565b60008184841115611d1d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ce2578181015183820152602001611cca565b50505050905090810190601f168015611d0f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611140576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000611d9388612139565b915091506000611da1611ea8565b90506000806000611db38c868661216c565b919e909d50909b509599509397509395505050505050565b600082611dda575060006108c0565b82820282848281611de757fe5b04146111405760405162461bcd60e51b81526004018080602001828103825260218152602001806124756021913960400191505060405180910390fd5b600061114083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121a8565b600061114083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c8e565b6000806000611eb561220d565b9092509050611ec48282611e24565b9250505090565b6000806000806000611edc86611d7f565b6001600160a01b038d166000908152600a602052604090205494995092975090955093509150611f0c9087611e66565b6001600160a01b0389166000908152600a6020908152604080832093909355600990522054611f3b9086611e66565b6001600160a01b03808a166000908152600960205260408082209390935590891681522054611f6a9085611d25565b6001600160a01b038816600090815260096020526040902055611f8d838261238c565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000611ff386611d7f565b6001600160a01b038d16600090815260096020526040902054949950929750909550935091506120239086611e66565b6001600160a01b03808a16600090815260096020908152604080832094909455918a168152600a90915220546120599083611d25565b6001600160a01b0388166000908152600a6020908152604080832093909355600990522054611f6a9085611d25565b600080600080600061209986611d7f565b6001600160a01b038d1660009081526009602052604090205494995092975090955093509150611f3b9086611e66565b60008060008060006120da86611d7f565b6001600160a01b038d166000908152600a60205260409020549499509297509095509350915061210a9087611e66565b6001600160a01b0389166000908152600a60209081526040808320939093556009905220546120239086611e66565b600080600061215360105485611e2490919063ffffffff16565b905060006121618583611e66565b935090915050915091565b600080808061217b8786611dcb565b905060006121898787611dcb565b905060006121978383611e66565b929992985090965090945050505050565b600081836121f75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ce2578181015183820152602001611cca565b50600083858161220357fe5b0495945050505050565b600d546000908190683635c9adc5dea00000825b600c5481101561234c578260096000600c848154811061223d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806122a2575081600a6000600c848154811061227b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122c057600d54683635c9adc5dea0000094509450505050612388565b61230060096000600c84815481106122d457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e66565b9250612342600a6000600c848154811061231657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e66565b9150600101612221565b50600d5461236390683635c9adc5dea00000611e24565b82101561238257600d54683635c9adc5dea00000935093505050612388565b90925090505b9091565b600d546123999083611e66565b600d55600e546123a99082611d25565b600e55505056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73546865205461782052657475726e656420746f20486f6c64657273206e6f74206c657373207468616e20302e3125536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572546865205461782052657475726e656420746f20486f6c64657273206e6f74206d6f7265207468616e20312545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208bff964ca01f570baa403c3644117731f80f9445bcc5b19516489f68869c118b64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dcf33161e19dc15cf66253d57db187eaf6cfbba8
-----Decoded View---------------
Arg [0] : _feeDecimals (uint8): 0
Arg [1] : _feePercentage (uint32): 1
Arg [2] : _presale (address): 0xdCF33161e19dC15Cf66253d57dB187eAF6CFbBA8
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 000000000000000000000000dcf33161e19dc15cf66253d57db187eaf6cfbba8
Deployed Bytecode Sourcemap
27172:19576:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39791:8;;;27172:19576;;;;29224:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31405:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31405:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;27498:115;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27498:115:0;;;;;;;;;;;;;;30299:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;32048:321;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32048:321:0;;;;;;;;;;;;;;;;;:::i;27665:69::-;;;;;;;;;;;;;:::i;43232:256::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43232:256:0;;:::i;:::-;;30151:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32778:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32778:218:0;;;;;;;;:::i;27620:38::-;;;;;;;;;;;;;:::i;45196:434::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45196:434:0;;;;;;;;;:::i;39246:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39246:269:0;;;;;;;;;;;;;;;;:::i;35691:182::-;;;;;;;;;;;;;:::i;40211:345::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40211:345:0;;;;;;;;;;;;;;;;;:::i;30457:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30457:199:0;-1:-1:-1;;;;;30457:199:0;;:::i;2896:148::-;;;;;;;;;;;;;:::i;37790:96::-;;;;;;;;;;;;;:::i;2254:79::-;;;;;;;;;;;;;:::i;44811:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44811:377:0;;:::i;28417:33::-;;;;;;;;;;;;;:::i;29426:87::-;;;;;;;;;;;;;:::i;28288:27::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33499:269;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33499:269:0;;;;;;;;:::i;30869:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30869:175:0;;;;;;;;:::i;27770:67::-;;;;;;;;;;;;;:::i;45638:257::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45638:257:0;;:::i;28257:24::-;;;;;;;;;;;;;:::i;31107:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31107:151:0;;;;;;;;;;:::i;39865:338::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39865:338:0;;;;;;;;;;;:::i;45903:343::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45903:343:0;-1:-1:-1;;;;;45903:343:0;;:::i;3199:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3199:244:0;-1:-1:-1;;;;;3199:244:0;;:::i;28457:35::-;;;;;;;;;;;;;:::i;46254:489::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46254:489:0;-1:-1:-1;;;;;46254:489:0;;:::i;27741:22::-;;;;;;;;;;;;;:::i;28499:33::-;;;;;;;;;;;;;:::i;29224:83::-;29294:5;29287:12;;;;;;;;-1:-1:-1;;29287:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29261:13;;29287:12;;29294:5;;29287:12;;29294:5;29287:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29224:83;:::o;31405:169::-;31488:4;31505:39;31514:12;:10;:12::i;:::-;31528:7;31537:6;31505:8;:39::i;:::-;-1:-1:-1;31562:4:0;31405:169;;;;;:::o;27498:115::-;27570:42;27498:115;:::o;30299:95::-;28141:18;30299:95;:::o;32048:321::-;32154:4;32171:36;32181:6;32189:9;32200:6;32171:9;:36::i;:::-;32218:121;32227:6;32235:12;:10;:12::i;:::-;32249:89;32287:6;32249:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32249:19:0;;;;;;:11;:19;;;;;;32269:12;:10;:12::i;:::-;-1:-1:-1;;;;;32249:33:0;;;;;;;;;;;;-1:-1:-1;32249:33:0;;;:89;:37;:89::i;:::-;32218:8;:121::i;:::-;-1:-1:-1;32357:4:0;32048:321;;;;;:::o;27665:69::-;;;;;;-1:-1:-1;;;;;27665:69:0;;:::o;43232:256::-;2476:12;:10;:12::i;:::-;2466:6;;-1:-1:-1;;;;;2466:6:0;;;:22;;;2458:67;;;;;-1:-1:-1;;;2458:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2458:67:0;;;;;;;;;;;;;;;43322:3:::1;43317:1;:8;;43309:65;;;;-1:-1:-1::0;;;43309:65:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43398:4;43393:1;:9;;43385:68;;;;-1:-1:-1::0;;;43385:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43464:12;:16:::0;43232:256::o;30151:83::-;30217:9;;;;30151:83;:::o;32778:218::-;32866:4;32883:83;32892:12;:10;:12::i;:::-;32906:7;32915:50;32954:10;32915:11;:25;32927:12;:10;:12::i;:::-;-1:-1:-1;;;;;32915:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32915:25:0;;;:34;;;;;;;;;;;:38;:50::i;27620:38::-;;;:::o;45196:434::-;45286:7;28141:18;45314:7;:18;;45306:62;;;;;-1:-1:-1;;;45306:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;45384:17;45379:244;;45419:15;45442:19;45453:7;45442:10;:19::i;:::-;-1:-1:-1;45418:43:0;;-1:-1:-1;45476:14:0;;-1:-1:-1;;;;45476:14:0;45379:244;45525:23;45555:19;45566:7;45555:10;:19::i;:::-;-1:-1:-1;45523:51:0;;-1:-1:-1;45589:22:0;;-1:-1:-1;;;;45589:22:0;39246:269;39383:14;39419:88;39494:1;39470:21;;;:25;39465:2;:31;39419:27;:7;:27;;;;;:11;:27;:::i;:::-;:31;;:88::i;:::-;39410:97;39246:269;-1:-1:-1;;;;39246:269:0:o;35691:182::-;26215:1;26821:7;;:19;;26813:63;;;;;-1:-1:-1;;;26813:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26813:63:0;;;;;;;;;;;;;;;26215:1;26954:7;:18;35781:7:::1;::::0;-1:-1:-1;;;;;35781:7:0::1;35767:10;:21;35758:74;;;;-1:-1:-1::0;;;35758:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35843:14;:22:::0;;-1:-1:-1;;35843:22:0::1;::::0;;;27133;;35691:182::o;40211:345::-;2476:12;:10;:12::i;:::-;2466:6;;-1:-1:-1;;;;;2466:6:0;;;:22;;;2458:67;;;;;-1:-1:-1;;;2458:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2458:67:0;;;;;;;;;;;;;;;26215:1:::1;26821:7;;:19;;26813:63;;;::::0;;-1:-1:-1;;;26813:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;26813:63:0;;;;;;;;;;;;;::::1;;26215:1;26954:7;:18:::0;-1:-1:-1;;;;;40323:17:0;::::2;40315:59;;;::::0;;-1:-1:-1;;;40315:59:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;40468:20;::::0;40427:6;;40468:33:::2;::::0;40493:7;40468:24:::2;:33::i;:::-;40445:20;:56:::0;40529:9:::2;::::0;40514:34:::2;::::0;;-1:-1:-1;;;40514:34:0;;40529:9:::2;::::0;;::::2;-1:-1:-1::0;;;;;40529:9:0;;::::2;40514:34;::::0;::::2;::::0;;;;;;;;;:14;;::::2;::::0;::::2;::::0;:34;;;;;::::2;::::0;;;;;;;;-1:-1:-1;40514:14:0;:34;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;;26171:1:0::1;27133:22:::0;;-1:-1:-1;;;;40211:345:0:o;30457:199::-;-1:-1:-1;;;;;30548:20:0;;30523:7;30548:20;;;:11;:20;;;;;;;;30544:49;;;-1:-1:-1;;;;;;30577:16:0;;;;;;:7;:16;;;;;;30570:23;;30544:49;-1:-1:-1;;;;;30631:16:0;;;;;;:7;:16;;;;;;30611:37;;:19;:37::i;:::-;30604:44;;30457:199;;;;:::o;2896:148::-;2476:12;:10;:12::i;:::-;2466:6;;-1:-1:-1;;;;;2466:6:0;;;:22;;;2458:67;;;;;-1:-1:-1;;;2458:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2458:67:0;;;;;;;;;;;;;;;3003:1:::1;2987:6:::0;;2966:40:::1;::::0;-1:-1:-1;;;;;2987:6:0;;::::1;::::0;2966:40:::1;::::0;3003:1;;2966:40:::1;3034:1;3017:19:::0;;-1:-1:-1;;;;;;3017:19:0::1;::::0;;2896:148::o;37790:96::-;37864:14;;37790:96;:::o;2254:79::-;2292:7;2319:6;-1:-1:-1;;;;;2319:6:0;2254:79;:::o;44811:377::-;44864:14;44881:12;:10;:12::i;:::-;-1:-1:-1;;;;;44913:19:0;;;;;;:11;:19;;;;;;44864:29;;-1:-1:-1;44913:19:0;;44912:20;44904:77;;;;-1:-1:-1;;;44904:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44993:15;45016:19;45027:7;45016:10;:19::i;:::-;-1:-1:-1;;;;;;;;;45064:15:0;;;;;;:7;:15;;;;;;44992:43;;-1:-1:-1;45064:28:0;;44992:43;45064:19;:28::i;:::-;-1:-1:-1;;;;;45046:15:0;;;;;;:7;:15;;;;;:46;45113:7;;:20;;45125:7;45113:11;:20::i;:::-;45103:7;:30;45157:10;;:23;;45172:7;45157:14;:23::i;:::-;45144:10;:36;-1:-1:-1;;;44811:377:0:o;28417:33::-;;;;:::o;29426:87::-;29498:7;29491:14;;;;;;;;-1:-1:-1;;29491:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29465:13;;29491:14;;29498:7;;29491:14;;29498:7;29491:14;;;;;;;;;;;;;;;;;;;;;;;;28288:27;;;;;;;;;:::o;33499:269::-;33592:4;33609:129;33618:12;:10;:12::i;:::-;33632:7;33641:96;33680:15;33641:96;;;;;;;;;;;;;;;;;:11;:25;33653:12;:10;:12::i;:::-;-1:-1:-1;;;;;33641:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;33641:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;30869:175::-;30955:4;30972:42;30982:12;:10;:12::i;:::-;30996:9;31007:6;30972:9;:42::i;27770:67::-;;;-1:-1:-1;;;;;27770:67:0;;:::o;45638:257::-;45704:7;45743;;45732;:18;;45724:77;;;;-1:-1:-1;;;45724:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45812:19;45835:10;:8;:10::i;:::-;45812:33;-1:-1:-1;45863:24:0;:7;45812:33;45863:11;:24::i;:::-;45856:31;45638:257;-1:-1:-1;;;45638:257:0:o;28257:24::-;;;;;;:::o;31107:151::-;-1:-1:-1;;;;;31223:18:0;;;31196:7;31223:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31107:151::o;39865:338::-;2476:12;:10;:12::i;:::-;2466:6;;-1:-1:-1;;;;;2466:6:0;;;:22;;;2458:67;;;;;-1:-1:-1;;;2458:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2458:67:0;;;;;;;;;;;;;;;26215:1:::1;26821:7;;:19;;26813:63;;;::::0;;-1:-1:-1;;;26813:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;26813:63:0;;;;;;;;;;;;;::::1;;26215:1;26954:7;:18:::0;;;40008:19:::2;::::0;::::2;;;40000:61;;;::::0;;-1:-1:-1;;;40000:61:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;40072:11;:26:::0;;40109:30:::2;::::0;::::2;40072:26;40109:30:::0;::::2;-1:-1:-1::0;;40072:26:0::2;::::0;::::2;-1:-1:-1::0;;40072:26:0;;::::2;::::0;::::2;40109:30;;::::0;;;40155:40:::2;::::0;;;;;::::2;::::0;::::2;::::0;;;;;;::::2;::::0;;;;;;;;;::::2;-1:-1:-1::0;;26171:1:0::1;27133:22:::0;;39865:338::o;45903:343::-;2476:12;:10;:12::i;:::-;2466:6;;-1:-1:-1;;;;;2466:6:0;;;:22;;;2458:67;;;;;-1:-1:-1;;;2458:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2458:67:0;;;;;;;;;;;;;;;26215:1:::1;26821:7;;:19;;26813:63;;;::::0;;-1:-1:-1;;;26813:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;26813:63:0;;;;;;;;;;;;;::::1;;26215:1;26954:7;:18:::0;-1:-1:-1;;;;;45996:20:0;::::2;;::::0;;;:11:::2;:20;::::0;;;;;::::2;;45995:21;45987:61;;;::::0;;-1:-1:-1;;;45987:61:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;46062:16:0;::::2;46081:1;46062:16:::0;;;:7:::2;:16;::::0;;;;;:20;46059:108:::2;;-1:-1:-1::0;;;;;46138:16:0;::::2;;::::0;;;:7:::2;:16;::::0;;;;;46118:37:::2;::::0;:19:::2;:37::i;:::-;-1:-1:-1::0;;;;;46099:16:0;::::2;;::::0;;;:7:::2;:16;::::0;;;;:56;46059:108:::2;-1:-1:-1::0;;;;;46177:20:0::2;;::::0;;;:11:::2;:20;::::0;;;;:27;;-1:-1:-1;;46177:27:0::2;46200:4;46177:27:::0;;::::2;::::0;;;46215:9:::2;:23:::0;;;;::::2;::::0;;;;;;;::::2;::::0;;-1:-1:-1;;;;;;46215:23:0::2;::::0;;::::2;::::0;;;27133:22;;45903:343::o;3199:244::-;2476:12;:10;:12::i;:::-;2466:6;;-1:-1:-1;;;;;2466:6:0;;;:22;;;2458:67;;;;;-1:-1:-1;;;2458:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2458:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3288:22:0;::::1;3280:73;;;;-1:-1:-1::0;;;3280:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3390:6;::::0;;3369:38:::1;::::0;-1:-1:-1;;;;;3369:38:0;;::::1;::::0;3390:6;::::1;::::0;3369:38:::1;::::0;::::1;3418:6;:17:::0;;-1:-1:-1;;;;;;3418:17:0::1;-1:-1:-1::0;;;;;3418:17:0;;;::::1;::::0;;;::::1;::::0;;3199:244::o;28457:35::-;;;;:::o;46254:489::-;2476:12;:10;:12::i;:::-;2466:6;;-1:-1:-1;;;;;2466:6:0;;;:22;;;2458:67;;;;;-1:-1:-1;;;2458:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2458:67:0;;;;;;;;;;;;;;;26215:1:::1;26821:7;;:19;;26813:63;;;::::0;;-1:-1:-1;;;26813:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;26813:63:0;;;;;;;;;;;;;::::1;;26215:1;26954:7;:18:::0;-1:-1:-1;;;;;46346:20:0;::::2;;::::0;;;:11:::2;:20;::::0;;;;;::::2;;46338:60;;;::::0;;-1:-1:-1;;;46338:60:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;46414:9;46409:327;46433:9;:16:::0;46429:20;::::2;46409:327;;;46491:7;-1:-1:-1::0;;;;;46475:23:0::2;:9;46485:1;46475:12;;;;;;;;;::::0;;;::::2;::::0;;;::::2;::::0;-1:-1:-1;;;;;46475:12:0::2;:23;46471:254;;;46534:9;46544:16:::0;;-1:-1:-1;;46544:20:0;;;46534:31;::::2;;;;;;::::0;;;::::2;::::0;;;::::2;::::0;46519:9:::2;:12:::0;;-1:-1:-1;;;;;46534:31:0;;::::2;::::0;46529:1;;46519:12;::::2;;;;;;::::0;;;::::2;::::0;;;;;;::::2;:46:::0;;-1:-1:-1;;;;;;46519:46:0::2;-1:-1:-1::0;;;;;46519:46:0;;::::2;;::::0;;46584:16;;::::2;::::0;;:7:::2;:16:::0;;;;;;:20;;;46623:11:::2;:20:::0;;;;:28;;-1:-1:-1;;46623:28:0::2;::::0;;46670:9:::2;:15:::0;;;::::2;;;;;::::0;;;::::2;::::0;;;;-1:-1:-1;;46670:15:0;;;;;-1:-1:-1;;;;;;46670:15:0::2;::::0;;;;;46704:5:::2;;46471:254;46451:3;;46409:327;;;-1:-1:-1::0;;26171:1:0::1;27133:22:::0;;46254:489::o;27741:22::-;;;-1:-1:-1;;;;;27741:22:0;;:::o;28499:33::-;;;;:::o;892:106::-;980:10;892:106;:::o;36315:346::-;-1:-1:-1;;;;;36417:19:0;;36409:68;;;;-1:-1:-1;;;36409:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36496:21:0;;36488:68;;;;-1:-1:-1;;;36488:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36569:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36621:32;;;;;;;;;;;;;;;;;36315:346;;;:::o;33772:1911::-;33893:14;;;;33889:234;;;33941:13;-1:-1:-1;;;;;33927:28:0;:2;-1:-1:-1;;;;;33927:28:0;;:62;;;-1:-1:-1;;;;;;33959:30:0;;27570:42;33959:30;33927:62;:123;;;-1:-1:-1;;;;;;33993:57:0;;34007:42;33993:57;33927:123;33923:192;;;34066:8;;;33923:192;34210:11;;34137:22;;34162:98;;34189:6;;34210:11;;;;;34236:13;;;;34162:12;:98::i;:::-;34137:123;-1:-1:-1;34275:18:0;;34271:624;;-1:-1:-1;;;;;34309:17:0;;;;;;:11;:17;;;;;;;;:37;;;;-1:-1:-1;;;;;;34331:15:0;;;;;;:11;:15;;;;;;;;34330:16;34309:37;34305:583;;;34392:7;;34364:52;;34386:4;;-1:-1:-1;;;;;34392:7:0;34401:14;34364:21;:52::i;:::-;34305:583;;;-1:-1:-1;;;;;34439:17:0;;;;;;:11;:17;;;;;;;;34438:18;:37;;;;-1:-1:-1;;;;;;34460:15:0;;;;;;:11;:15;;;;;;;;34438:37;34434:454;;;34519:7;;34493:50;;34513:4;;-1:-1:-1;;;;;34519:7:0;34528:14;34493:19;:50::i;34434:454::-;-1:-1:-1;;;;;34566:17:0;;;;;;:11;:17;;;;;;;;34565:18;:38;;;;-1:-1:-1;;;;;;34588:15:0;;;;;;:11;:15;;;;;;;;34587:16;34565:38;34561:327;;;34644:7;;34620:48;;34638:4;;-1:-1:-1;;;;;34644:7:0;34653:14;34620:17;:48::i;34561:327::-;-1:-1:-1;;;;;34690:17:0;;;;;;:11;:17;;;;;;;;:36;;;;-1:-1:-1;;;;;;34711:15:0;;;;;;:11;:15;;;;;;;;34690:36;34686:202;;;34771:7;;34743:52;;34765:4;;-1:-1:-1;;;;;34771:7:0;34780:14;34743:21;:52::i;34686:202::-;34852:7;;34828:48;;34846:4;;-1:-1:-1;;;;;34852:7:0;34861:14;34828:17;:48::i;:::-;35044:24;35071:26;:6;35082:14;35071:10;:26::i;:::-;-1:-1:-1;;;;;35112:17:0;;;;;;:11;:17;;;;;;35044:53;;-1:-1:-1;35112:17:0;;:37;;;;-1:-1:-1;;;;;;35134:15:0;;;;;;:11;:15;;;;;;;;35133:16;35112:37;35108:566;;;35166:49;35188:4;35194:2;35198:16;35166:21;:49::i;:::-;35108:566;;;-1:-1:-1;;;;;35238:17:0;;;;;;:11;:17;;;;;;;;35237:18;:37;;;;-1:-1:-1;;;;;;35259:15:0;;;;;;:11;:15;;;;;;;;35237:37;35233:441;;;35291:47;35311:4;35317:2;35321:16;35291:19;:47::i;35233:441::-;-1:-1:-1;;;;;35361:17:0;;;;;;:11;:17;;;;;;;;35360:18;:38;;;;-1:-1:-1;;;;;;35383:15:0;;;;;;:11;:15;;;;;;;;35382:16;35360:38;35356:318;;;35415:45;35433:4;35439:2;35443:16;35415:17;:45::i;35356:318::-;-1:-1:-1;;;;;35482:17:0;;;;;;:11;:17;;;;;;;;:36;;;;-1:-1:-1;;;;;;35503:15:0;;;;;;:11;:15;;;;;;;;35482:36;35478:196;;;35535:49;35557:4;35563:2;35567:16;35535:21;:49::i;35478:196::-;35617:45;35635:4;35641:2;35645:16;35617:17;:45::i;:::-;33772:1911;;;;;:::o;5195:192::-;5281:7;5317:12;5309:6;;;;5301:29;;;;-1:-1:-1;;;5301:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5353:5:0;;;5195:192::o;4292:181::-;4350:7;4382:5;;;4406:6;;;;4398:46;;;;;-1:-1:-1;;;4398:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;42812:412;42871:7;42880;42889;42898;42907;42928:23;42953:12;42969:21;42982:7;42969:12;:21::i;:::-;42927:63;;;;43001:19;43024:10;:8;:10::i;:::-;43001:33;;43046:15;43063:23;43088:12;43104:39;43116:7;43125:4;43131:11;43104;:39::i;:::-;43045:98;;;;-1:-1:-1;43045:98:0;;-1:-1:-1;43194:15:0;;-1:-1:-1;43211:4:0;;-1:-1:-1;42812:412:0;;-1:-1:-1;;;;;;42812:412:0:o;5646:471::-;5704:7;5949:6;5945:47;;-1:-1:-1;5979:1:0;5972:8;;5945:47;6016:5;;;6020:1;6016;:5;:1;6040:5;;;;;:10;6032:56;;;;-1:-1:-1;;;6032:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6593:132;6651:7;6678:39;6682:1;6685;6678:39;;;;;;;;;;;;;;;;;:3;:39::i;4756:136::-;4814:7;4841:43;4845:1;4848;4841:43;;;;;;;;;;;;;;;;;:3;:43::i;44079:163::-;44120:7;44141:15;44158;44177:19;:17;:19::i;:::-;44140:56;;-1:-1:-1;44140:56:0;-1:-1:-1;44214:20:0;44140:56;;44214:11;:20::i;:::-;44207:27;;;;44079:163;:::o;41549:509::-;41652:15;41669:23;41694:12;41708:23;41733:12;41749:19;41760:7;41749:10;:19::i;:::-;-1:-1:-1;;;;;41797:15:0;;;;;;:7;:15;;;;;;41651:117;;-1:-1:-1;41651:117:0;;-1:-1:-1;41651:117:0;;-1:-1:-1;41651:117:0;-1:-1:-1;41651:117:0;-1:-1:-1;41797:28:0;;41817:7;41797:19;:28::i;:::-;-1:-1:-1;;;;;41779:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41854:7;:15;;;;:28;;41874:7;41854:19;:28::i;:::-;-1:-1:-1;;;;;41836:15:0;;;;;;;:7;:15;;;;;;:46;;;;41914:18;;;;;;;:39;;41937:15;41914:22;:39::i;:::-;-1:-1:-1;;;;;41893:18:0;;;;;;:7;:18;;;;;:60;41964:26;41979:4;41985;41964:14;:26::i;:::-;42023:9;-1:-1:-1;;;;;42006:44:0;42015:6;-1:-1:-1;;;;;42006:44:0;;42034:15;42006:44;;;;;;;;;;;;;;;;;;41549:509;;;;;;;;:::o;41020:521::-;41121:15;41138:23;41163:12;41177:23;41202:12;41218:19;41229:7;41218:10;:19::i;:::-;-1:-1:-1;;;;;41266:15:0;;;;;;:7;:15;;;;;;41120:117;;-1:-1:-1;41120:117:0;;-1:-1:-1;41120:117:0;;-1:-1:-1;41120:117:0;-1:-1:-1;41120:117:0;-1:-1:-1;41266:28:0;;41120:117;41266:19;:28::i;:::-;-1:-1:-1;;;;;41248:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;41326:18;;;;;:7;:18;;;;;:39;;41349:15;41326:22;:39::i;:::-;-1:-1:-1;;;;;41305:18:0;;;;;;:7;:18;;;;;;;;:60;;;;41397:7;:18;;;;:39;;41420:15;41397:22;:39::i;40564:448::-;40663:15;40680:23;40705:12;40719:23;40744:12;40760:19;40771:7;40760:10;:19::i;:::-;-1:-1:-1;;;;;40808:15:0;;;;;;:7;:15;;;;;;40662:117;;-1:-1:-1;40662:117:0;;-1:-1:-1;40662:117:0;;-1:-1:-1;40662:117:0;-1:-1:-1;40662:117:0;-1:-1:-1;40808:28:0;;40662:117;40808:19;:28::i;42066:580::-;42169:15;42186:23;42211:12;42225:23;42250:12;42266:19;42277:7;42266:10;:19::i;:::-;-1:-1:-1;;;;;42314:15:0;;;;;;:7;:15;;;;;;42168:117;;-1:-1:-1;42168:117:0;;-1:-1:-1;42168:117:0;;-1:-1:-1;42168:117:0;-1:-1:-1;42168:117:0;-1:-1:-1;42314:28:0;;42334:7;42314:19;:28::i;:::-;-1:-1:-1;;;;;42296:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42371:7;:15;;;;:28;;42391:7;42371:19;:28::i;43496:233::-;43557:7;43566;43586:12;43601:25;43613:12;;43601:7;:11;;:25;;;;:::i;:::-;43586:40;-1:-1:-1;43637:23:0;43663:17;:7;43586:40;43663:11;:17::i;:::-;43637:43;-1:-1:-1;43716:4:0;;-1:-1:-1;;43496:233:0;;;:::o;43737:334::-;43832:7;;;;43888:24;:7;43900:11;43888;:24::i;:::-;43870:42;-1:-1:-1;43923:12:0;43938:21;:4;43947:11;43938:8;:21::i;:::-;43923:36;-1:-1:-1;43970:23:0;43996:17;:7;43923:36;43996:11;:17::i;:::-;44032:7;;;;-1:-1:-1;44058:4:0;;-1:-1:-1;43737:334:0;;-1:-1:-1;;;;;43737:334:0:o;7221:278::-;7307:7;7342:12;7335:5;7327:28;;;;-1:-1:-1;;;7327:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7366:9;7382:1;7378;:5;;;;;;;7221:278;-1:-1:-1;;;;;7221:278:0:o;44250:555::-;44347:7;;44300;;;;28141:18;44300:7;44401:289;44425:9;:16;44421:20;;44401:289;;;44491:7;44467;:21;44475:9;44485:1;44475:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44475:12:0;44467:21;;;;;;;;;;;;;:31;;:66;;;44526:7;44502;:21;44510:9;44520:1;44510:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44510:12:0;44502:21;;;;;;;;;;;;;:31;44467:66;44463:97;;;44543:7;;28141:18;44535:25;;;;;;;;;44463:97;44585:34;44597:7;:21;44605:9;44615:1;44605:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44605:12:0;44597:21;;;;;;;;;;;;;44585:7;;:11;:34::i;:::-;44575:44;;44644:34;44656:7;:21;44664:9;44674:1;44664:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44664:12:0;44656:21;;;;;;;;;;;;;44644:7;;:11;:34::i;:::-;44634:44;-1:-1:-1;44443:3:0;;44401:289;;;-1:-1:-1;44714:7:0;;:20;;28141:18;44714:11;:20::i;:::-;44704:7;:30;44700:61;;;44744:7;;28141:18;44736:25;;;;;;;;44700:61;44780:7;;-1:-1:-1;44789:7:0;-1:-1:-1;44250:555:0;;;:::o;42654:150::-;42735:7;;:17;;42747:4;42735:11;:17::i;:::-;42725:7;:27;42776:10;;:20;;42791:4;42776:14;:20::i;:::-;42763:10;:33;-1:-1:-1;;42654:150:0:o
Swarm Source
ipfs://8bff964ca01f570baa403c3644117731f80f9445bcc5b19516489f68869c118b
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.