PolkaDoge token contract has migrated to a new address.
ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 PDOGE
Holders
69 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
71,596,177,061.680130972 PDOGEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PolkaDoge
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-06 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.6.12; // Polkadoge $pdoge interface Token { function transferFrom(address, address, uint) external returns (bool); function transfer(address, uint) external returns (bool); } interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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 Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; 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; } function geUnlockTime() public view returns (uint256) { return _lockTime; } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract PolkaDoge is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcluded; address[] private _excluded; mapping(address => bool) public bannedUsers; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "PolkaDoge"; string private _symbol = "PDOGE"; uint8 private _decimals = 9; uint256 public _taxFee = 100; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 200; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; // Disable by default uint256 public _maxTxAmount = 10000000 * 10**3 * 10**9; uint256 private numTokensSellToAddToLiquidity = 12500000 * 10**3 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); event WalletBanStatusUpdated(address user, bool banned); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a Uniswappair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require( !_isExcluded[sender], "Excluded addresses cannot call this function" ); (uint256 rAmount, , , , , ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount, , , , , ) = _getValues(tAmount); return rAmount; } else { (, uint256 rTransferAmount, , , , ) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if (_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner { _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**4); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } // To recieve ETH from uniswapV2Router when swaping receive() external payable {} // This will allow to rescue BNB sent by mistake directly to the contract function rescueBNBFromContract() external onlyOwner { address payable _owner = _msgSender(); _owner.transfer(address(this).balance); } // Function to allow admin to claim *other* BEP20 tokens sent to this contract (by mistake) // Owner cannot transfer out PolkaDoge from this smart contract function transferAnyBEP20Tokens(address _tokenAddr, address _to, uint _amount) public onlyOwner { require(_tokenAddr != address(this), "Cannot transfer out PolkaDoge!"); Token(_tokenAddr).transfer(_to, _amount); } function setWalletBanStatus(address user, bool banned) external onlyOwner { if (banned) { require(1618531200 + 3 days > block.timestamp, "Owner cannot longer ban wallets"); bannedUsers[user] = true; } else { delete bannedUsers[user]; } emit WalletBanStatusUpdated(user, banned); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256, uint256 ) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return ( rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity ); } function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256 ) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply ) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div(10**4); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**4); } function removeAllFee() private { if (_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(bannedUsers[from] == false, "Sender is banned"); require(bannedUsers[to] == false, "Recipient is banned"); if (from != owner() && to != owner()) require( amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount." ); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } 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 owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if (!takeFee) restoreAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"banned","type":"bool"}],"name":"WalletBanStatusUpdated","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","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":"","type":"address"}],"name":"bannedUsers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueBNBFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"banned","type":"bool"}],"name":"setWalletBanStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddr","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferAnyBEP20Tokens","outputs":[],"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":"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
69d3c21bcecceda1000000600a5569085afffa6ff50bffffff19600b55610100604052600960c081905268506f6c6b61446f676560b81b60e09081526200004a91600d9190620003b0565b506040805180820190915260058082526450444f474560d81b60209092019182526200007991600e91620003b0565b50600f805460ff191660091790556064601081905560115560c860128190556013556014805461ff0019169055678ac7230489e8000060155567ad78ebc5ac620000601655348015620000cb57600080fd5b506000620000d86200039d565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600b5460036000620001336200039d565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001aa57600080fd5b505afa158015620001bf573d6000803e3d6000fd5b505050506040513d6020811015620001d657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200022757600080fd5b505afa1580156200023c573d6000803e3d6000fd5b505050506040513d60208110156200025357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002a657600080fd5b505af1158015620002bb573d6000803e3d6000fd5b505050506040513d6020811015620002d257600080fd5b50516001600160601b0319606091821b811660a0529082901b16608052600160066000620002ff620003a1565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003496200039d565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a3506200044c565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003f357805160ff191683800117855562000423565b8280016001018555821562000423579182015b828111156200042357825182559160200191906001019062000406565b506200043192915062000435565b5090565b5b8082111562000431576000815560010162000436565b60805160601c60a05160601c612d2362000494600039806110955280611ce0525080610a3e528061249c5280612554528061257b528061266152806126885250612d236000f3fe6080604052600436106102345760003560e01c80635342acb41161012e57806395d89b41116100ab578063c49b9a801161006f578063c49b9a801461082e578063d543dbeb1461085a578063dd62ed3e14610884578063ea2f0b37146108bf578063f2fde38b146108f25761023b565b806395d89b4114610757578063a457c2d71461076c578063a9059cbb146107a5578063b6c52324146107de578063c15fc5ab146107f35761023b565b80637d1db4a5116100f25780637d1db4a51461069d57806388f82020146106b25780638988d078146106e55780638da5cb5b146107185780638ee88c531461072d5761023b565b80635342acb4146105f857806365e1d9091461062b5780636bc87c3a1461064057806370a0823114610655578063715018a6146106885761023b565b8063313ce567116101bc578063437823ec11610180578063437823ec146105365780634549b0391461056957806349bd5a5e1461059b5780634a74bb02146105b057806352390c02146105c55761023b565b8063313ce567146104605780633685d4191461048b57806339509351146104be5780633b124fe7146104f75780633bd5d1731461050c5761023b565b80631694505e116102035780631694505e1461036a57806318160ddd1461039b5780631d813813146103b057806323b872dd146103f35780632d838119146104365761023b565b8063061c82d01461024057806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026a6004803603602081101561026357600080fd5b5035610925565b005b34801561027857600080fd5b50610281610982565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a18565b604080519115158252519081900360200190f35b34801561034f57600080fd5b50610358610a36565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610a3c565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a60565b3480156103bc57600080fd5b5061026a600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a66565b3480156103ff57600080fd5b5061032f6004803603606081101561041657600080fd5b506001600160a01b03813581169160208101359091169060400135610ba4565b34801561044257600080fd5b506103586004803603602081101561045957600080fd5b5035610c2b565b34801561046c57600080fd5b50610475610c8d565b6040805160ff9092168252519081900360200190f35b34801561049757600080fd5b5061026a600480360360208110156104ae57600080fd5b50356001600160a01b0316610c96565b3480156104ca57600080fd5b5061032f600480360360408110156104e157600080fd5b506001600160a01b038135169060200135610e57565b34801561050357600080fd5b50610358610ea5565b34801561051857600080fd5b5061026a6004803603602081101561052f57600080fd5b5035610eab565b34801561054257600080fd5b5061026a6004803603602081101561055957600080fd5b50356001600160a01b0316610f85565b34801561057557600080fd5b506103586004803603604081101561058c57600080fd5b50803590602001351515611001565b3480156105a757600080fd5b5061037f611093565b3480156105bc57600080fd5b5061032f6110b7565b3480156105d157600080fd5b5061026a600480360360208110156105e857600080fd5b50356001600160a01b03166110c5565b34801561060457600080fd5b5061032f6004803603602081101561061b57600080fd5b50356001600160a01b031661124b565b34801561063757600080fd5b5061026a611269565b34801561064c57600080fd5b50610358611303565b34801561066157600080fd5b506103586004803603602081101561067857600080fd5b50356001600160a01b0316611309565b34801561069457600080fd5b5061026a61136b565b3480156106a957600080fd5b5061035861140d565b3480156106be57600080fd5b5061032f600480360360208110156106d557600080fd5b50356001600160a01b0316611413565b3480156106f157600080fd5b5061032f6004803603602081101561070857600080fd5b50356001600160a01b0316611431565b34801561072457600080fd5b5061037f611446565b34801561073957600080fd5b5061026a6004803603602081101561075057600080fd5b5035611455565b34801561076357600080fd5b506102816114b2565b34801561077857600080fd5b5061032f6004803603604081101561078f57600080fd5b506001600160a01b038135169060200135611513565b3480156107b157600080fd5b5061032f600480360360408110156107c857600080fd5b506001600160a01b03813516906020013561157b565b3480156107ea57600080fd5b5061035861158f565b3480156107ff57600080fd5b5061026a6004803603604081101561081657600080fd5b506001600160a01b0381351690602001351515611595565b34801561083a57600080fd5b5061026a6004803603602081101561085157600080fd5b503515156116dd565b34801561086657600080fd5b5061026a6004803603602081101561087d57600080fd5b5035611784565b34801561089057600080fd5b50610358600480360360408110156108a757600080fd5b506001600160a01b0381358116916020013516611803565b3480156108cb57600080fd5b5061026a600480360360208110156108e257600080fd5b50356001600160a01b031661182e565b3480156108fe57600080fd5b5061026a6004803603602081101561091557600080fd5b50356001600160a01b03166118a7565b61092d61199f565b6000546001600160a01b0390811691161461097d576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b601055565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a0e5780601f106109e357610100808354040283529160200191610a0e565b820191906000526020600020905b8154815290600101906020018083116109f157829003601f168201915b5050505050905090565b6000610a2c610a2561199f565b84846119a3565b5060015b92915050565b600c5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5490565b610a6e61199f565b6000546001600160a01b03908116911614610abe576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b038316301415610b1c576040805162461bcd60e51b815260206004820152601e60248201527f43616e6e6f74207472616e73666572206f757420506f6c6b61446f6765210000604482015290519081900360640190fd5b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610b7357600080fd5b505af1158015610b87573d6000803e3d6000fd5b505050506040513d6020811015610b9d57600080fd5b5050505050565b6000610bb1848484611a8f565b610c2184610bbd61199f565b610c1c85604051806060016040528060288152602001612be3602891396001600160a01b038a16600090815260056020526040812090610bfb61199f565b6001600160a01b031681526020810191909152604001600020549190611d9a565b6119a3565b5060019392505050565b6000600b54821115610c6e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612b28602a913960400191505060405180910390fd5b6000610c78611e31565b9050610c848382611e54565b9150505b919050565b600f5460ff1690565b610c9e61199f565b6000546001600160a01b03908116911614610cee576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610d5b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610e5357816001600160a01b031660088281548110610d7f57fe5b6000918252602090912001546001600160a01b03161415610e4b57600880546000198101908110610dac57fe5b600091825260209091200154600880546001600160a01b039092169183908110610dd257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e2457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e53565b600101610d5e565b5050565b6000610a2c610e6461199f565b84610c1c8560056000610e7561199f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611e9d565b60105481565b6000610eb561199f565b6001600160a01b03811660009081526007602052604090205490915060ff1615610f105760405162461bcd60e51b815260040180806020018281038252602c815260200180612c9d602c913960400191505060405180910390fd5b6000610f1b83611ef7565b505050506001600160a01b038416600090815260036020526040902054919250610f4791905082611f46565b6001600160a01b038316600090815260036020526040902055600b54610f6d9082611f46565b600b55600c54610f7d9084611e9d565b600c55505050565b610f8d61199f565b6000546001600160a01b03908116911614610fdd576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600a5483111561105a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161107957600061106a84611ef7565b50939550610a30945050505050565b600061108484611ef7565b50929550610a30945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601454610100900460ff1681565b6110cd61199f565b6000546001600160a01b0390811691161461111d576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561118b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156111e5576001600160a01b0381166000908152600360205260409020546111cb90610c2b565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b61127161199f565b6000546001600160a01b039081169116146112c1576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b60006112cb61199f565b6040519091506001600160a01b038216904780156108fc02916000818181858888f19350505050158015610e53573d6000803e3d6000fd5b60125481565b6001600160a01b03811660009081526007602052604081205460ff161561134957506001600160a01b038116600090815260046020526040902054610c88565b6001600160a01b038216600090815260036020526040902054610a3090610c2b565b61137361199f565b6000546001600160a01b039081169116146113c3576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60155481565b6001600160a01b031660009081526007602052604090205460ff1690565b60096020526000908152604090205460ff1681565b6000546001600160a01b031690565b61145d61199f565b6000546001600160a01b039081169116146114ad576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b601255565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a0e5780601f106109e357610100808354040283529160200191610a0e565b6000610a2c61152061199f565b84610c1c85604051806060016040528060258152602001612cc9602591396005600061154a61199f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d9a565b6000610a2c61158861199f565b8484611a8f565b60025490565b61159d61199f565b6000546001600160a01b039081169116146115ed576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b8015611673574263607cc8001161164b576040805162461bcd60e51b815260206004820152601f60248201527f4f776e65722063616e6e6f74206c6f6e6765722062616e2077616c6c65747300604482015290519081900360640190fd5b6001600160a01b0382166000908152600960205260409020805460ff19166001179055611694565b6001600160a01b0382166000908152600960205260409020805460ff191690555b604080516001600160a01b0384168152821515602082015281517ffc70dcce81b5afebab40f1a9a0fe597f9097cb179cb4508e875b7b166838f88d929181900390910190a15050565b6116e561199f565b6000546001600160a01b03908116911614611735576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b60148054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61178c61199f565b6000546001600160a01b039081169116146117dc576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6117fd6127106117f783600a54611f8890919063ffffffff16565b90611e54565b60155550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61183661199f565b6000546001600160a01b03908116911614611886576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6118af61199f565b6000546001600160a01b039081169116146118ff576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b0381166119445760405162461bcd60e51b8152600401808060200182810382526026815260200180612b526026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166119e85760405162461bcd60e51b8152600401808060200182810382526024815260200180612c796024913960400191505060405180910390fd5b6001600160a01b038216611a2d5760405162461bcd60e51b8152600401808060200182810382526022815260200180612b786022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ad45760405162461bcd60e51b8152600401808060200182810382526025815260200180612c546025913960400191505060405180910390fd5b6001600160a01b038216611b195760405162461bcd60e51b8152600401808060200182810382526023815260200180612b056023913960400191505060405180910390fd5b60008111611b585760405162461bcd60e51b8152600401808060200182810382526029815260200180612c2b6029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611bb9576040805162461bcd60e51b815260206004820152601060248201526f14d95b99195c881a5cc818985b9b995960821b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611c1d576040805162461bcd60e51b8152602060048201526013602482015272149958da5c1a595b9d081a5cc818985b9b9959606a1b604482015290519081900360640190fd5b611c25611446565b6001600160a01b0316836001600160a01b031614158015611c5f5750611c49611446565b6001600160a01b0316826001600160a01b031614155b15611ca557601554811115611ca55760405162461bcd60e51b8152600401808060200182810382526028815260200180612b9a6028913960400191505060405180910390fd5b6000611cb030611309565b90506015548110611cc057506015545b60165481108015908190611cd7575060145460ff16155b8015611d1557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611d285750601454610100900460ff165b15611d3b576016549150611d3b82611fe1565b6001600160a01b03851660009081526006602052604090205460019060ff1680611d7d57506001600160a01b03851660009081526006602052604090205460ff165b15611d86575060005b611d928686868461207e565b505050505050565b60008184841115611e295760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611dee578181015183820152602001611dd6565b50505050905090810190601f168015611e1b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611e3e6121f2565b9092509050611e4d8282611e54565b9250505090565b6000611e9683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612355565b9392505050565b600082820183811015611e96576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611f0e8a6123ba565b9250925092506000806000611f2c8d8686611f27611e31565b6123fc565b919f909e50909c50959a5093985091965092945050505050565b6000611e9683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d9a565b600082611f9757506000610a30565b82820282848281611fa457fe5b0414611e965760405162461bcd60e51b8152600401808060200182810382526021815260200180612bc26021913960400191505060405180910390fd5b6014805460ff191660011790556000611ffb826002611e54565b905060006120098383611f46565b9050476120158361244c565b60006120214783611f46565b905061202d838261265b565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506014805460ff19169055505050565b8061208b5761208b612759565b6001600160a01b03841660009081526007602052604090205460ff1680156120cc57506001600160a01b03831660009081526007602052604090205460ff16155b156120e1576120dc84848461278b565b6121df565b6001600160a01b03841660009081526007602052604090205460ff1615801561212257506001600160a01b03831660009081526007602052604090205460ff165b15612132576120dc8484846128af565b6001600160a01b03841660009081526007602052604090205460ff1615801561217457506001600160a01b03831660009081526007602052604090205460ff16155b15612184576120dc848484612958565b6001600160a01b03841660009081526007602052604090205460ff1680156121c457506001600160a01b03831660009081526007602052604090205460ff165b156121d4576120dc84848461299c565b6121df848484612958565b806121ec576121ec612a0f565b50505050565b600b54600a546000918291825b6008548110156123235782600360006008848154811061221b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612280575081600460006008848154811061225957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561229757600b54600a5494509450505050612351565b6122d760036000600884815481106122ab57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611f46565b925061231960046000600884815481106122ed57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611f46565b91506001016121ff565b50600a54600b5461233391611e54565b82101561234b57600b54600a54935093505050612351565b90925090505b9091565b600081836123a45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611dee578181015183820152602001611dd6565b5060008385816123b057fe5b0495945050505050565b6000806000806123c985612a1d565b905060006123d686612a3a565b905060006123ee826123e88986611f46565b90611f46565b979296509094509092505050565b600080808061240b8886611f88565b905060006124198887611f88565b905060006124278888611f88565b90506000612439826123e88686611f46565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061247a57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124f357600080fd5b505afa158015612507573d6000803e3d6000fd5b505050506040513d602081101561251d57600080fd5b505181518290600190811061252e57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612579307f0000000000000000000000000000000000000000000000000000000000000000846119a3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561261e578181015183820152602001612606565b505050509050019650505050505050600060405180830381600087803b15801561264757600080fd5b505af1158015611d92573d6000803e3d6000fd5b612686307f0000000000000000000000000000000000000000000000000000000000000000846119a3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806126c3611446565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561272e57600080fd5b505af1158015612742573d6000803e3d6000fd5b50505050506040513d60608110156121ec57600080fd5b6010541580156127695750601254155b1561277357612789565b6010805460115560128054601355600091829055555b565b60008060008060008061279d87611ef7565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127cf9088611f46565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127fe9087611f46565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461282d9086611e9d565b6001600160a01b03891660009081526003602052604090205561284f81612a57565b6128598483612ae0565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806128c187611ef7565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506128f39087611f46565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546129299084611e9d565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461282d9086611e9d565b60008060008060008061296a87611ef7565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127fe9087611f46565b6000806000806000806129ae87611ef7565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506129e09088611f46565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546128f39087611f46565b601154601055601354601255565b6000610a306127106117f760105485611f8890919063ffffffff16565b6000610a306127106117f760125485611f8890919063ffffffff16565b6000612a61611e31565b90506000612a6f8383611f88565b30600090815260036020526040902054909150612a8c9082611e9d565b3060009081526003602090815260408083209390935560079052205460ff1615612adb5730600090815260046020526040902054612aca9084611e9d565b306000908152600460205260409020555b505050565b600b54612aed9083611f46565b600b55600c54612afd9082611e9d565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207d8fe71c3e5aff93be95a23890248be2c10e4f6ceff10adea4fcaf5e7fe25f3b64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102345760003560e01c80635342acb41161012e57806395d89b41116100ab578063c49b9a801161006f578063c49b9a801461082e578063d543dbeb1461085a578063dd62ed3e14610884578063ea2f0b37146108bf578063f2fde38b146108f25761023b565b806395d89b4114610757578063a457c2d71461076c578063a9059cbb146107a5578063b6c52324146107de578063c15fc5ab146107f35761023b565b80637d1db4a5116100f25780637d1db4a51461069d57806388f82020146106b25780638988d078146106e55780638da5cb5b146107185780638ee88c531461072d5761023b565b80635342acb4146105f857806365e1d9091461062b5780636bc87c3a1461064057806370a0823114610655578063715018a6146106885761023b565b8063313ce567116101bc578063437823ec11610180578063437823ec146105365780634549b0391461056957806349bd5a5e1461059b5780634a74bb02146105b057806352390c02146105c55761023b565b8063313ce567146104605780633685d4191461048b57806339509351146104be5780633b124fe7146104f75780633bd5d1731461050c5761023b565b80631694505e116102035780631694505e1461036a57806318160ddd1461039b5780631d813813146103b057806323b872dd146103f35780632d838119146104365761023b565b8063061c82d01461024057806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026a6004803603602081101561026357600080fd5b5035610925565b005b34801561027857600080fd5b50610281610982565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a18565b604080519115158252519081900360200190f35b34801561034f57600080fd5b50610358610a36565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610a3c565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a60565b3480156103bc57600080fd5b5061026a600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a66565b3480156103ff57600080fd5b5061032f6004803603606081101561041657600080fd5b506001600160a01b03813581169160208101359091169060400135610ba4565b34801561044257600080fd5b506103586004803603602081101561045957600080fd5b5035610c2b565b34801561046c57600080fd5b50610475610c8d565b6040805160ff9092168252519081900360200190f35b34801561049757600080fd5b5061026a600480360360208110156104ae57600080fd5b50356001600160a01b0316610c96565b3480156104ca57600080fd5b5061032f600480360360408110156104e157600080fd5b506001600160a01b038135169060200135610e57565b34801561050357600080fd5b50610358610ea5565b34801561051857600080fd5b5061026a6004803603602081101561052f57600080fd5b5035610eab565b34801561054257600080fd5b5061026a6004803603602081101561055957600080fd5b50356001600160a01b0316610f85565b34801561057557600080fd5b506103586004803603604081101561058c57600080fd5b50803590602001351515611001565b3480156105a757600080fd5b5061037f611093565b3480156105bc57600080fd5b5061032f6110b7565b3480156105d157600080fd5b5061026a600480360360208110156105e857600080fd5b50356001600160a01b03166110c5565b34801561060457600080fd5b5061032f6004803603602081101561061b57600080fd5b50356001600160a01b031661124b565b34801561063757600080fd5b5061026a611269565b34801561064c57600080fd5b50610358611303565b34801561066157600080fd5b506103586004803603602081101561067857600080fd5b50356001600160a01b0316611309565b34801561069457600080fd5b5061026a61136b565b3480156106a957600080fd5b5061035861140d565b3480156106be57600080fd5b5061032f600480360360208110156106d557600080fd5b50356001600160a01b0316611413565b3480156106f157600080fd5b5061032f6004803603602081101561070857600080fd5b50356001600160a01b0316611431565b34801561072457600080fd5b5061037f611446565b34801561073957600080fd5b5061026a6004803603602081101561075057600080fd5b5035611455565b34801561076357600080fd5b506102816114b2565b34801561077857600080fd5b5061032f6004803603604081101561078f57600080fd5b506001600160a01b038135169060200135611513565b3480156107b157600080fd5b5061032f600480360360408110156107c857600080fd5b506001600160a01b03813516906020013561157b565b3480156107ea57600080fd5b5061035861158f565b3480156107ff57600080fd5b5061026a6004803603604081101561081657600080fd5b506001600160a01b0381351690602001351515611595565b34801561083a57600080fd5b5061026a6004803603602081101561085157600080fd5b503515156116dd565b34801561086657600080fd5b5061026a6004803603602081101561087d57600080fd5b5035611784565b34801561089057600080fd5b50610358600480360360408110156108a757600080fd5b506001600160a01b0381358116916020013516611803565b3480156108cb57600080fd5b5061026a600480360360208110156108e257600080fd5b50356001600160a01b031661182e565b3480156108fe57600080fd5b5061026a6004803603602081101561091557600080fd5b50356001600160a01b03166118a7565b61092d61199f565b6000546001600160a01b0390811691161461097d576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b601055565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a0e5780601f106109e357610100808354040283529160200191610a0e565b820191906000526020600020905b8154815290600101906020018083116109f157829003601f168201915b5050505050905090565b6000610a2c610a2561199f565b84846119a3565b5060015b92915050565b600c5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600a5490565b610a6e61199f565b6000546001600160a01b03908116911614610abe576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b038316301415610b1c576040805162461bcd60e51b815260206004820152601e60248201527f43616e6e6f74207472616e73666572206f757420506f6c6b61446f6765210000604482015290519081900360640190fd5b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610b7357600080fd5b505af1158015610b87573d6000803e3d6000fd5b505050506040513d6020811015610b9d57600080fd5b5050505050565b6000610bb1848484611a8f565b610c2184610bbd61199f565b610c1c85604051806060016040528060288152602001612be3602891396001600160a01b038a16600090815260056020526040812090610bfb61199f565b6001600160a01b031681526020810191909152604001600020549190611d9a565b6119a3565b5060019392505050565b6000600b54821115610c6e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612b28602a913960400191505060405180910390fd5b6000610c78611e31565b9050610c848382611e54565b9150505b919050565b600f5460ff1690565b610c9e61199f565b6000546001600160a01b03908116911614610cee576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610d5b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610e5357816001600160a01b031660088281548110610d7f57fe5b6000918252602090912001546001600160a01b03161415610e4b57600880546000198101908110610dac57fe5b600091825260209091200154600880546001600160a01b039092169183908110610dd257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e2457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e53565b600101610d5e565b5050565b6000610a2c610e6461199f565b84610c1c8560056000610e7561199f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611e9d565b60105481565b6000610eb561199f565b6001600160a01b03811660009081526007602052604090205490915060ff1615610f105760405162461bcd60e51b815260040180806020018281038252602c815260200180612c9d602c913960400191505060405180910390fd5b6000610f1b83611ef7565b505050506001600160a01b038416600090815260036020526040902054919250610f4791905082611f46565b6001600160a01b038316600090815260036020526040902055600b54610f6d9082611f46565b600b55600c54610f7d9084611e9d565b600c55505050565b610f8d61199f565b6000546001600160a01b03908116911614610fdd576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600a5483111561105a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161107957600061106a84611ef7565b50939550610a30945050505050565b600061108484611ef7565b50929550610a30945050505050565b7f0000000000000000000000004179b51b6db49dfe200ddf36f54160a58b662c3a81565b601454610100900460ff1681565b6110cd61199f565b6000546001600160a01b0390811691161461111d576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561118b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156111e5576001600160a01b0381166000908152600360205260409020546111cb90610c2b565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b61127161199f565b6000546001600160a01b039081169116146112c1576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b60006112cb61199f565b6040519091506001600160a01b038216904780156108fc02916000818181858888f19350505050158015610e53573d6000803e3d6000fd5b60125481565b6001600160a01b03811660009081526007602052604081205460ff161561134957506001600160a01b038116600090815260046020526040902054610c88565b6001600160a01b038216600090815260036020526040902054610a3090610c2b565b61137361199f565b6000546001600160a01b039081169116146113c3576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60155481565b6001600160a01b031660009081526007602052604090205460ff1690565b60096020526000908152604090205460ff1681565b6000546001600160a01b031690565b61145d61199f565b6000546001600160a01b039081169116146114ad576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b601255565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a0e5780601f106109e357610100808354040283529160200191610a0e565b6000610a2c61152061199f565b84610c1c85604051806060016040528060258152602001612cc9602591396005600061154a61199f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d9a565b6000610a2c61158861199f565b8484611a8f565b60025490565b61159d61199f565b6000546001600160a01b039081169116146115ed576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b8015611673574263607cc8001161164b576040805162461bcd60e51b815260206004820152601f60248201527f4f776e65722063616e6e6f74206c6f6e6765722062616e2077616c6c65747300604482015290519081900360640190fd5b6001600160a01b0382166000908152600960205260409020805460ff19166001179055611694565b6001600160a01b0382166000908152600960205260409020805460ff191690555b604080516001600160a01b0384168152821515602082015281517ffc70dcce81b5afebab40f1a9a0fe597f9097cb179cb4508e875b7b166838f88d929181900390910190a15050565b6116e561199f565b6000546001600160a01b03908116911614611735576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b60148054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61178c61199f565b6000546001600160a01b039081169116146117dc576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6117fd6127106117f783600a54611f8890919063ffffffff16565b90611e54565b60155550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61183661199f565b6000546001600160a01b03908116911614611886576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6118af61199f565b6000546001600160a01b039081169116146118ff576040805162461bcd60e51b81526020600482018190526024820152600080516020612c0b833981519152604482015290519081900360640190fd5b6001600160a01b0381166119445760405162461bcd60e51b8152600401808060200182810382526026815260200180612b526026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166119e85760405162461bcd60e51b8152600401808060200182810382526024815260200180612c796024913960400191505060405180910390fd5b6001600160a01b038216611a2d5760405162461bcd60e51b8152600401808060200182810382526022815260200180612b786022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ad45760405162461bcd60e51b8152600401808060200182810382526025815260200180612c546025913960400191505060405180910390fd5b6001600160a01b038216611b195760405162461bcd60e51b8152600401808060200182810382526023815260200180612b056023913960400191505060405180910390fd5b60008111611b585760405162461bcd60e51b8152600401808060200182810382526029815260200180612c2b6029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611bb9576040805162461bcd60e51b815260206004820152601060248201526f14d95b99195c881a5cc818985b9b995960821b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611c1d576040805162461bcd60e51b8152602060048201526013602482015272149958da5c1a595b9d081a5cc818985b9b9959606a1b604482015290519081900360640190fd5b611c25611446565b6001600160a01b0316836001600160a01b031614158015611c5f5750611c49611446565b6001600160a01b0316826001600160a01b031614155b15611ca557601554811115611ca55760405162461bcd60e51b8152600401808060200182810382526028815260200180612b9a6028913960400191505060405180910390fd5b6000611cb030611309565b90506015548110611cc057506015545b60165481108015908190611cd7575060145460ff16155b8015611d1557507f0000000000000000000000004179b51b6db49dfe200ddf36f54160a58b662c3a6001600160a01b0316856001600160a01b031614155b8015611d285750601454610100900460ff165b15611d3b576016549150611d3b82611fe1565b6001600160a01b03851660009081526006602052604090205460019060ff1680611d7d57506001600160a01b03851660009081526006602052604090205460ff165b15611d86575060005b611d928686868461207e565b505050505050565b60008184841115611e295760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611dee578181015183820152602001611dd6565b50505050905090810190601f168015611e1b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611e3e6121f2565b9092509050611e4d8282611e54565b9250505090565b6000611e9683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612355565b9392505050565b600082820183811015611e96576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611f0e8a6123ba565b9250925092506000806000611f2c8d8686611f27611e31565b6123fc565b919f909e50909c50959a5093985091965092945050505050565b6000611e9683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d9a565b600082611f9757506000610a30565b82820282848281611fa457fe5b0414611e965760405162461bcd60e51b8152600401808060200182810382526021815260200180612bc26021913960400191505060405180910390fd5b6014805460ff191660011790556000611ffb826002611e54565b905060006120098383611f46565b9050476120158361244c565b60006120214783611f46565b905061202d838261265b565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506014805460ff19169055505050565b8061208b5761208b612759565b6001600160a01b03841660009081526007602052604090205460ff1680156120cc57506001600160a01b03831660009081526007602052604090205460ff16155b156120e1576120dc84848461278b565b6121df565b6001600160a01b03841660009081526007602052604090205460ff1615801561212257506001600160a01b03831660009081526007602052604090205460ff165b15612132576120dc8484846128af565b6001600160a01b03841660009081526007602052604090205460ff1615801561217457506001600160a01b03831660009081526007602052604090205460ff16155b15612184576120dc848484612958565b6001600160a01b03841660009081526007602052604090205460ff1680156121c457506001600160a01b03831660009081526007602052604090205460ff165b156121d4576120dc84848461299c565b6121df848484612958565b806121ec576121ec612a0f565b50505050565b600b54600a546000918291825b6008548110156123235782600360006008848154811061221b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612280575081600460006008848154811061225957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561229757600b54600a5494509450505050612351565b6122d760036000600884815481106122ab57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611f46565b925061231960046000600884815481106122ed57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611f46565b91506001016121ff565b50600a54600b5461233391611e54565b82101561234b57600b54600a54935093505050612351565b90925090505b9091565b600081836123a45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611dee578181015183820152602001611dd6565b5060008385816123b057fe5b0495945050505050565b6000806000806123c985612a1d565b905060006123d686612a3a565b905060006123ee826123e88986611f46565b90611f46565b979296509094509092505050565b600080808061240b8886611f88565b905060006124198887611f88565b905060006124278888611f88565b90506000612439826123e88686611f46565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061247a57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124f357600080fd5b505afa158015612507573d6000803e3d6000fd5b505050506040513d602081101561251d57600080fd5b505181518290600190811061252e57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612579307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846119a3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561261e578181015183820152602001612606565b505050509050019650505050505050600060405180830381600087803b15801561264757600080fd5b505af1158015611d92573d6000803e3d6000fd5b612686307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846119a3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806126c3611446565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561272e57600080fd5b505af1158015612742573d6000803e3d6000fd5b50505050506040513d60608110156121ec57600080fd5b6010541580156127695750601254155b1561277357612789565b6010805460115560128054601355600091829055555b565b60008060008060008061279d87611ef7565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127cf9088611f46565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127fe9087611f46565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461282d9086611e9d565b6001600160a01b03891660009081526003602052604090205561284f81612a57565b6128598483612ae0565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806128c187611ef7565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506128f39087611f46565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546129299084611e9d565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461282d9086611e9d565b60008060008060008061296a87611ef7565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127fe9087611f46565b6000806000806000806129ae87611ef7565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506129e09088611f46565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546128f39087611f46565b601154601055601354601255565b6000610a306127106117f760105485611f8890919063ffffffff16565b6000610a306127106117f760125485611f8890919063ffffffff16565b6000612a61611e31565b90506000612a6f8383611f88565b30600090815260036020526040902054909150612a8c9082611e9d565b3060009081526003602090815260408083209390935560079052205460ff1615612adb5730600090815260046020526040902054612aca9084611e9d565b306000908152600460205260409020555b505050565b600b54612aed9083611f46565b600b55600c54612afd9082611e9d565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207d8fe71c3e5aff93be95a23890248be2c10e4f6ceff10adea4fcaf5e7fe25f3b64736f6c634300060c0033
Deployed Bytecode Sourcemap
27148:20988:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35284:96;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35284:96:0;;:::i;:::-;;29630:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30615:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30615:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32114:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28147:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28147:51:0;;;;;;;;;;;;;;29907:95;;;;;;;;;;;;;:::i;36343:236::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36343:236:0;;;;;;;;;;;;;;;;;:::i;30816:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30816:446:0;;;;;;;;;;;;;;;;;:::i;33123:322::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33123:322:0;;:::i;29816:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33795:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33795:479:0;-1:-1:-1;;;;;33795:479:0;;:::i;31270:300::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31270:300:0;;;;;;;;:::i;27959:28::-;;;;;;;;;;;;;:::i;32209:419::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32209:419:0;;:::i;35047:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35047:111:0;-1:-1:-1;;;;;35047:111:0;;:::i;32636:479::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32636:479:0;;;;;;;;;:::i;28205:38::-;;;;;;;;;;;;;:::i;28280:41::-;;;;;;;;;;;;;:::i;33453:334::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33453:334:0;-1:-1:-1;;;;;33453:334:0;;:::i;40599:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40599:124:0;-1:-1:-1;;;;;40599:124:0;;:::i;36012:157::-;;;;;;;;;;;;;:::i;28044:34::-;;;;;;;;;;;;;:::i;30010:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30010:198:0;-1:-1:-1;;;;;30010:198:0;;:::i;17055:148::-;;;;;;;;;;;;;:::i;28352:54::-;;;;;;;;;;;;;:::i;31986:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31986:120:0;-1:-1:-1;;;;;31986:120:0;;:::i;27592:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27592:43:0;-1:-1:-1;;;;;27592:43:0;;:::i;16413:79::-;;;;;;;;;;;;;:::i;35388:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35388:120:0;;:::i;29721:87::-;;;;;;;;;;;;;:::i;31578:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31578:400:0;;;;;;;;:::i;30216:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30216:199:0;;;;;;;;:::i;17647:89::-;;;;;;;;;;;;;:::i;36587:360::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36587:360:0;;;;;;;;;;:::i;35660:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35660:171:0;;;;:::i;35516:136::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35516:136:0;;:::i;30423:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30423:184:0;;;;;;;;;;:::i;35166:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35166:110:0;-1:-1:-1;;;;;35166:110:0;;:::i;17358:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17358:281:0;-1:-1:-1;;;;;17358:281:0;;:::i;35284:96::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;35356:7:::1;:16:::0;35284:96::o;29630:83::-;29700:5;29693:12;;;;;;;;-1:-1:-1;;29693:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29667:13;;29693:12;;29700:5;;29693:12;;29700:5;29693:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29630:83;:::o;30615:193::-;30717:4;30739:39;30748:12;:10;:12::i;:::-;30762:7;30771:6;30739:8;:39::i;:::-;-1:-1:-1;30796:4:0;30615:193;;;;;:::o;32114:87::-;32183:10;;32114:87;:::o;28147:51::-;;;:::o;29907:95::-;29987:7;;29907:95;:::o;36343:236::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36458:27:0;::::1;36480:4;36458:27;;36450:70;;;::::0;;-1:-1:-1;;;36450:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;36537:10;-1:-1:-1::0;;;;;36531:26:0::1;;36558:3;36563:7;36531:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;36531:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;36343:236:0:o;30816:446::-;30948:4;30965:36;30975:6;30983:9;30994:6;30965:9;:36::i;:::-;31012:220;31035:6;31056:12;:10;:12::i;:::-;31083:138;31139:6;31083:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31083:19:0;;;;;;:11;:19;;;;;;31103:12;:10;:12::i;:::-;-1:-1:-1;;;;;31083:33:0;;;;;;;;;;;;-1:-1:-1;31083:33:0;;;:138;:37;:138::i;:::-;31012:8;:220::i;:::-;-1:-1:-1;31250:4:0;30816:446;;;;;:::o;33123:322::-;33217:7;33275;;33264;:18;;33242:110;;;;-1:-1:-1;;;33242:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33363:19;33385:10;:8;:10::i;:::-;33363:32;-1:-1:-1;33413:24:0;:7;33363:32;33413:11;:24::i;:::-;33406:31;;;33123:322;;;;:::o;29816:83::-;29882:9;;;;29816:83;:::o;33795:479::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33877:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33869:60;;;::::0;;-1:-1:-1;;;33869:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33945:9;33940:327;33964:9;:16:::0;33960:20;::::1;33940:327;;;34022:7;-1:-1:-1::0;;;;;34006:23:0::1;:9;34016:1;34006:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34006:12:0::1;:23;34002:254;;;34065:9;34075:16:::0;;-1:-1:-1;;34075:20:0;;;34065:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;34050:9:::1;:12:::0;;-1:-1:-1;;;;;34065:31:0;;::::1;::::0;34060:1;;34050:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34050:46:0::1;-1:-1:-1::0;;;;;34050:46:0;;::::1;;::::0;;34115:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34154:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34154:28:0::1;::::0;;34201:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34201:15:0;;;;;-1:-1:-1;;;;;;34201:15:0::1;::::0;;;;;34235:5:::1;;34002:254;33982:3;;33940:327;;;;33795:479:::0;:::o;31270:300::-;31385:4;31407:133;31430:12;:10;:12::i;:::-;31457:7;31479:50;31518:10;31479:11;:25;31491:12;:10;:12::i;:::-;-1:-1:-1;;;;;31479:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31479:25:0;;;:34;;;;;;;;;;;:38;:50::i;27959:28::-;;;;:::o;32209:419::-;32261:14;32278:12;:10;:12::i;:::-;-1:-1:-1;;;;;32324:19:0;;;;;;:11;:19;;;;;;32261:29;;-1:-1:-1;32324:19:0;;32323:20;32301:114;;;;-1:-1:-1;;;32301:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32427:15;32456:19;32467:7;32456:10;:19::i;:::-;-1:-1:-1;;;;;;;;;32504:15:0;;;;;;:7;:15;;;;;;32426:49;;-1:-1:-1;32504:28:0;;:15;-1:-1:-1;32426:49:0;32504:19;:28::i;:::-;-1:-1:-1;;;;;32486:15:0;;;;;;:7;:15;;;;;:46;32553:7;;:20;;32565:7;32553:11;:20::i;:::-;32543:7;:30;32597:10;;:23;;32612:7;32597:14;:23::i;:::-;32584:10;:36;-1:-1:-1;;;32209:419:0:o;35047:111::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35116:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;35116:34:0::1;35146:4;35116:34;::::0;;35047:111::o;32636:479::-;32754:7;32798;;32787;:18;;32779:62;;;;;-1:-1:-1;;;32779:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32857:17;32852:256;;32892:15;32921:19;32932:7;32921:10;:19::i;:::-;-1:-1:-1;32891:49:0;;-1:-1:-1;32955:14:0;;-1:-1:-1;;;;;32955:14:0;32852:256;33005:23;33040:19;33051:7;33040:10;:19::i;:::-;-1:-1:-1;33002:57:0;;-1:-1:-1;33074:22:0;;-1:-1:-1;;;;;33074:22:0;28205:38;;;:::o;28280:41::-;;;;;;;;;:::o;33453:334::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33536:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33535:21;33527:61;;;::::0;;-1:-1:-1;;;33527:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33603:16:0;::::1;33622:1;33603:16:::0;;;:7:::1;:16;::::0;;;;;:20;33599:109:::1;;-1:-1:-1::0;;;;;33679:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33659:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33640:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33599:109:::1;-1:-1:-1::0;;;;;33718:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33718:27:0::1;33741:4;33718:27:::0;;::::1;::::0;;;33756:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33756:23:0::1;::::0;;::::1;::::0;;33453:334::o;40599:124::-;-1:-1:-1;;;;;40688:27:0;40664:4;40688:27;;;:18;:27;;;;;;;;;40599:124::o;36012:157::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;36075:22:::1;36100:12;:10;:12::i;:::-;36123:38;::::0;36075:37;;-1:-1:-1;;;;;;36123:15:0;::::1;::::0;36139:21:::1;36123:38:::0;::::1;;;::::0;::::1;::::0;;;36139:21;36123:15;:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;28044:34:::0;;;;:::o;30010:198::-;-1:-1:-1;;;;;30100:20:0;;30076:7;30100:20;;;:11;:20;;;;;;;;30096:49;;;-1:-1:-1;;;;;;30129:16:0;;;;;;:7;:16;;;;;;30122:23;;30096:49;-1:-1:-1;;;;;30183:16:0;;;;;;:7;:16;;;;;;30163:37;;:19;:37::i;17055:148::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;17162:1:::1;17146:6:::0;;17125:40:::1;::::0;-1:-1:-1;;;;;17146:6:0;;::::1;::::0;17125:40:::1;::::0;17162:1;;17125:40:::1;17193:1;17176:19:::0;;-1:-1:-1;;;;;;17176:19:0::1;::::0;;17055:148::o;28352:54::-;;;;:::o;31986:120::-;-1:-1:-1;;;;;32078:20:0;32054:4;32078:20;;;:11;:20;;;;;;;;;31986:120::o;27592:43::-;;;;;;;;;;;;;;;:::o;16413:79::-;16451:7;16478:6;-1:-1:-1;;;;;16478:6:0;16413:79;:::o;35388:120::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;35472:13:::1;:28:::0;35388:120::o;29721:87::-;29793:7;29786:14;;;;;;;;-1:-1:-1;;29786:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29760:13;;29786:14;;29793:7;;29786:14;;29793:7;29786:14;;;;;;;;;;;;;;;;;;;;;;;;31578:400;31698:4;31720:228;31743:12;:10;:12::i;:::-;31770:7;31792:145;31849:15;31792:145;;;;;;;;;;;;;;;;;:11;:25;31804:12;:10;:12::i;:::-;-1:-1:-1;;;;;31792:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31792:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;30216:199::-;30321:4;30343:42;30353:12;:10;:12::i;:::-;30367:9;30378:6;30343:9;:42::i;17647:89::-;17719:9;;17647:89;:::o;36587:360::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;36676:6:::1;36672:216;;;36729:15;36707:19;:37;36699:81;;;::::0;;-1:-1:-1;;;36699:81:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;36795:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;:24;;-1:-1:-1;;36795:24:0::1;36815:4;36795:24;::::0;;36672:216:::1;;;-1:-1:-1::0;;;;;36859:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;36852:24;;-1:-1:-1;;36852:24:0::1;::::0;;36672:216:::1;36903:36;::::0;;-1:-1:-1;;;;;36903:36:0;::::1;::::0;;;::::1;;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;36587:360:::0;;:::o;35660:171::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;35737:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;35737:32:0;;::::1;::::0;;;::::1;::::0;;;35785:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;35660:171:::0;:::o;35516:136::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;35608:36:::1;35638:5;35608:25;35620:12;35608:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:36::i;:::-;35593:12;:51:::0;-1:-1:-1;35516:136:0:o;30423:184::-;-1:-1:-1;;;;;30572:18:0;;;30540:7;30572:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30423:184::o;35166:110::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35233:27:0::1;35263:5;35233:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;35233:35:0::1;::::0;;35166:110::o;17358:281::-;16635:12;:10;:12::i;:::-;16625:6;;-1:-1:-1;;;;;16625:6:0;;;:22;;;16617:67;;;;;-1:-1:-1;;;16617:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16617:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17461:22:0;::::1;17439:110;;;;-1:-1:-1::0;;;17439:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17586:6;::::0;;17565:38:::1;::::0;-1:-1:-1;;;;;17565:38:0;;::::1;::::0;17586:6;::::1;::::0;17565:38:::1;::::0;::::1;17614:6;:17:::0;;-1:-1:-1;;;;;;17614:17:0::1;-1:-1:-1::0;;;;;17614:17:0;;;::::1;::::0;;;::::1;::::0;;17358:281::o;8369:106::-;8457:10;8369:106;:::o;40731:371::-;-1:-1:-1;;;;;40858:19:0;;40850:68;;;;-1:-1:-1;;;40850:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40937:21:0;;40929:68;;;;-1:-1:-1;;;40929:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41010:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;41062:32;;;;;;;;;;;;;;;;;40731:371;;;:::o;41110:1968::-;-1:-1:-1;;;;;41232:18:0;;41224:68;;;;-1:-1:-1;;;41224:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41311:16:0;;41303:64;;;;-1:-1:-1;;;41303:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41395:1;41386:6;:10;41378:64;;;;-1:-1:-1;;;41378:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41461:17:0;;;;;;:11;:17;;;;;;;;:26;41453:55;;;;;-1:-1:-1;;;41453:55:0;;;;;;;;;;;;-1:-1:-1;;;41453:55:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41527:15:0;;;;;;:11;:15;;;;;;;;:24;41519:56;;;;;-1:-1:-1;;;41519:56:0;;;;;;;;;;;;-1:-1:-1;;;41519:56:0;;;;;;;;;;;;;;;41600:7;:5;:7::i;:::-;-1:-1:-1;;;;;41592:15:0;:4;-1:-1:-1;;;;;41592:15:0;;;:32;;;;;41617:7;:5;:7::i;:::-;-1:-1:-1;;;;;41611:13:0;:2;-1:-1:-1;;;;;41611:13:0;;;41592:32;41588:175;;;41675:12;;41665:6;:22;;41639:124;;;;-1:-1:-1;;;41639:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42058:28;42089:24;42107:4;42089:9;:24::i;:::-;42058:55;;42154:12;;42130:20;:36;42126:104;;-1:-1:-1;42206:12:0;;42126:104;42306:29;;42282:53;;;;;;;42364;;-1:-1:-1;42401:16:0;;;;42400:17;42364:53;:91;;;;;42442:13;-1:-1:-1;;;;;42434:21:0;:4;-1:-1:-1;;;;;42434:21:0;;;42364:91;:129;;;;-1:-1:-1;42472:21:0;;;;;;;42364:129;42346:318;;;42543:29;;42520:52;;42616:36;42631:20;42616:14;:36::i;:::-;-1:-1:-1;;;;;42857:24:0;;42737:12;42857:24;;;:18;:24;;;;;;42752:4;;42857:24;;;:50;;-1:-1:-1;;;;;;42885:22:0;;;;;;:18;:22;;;;;;;;42857:50;42853:98;;;-1:-1:-1;42934:5:0;42853:98;43029:41;43044:4;43050:2;43054:6;43062:7;43029:14;:41::i;:::-;41110:1968;;;;;;:::o;4677:226::-;4797:7;4833:12;4825:6;;;;4817:29;;;;-1:-1:-1;;;4817:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4869:5:0;;;4677:226::o;38755:164::-;38797:7;38818:15;38835;38854:19;:17;:19::i;:::-;38817:56;;-1:-1:-1;38817:56:0;-1:-1:-1;38891:20:0;38817:56;;38891:11;:20::i;:::-;38884:27;;;;38755:164;:::o;6109:132::-;6167:7;6194:39;6198:1;6201;6194:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6187:46;6109:132;-1:-1:-1;;;6109:132:0:o;3774:181::-;3832:7;3864:5;;;3888:6;;;;3880:46;;;;;-1:-1:-1;;;3880:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;37110:655;37210:7;37232;37254;37276;37298;37320;37356:23;37381:12;37395:18;37430:20;37442:7;37430:11;:20::i;:::-;37355:95;;;;;;37462:15;37479:23;37504:12;37533:50;37545:7;37554:4;37560:10;37572;:8;:10::i;:::-;37533:11;:50::i;:::-;37461:122;;;;-1:-1:-1;37461:122:0;;-1:-1:-1;37687:15:0;;-1:-1:-1;37717:4:0;;-1:-1:-1;37736:10:0;;-1:-1:-1;37110:655:0;;-1:-1:-1;;;;;37110:655:0:o;4238:136::-;4296:7;4323:43;4327:1;4330;4323:43;;;;;;;;;;;;;;;;;:3;:43::i;5162:471::-;5220:7;5465:6;5461:47;;-1:-1:-1;5495:1:0;5488:8;;5461:47;5532:5;;;5536:1;5532;:5;:1;5556:5;;;;;:10;5548:56;;;;-1:-1:-1;;;5548:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43086:977;28846:16;:23;;-1:-1:-1;;28846:23:0;28865:4;28846:23;;;:16;43237:27:::1;:20:::0;43262:1:::1;43237:24;:27::i;:::-;43222:42:::0;-1:-1:-1;43275:17:0::1;43295:30;:20:::0;43222:42;43295:24:::1;:30::i;:::-;43275:50:::0;-1:-1:-1;43628:21:0::1;43694:22;43711:4:::0;43694:16:::1;:22::i;:::-;43847:18;43868:41;:21;43894:14:::0;43868:25:::1;:41::i;:::-;43847:62;;43959:35;43972:9;43983:10;43959:12;:35::i;:::-;44012:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;28892:16:0;:24;;-1:-1:-1;;28892:24:0;;;-1:-1:-1;;;43086:977:0:o;45262:838::-;45418:7;45413:28;;45427:14;:12;:14::i;:::-;-1:-1:-1;;;;;45458:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45482:22:0;;;;;;:11;:22;;;;;;;;45481:23;45458:46;45454:597;;;45521:48;45543:6;45551:9;45562:6;45521:21;:48::i;:::-;45454:597;;;-1:-1:-1;;;;;45592:19:0;;;;;;:11;:19;;;;;;;;45591:20;:46;;;;-1:-1:-1;;;;;;45615:22:0;;;;;;:11;:22;;;;;;;;45591:46;45587:464;;;45654:46;45674:6;45682:9;45693:6;45654:19;:46::i;45587:464::-;-1:-1:-1;;;;;45723:19:0;;;;;;:11;:19;;;;;;;;45722:20;:47;;;;-1:-1:-1;;;;;;45747:22:0;;;;;;:11;:22;;;;;;;;45746:23;45722:47;45718:333;;;45786:44;45804:6;45812:9;45823:6;45786:17;:44::i;45718:333::-;-1:-1:-1;;;;;45852:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;45875:22:0;;;;;;:11;:22;;;;;;;;45852:45;45848:203;;;45914:48;45936:6;45944:9;45955:6;45914:21;:48::i;45848:203::-;45995:44;46013:6;46021:9;46032:6;45995:17;:44::i;:::-;46068:7;46063:29;;46077:15;:13;:15::i;:::-;45262:838;;;;:::o;38927:605::-;39025:7;;39061;;38978;;;;;39079:338;39103:9;:16;39099:20;;39079:338;;;39187:7;39163;:21;39171:9;39181:1;39171:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39171:12:0;39163:21;;;;;;;;;;;;;:31;;:83;;;39239:7;39215;:21;39223:9;39233:1;39223:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39223:12:0;39215:21;;;;;;;;;;;;;:31;39163:83;39141:146;;;39270:7;;39279;;39262:25;;;;;;;;;39141:146;39312:34;39324:7;:21;39332:9;39342:1;39332:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39332:12:0;39324:21;;;;;;;;;;;;;39312:7;;:11;:34::i;:::-;39302:44;;39371:34;39383:7;:21;39391:9;39401:1;39391:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39391:12:0;39383:21;;;;;;;;;;;;;39371:7;;:11;:34::i;:::-;39361:44;-1:-1:-1;39121:3:0;;39079:338;;;-1:-1:-1;39453:7:0;;39441;;:20;;:11;:20::i;:::-;39431:7;:30;39427:61;;;39471:7;;39480;;39463:25;;;;;;;;39427:61;39507:7;;-1:-1:-1;39516:7:0;-1:-1:-1;38927:605:0;;;:::o;6737:312::-;6857:7;6892:12;6885:5;6877:28;;;;-1:-1:-1;;;6877:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6916:9;6932:1;6928;:5;;;;;;;6737:312;-1:-1:-1;;;;;6737:312:0:o;37773:412::-;37874:7;37896;37918;37953:12;37968:24;37984:7;37968:15;:24::i;:::-;37953:39;;38003:18;38024:30;38046:7;38024:21;:30::i;:::-;38003:51;-1:-1:-1;38065:23:0;38091:33;38003:51;38091:17;:7;38103:4;38091:11;:17::i;:::-;:21;;:33::i;:::-;38065:59;38160:4;;-1:-1:-1;38166:10:0;;-1:-1:-1;37773:412:0;;-1:-1:-1;;;37773:412:0:o;38193:554::-;38392:7;;;;38489:24;:7;38501:11;38489;:24::i;:::-;38471:42;-1:-1:-1;38524:12:0;38539:21;:4;38548:11;38539:8;:21::i;:::-;38524:36;-1:-1:-1;38571:18:0;38592:27;:10;38607:11;38592:14;:27::i;:::-;38571:48;-1:-1:-1;38630:23:0;38656:33;38571:48;38656:17;:7;38668:4;38656:11;:17::i;:33::-;38708:7;;;;-1:-1:-1;38734:4:0;;-1:-1:-1;38193:554:0;;-1:-1:-1;;;;;;;38193:554:0:o;44071:589::-;44221:16;;;44235:1;44221:16;;;44197:21;44221:16;;;;;44197:21;44221:16;;;;;;;;;;-1:-1:-1;44221:16:0;44197:40;;44266:4;44248;44253:1;44248:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;44248:23:0;;;-1:-1:-1;;;;;44248:23:0;;;;;44292:15;-1:-1:-1;;;;;44292:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44292:22:0;44282:7;;:4;;44287:1;;44282:7;;;;;;;;;;;:32;-1:-1:-1;;;;;44282:32:0;;;-1:-1:-1;;;;;44282:32:0;;;;;44327:62;44344:4;44359:15;44377:11;44327:8;:62::i;:::-;44428:15;-1:-1:-1;;;;;44428:66:0;;44509:11;44535:1;44579:4;44606;44626:15;44428:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44428:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44668:513;44816:62;44833:4;44848:15;44866:11;44816:8;:62::i;:::-;44921:15;-1:-1:-1;;;;;44921:31:0;;44960:9;44993:4;45013:11;45039:1;45082;45125:7;:5;:7::i;:::-;45147:15;44921:252;;;;;;;;;;;;;-1:-1:-1;;;;;44921:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44921:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40223:235;40270:7;;:12;:34;;;;-1:-1:-1;40286:13:0;;:18;40270:34;40266:47;;;40306:7;;40266:47;40343:7;;;40325:15;:25;40385:13;;;40361:21;:37;-1:-1:-1;40411:11:0;;;;40433:17;40223:235;:::o;47447:686::-;47598:15;47628:23;47666:12;47693:23;47731:12;47758:18;47790:19;47801:7;47790:10;:19::i;:::-;-1:-1:-1;;;;;47838:15:0;;;;;;:7;:15;;;;;;47583:226;;-1:-1:-1;47583:226:0;;-1:-1:-1;47583:226:0;;-1:-1:-1;47583:226:0;-1:-1:-1;47583:226:0;-1:-1:-1;47583:226:0;-1:-1:-1;47838:28:0;;47858:7;47838:19;:28::i;:::-;-1:-1:-1;;;;;47820:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47895:7;:15;;;;:28;;47915:7;47895:19;:28::i;:::-;-1:-1:-1;;;;;47877:15:0;;;;;;;:7;:15;;;;;;:46;;;;47955:18;;;;;;;:39;;47978:15;47955:22;:39::i;:::-;-1:-1:-1;;;;;47934:18:0;;;;;;:7;:18;;;;;:60;48005:26;48020:10;48005:14;:26::i;:::-;48042:23;48054:4;48060;48042:11;:23::i;:::-;48098:9;-1:-1:-1;;;;;48081:44:0;48090:6;-1:-1:-1;;;;;48081:44:0;;48109:15;48081:44;;;;;;;;;;;;;;;;;;47447:686;;;;;;;;;:::o;46741:698::-;46890:15;46920:23;46958:12;46985:23;47023:12;47050:18;47082:19;47093:7;47082:10;:19::i;:::-;-1:-1:-1;;;;;47130:15:0;;;;;;:7;:15;;;;;;46875:226;;-1:-1:-1;46875:226:0;;-1:-1:-1;46875:226:0;;-1:-1:-1;46875:226:0;-1:-1:-1;46875:226:0;-1:-1:-1;46875:226:0;-1:-1:-1;47130:28:0;;46875:226;47130:19;:28::i;:::-;-1:-1:-1;;;;;47112:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47190:18;;;;;:7;:18;;;;;:39;;47213:15;47190:22;:39::i;:::-;-1:-1:-1;;;;;47169:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47261:7;:18;;;;:39;;47284:15;47261:22;:39::i;46108:625::-;46255:15;46285:23;46323:12;46350:23;46388:12;46415:18;46447:19;46458:7;46447:10;:19::i;:::-;-1:-1:-1;;;;;46495:15:0;;;;;;:7;:15;;;;;;46240:226;;-1:-1:-1;46240:226:0;;-1:-1:-1;46240:226:0;;-1:-1:-1;46240:226:0;-1:-1:-1;46240:226:0;-1:-1:-1;46240:226:0;-1:-1:-1;46495:28:0;;46240:226;46495:19;:28::i;34282:757::-;34433:15;34463:23;34501:12;34528:23;34566:12;34593:18;34625:19;34636:7;34625:10;:19::i;:::-;-1:-1:-1;;;;;34673:15:0;;;;;;:7;:15;;;;;;34418:226;;-1:-1:-1;34418:226:0;;-1:-1:-1;34418:226:0;;-1:-1:-1;34418:226:0;-1:-1:-1;34418:226:0;-1:-1:-1;34418:226:0;-1:-1:-1;34673:28:0;;34693:7;34673:19;:28::i;:::-;-1:-1:-1;;;;;34655:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34730:7;:15;;;;:28;;34750:7;34730:19;:28::i;40466:125::-;40520:15;;40510:7;:25;40562:21;;40546:13;:37;40466:125::o;39903:130::-;39967:7;39994:31;40019:5;39994:20;40006:7;;39994;:11;;:20;;;;:::i;40041:174::-;40138:7;40170:37;40201:5;40170:26;40182:13;;40170:7;:11;;:26;;;;:::i;39540:355::-;39603:19;39625:10;:8;:10::i;:::-;39603:32;-1:-1:-1;39646:18:0;39667:27;:10;39603:32;39667:14;:27::i;:::-;39746:4;39730:22;;;;:7;:22;;;;;;39646:48;;-1:-1:-1;39730:38:0;;39646:48;39730:26;:38::i;:::-;39721:4;39705:22;;;;:7;:22;;;;;;;;:63;;;;39783:11;:26;;;;;;39779:108;;;39865:4;39849:22;;;;:7;:22;;;;;;:38;;39876:10;39849:26;:38::i;:::-;39840:4;39824:22;;;;:7;:22;;;;;:63;39779:108;39540:355;;;:::o;36955:147::-;37033:7;;:17;;37045:4;37033:11;:17::i;:::-;37023:7;:27;37074:10;;:20;;37089:4;37074:14;:20::i;:::-;37061:10;:33;-1:-1:-1;;36955:147:0:o
Swarm Source
ipfs://7d8fe71c3e5aff93be95a23890248be2c10e4f6ceff10adea4fcaf5e7fe25f3b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.