ETH Price: $3,416.08 (+1.83%)

Token

Akita Cakes (ACakes)
 

Overview

Max Total Supply

10,000,000,000,000 ACakes

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
28,690,907,873.98927106989590261 ACakes

Value
$0.00
0x6a480D1F6D85B56016bA9681EBE57399b34B6224
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ACakes

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-17
*/

pragma solidity ^0.6.12;

// SPDX-License-Identifier: Unlicensed
// Name: Akita Cakes
// Symbol: ACakes
// Decimals: 18
// TAX: 20% In Total

    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;
        }
    }

    interface IERC20 {
        /**
        * @dev Returns the amount of tokens in existence.
        */
        function totalSupply() external view returns (uint256);

        /**
        * @dev Returns the amount of tokens owned by `account`.
        */
        function balanceOf(address account) external view returns (uint256);

        /**
        * @dev Moves `amount` tokens from the caller's account to `recipient`.
        *
        * Returns a boolean value indicating whether the operation succeeded.
        *
        * Emits a {Transfer} event.
        */
        function transfer(address recipient, uint256 amount) external returns (bool);

        /**
        * @dev Returns the remaining number of tokens that `spender` will be
        * allowed to spend on behalf of `owner` through {transferFrom}. This is
        * zero by default.
        *
        * This value changes when {approve} or {transferFrom} are called.
        */
        function allowance(address owner, address spender) external view returns (uint256);

        /**
        * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
        *
        * Returns a boolean value indicating whether the operation succeeded.
        *
        * IMPORTANT: Beware that changing an allowance with this method brings the risk
        * that someone may use both the old and the new allowance by unfortunate
        * transaction ordering. One possible solution to mitigate this race
        * condition is to first reduce the spender's allowance to 0 and set the
        * desired value afterwards:
        * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
        *
        * Emits an {Approval} event.
        */
        function approve(address spender, uint256 amount) external returns (bool);

        /**
        * @dev Moves `amount` tokens from `sender` to `recipient` using the
        * allowance mechanism. `amount` is then deducted from the caller's
        * allowance.
        *
        * Returns a boolean value indicating whether the operation succeeded.
        *
        * Emits a {Transfer} event.
        */
        function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

        /**
        * @dev Emitted when `value` tokens are moved from one account (`from`) to
        * another (`to`).
        *
        * Note that `value` may be zero.
        */
        event Transfer(address indexed from, address indexed to, uint256 value);

        /**
        * @dev Emitted when the allowance of a `spender` for an `owner` is set by
        * a call to {approve}. `value` is the new allowance.
        */
        event Approval(address indexed owner, address indexed spender, uint256 value);
    }

    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;
        }
    }

    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);
                }
            }
        }
    }

    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;
        }

        //Locks the contract for owner for the amount of time provided
        function lock(uint256 time) public virtual onlyOwner {
            _previousOwner = _owner;
            _owner = address(0);
            _lockTime = now + time;
            emit OwnershipTransferred(_owner, address(0));
        }
        
        //Unlocks the contract for owner when _lockTime is exceeds
        function unlock() public virtual {
            require(_previousOwner == msg.sender, "You don't have permission to unlock");
            require(now > _lockTime , "Contract is locked until 7 days");
            emit OwnershipTransferred(_owner, _previousOwner);
            _owner = _previousOwner;
        }
    }  

    interface IUniswapV2Factory {
        event PairCreated(address indexed token0, address indexed token1, address pair, uint);

        function feeTo() external view returns (address);
        function feeToSetter() external view returns (address);

        function getPair(address tokenA, address tokenB) external view returns (address pair);
        function allPairs(uint) external view returns (address pair);
        function allPairsLength() external view returns (uint);

        function createPair(address tokenA, address tokenB) external returns (address pair);

        function setFeeTo(address) external;
        function setFeeToSetter(address) external;
    } 

    interface IUniswapV2Pair {
        event Approval(address indexed owner, address indexed spender, uint value);
        event Transfer(address indexed from, address indexed to, uint value);

        function name() external pure returns (string memory);
        function symbol() external pure returns (string memory);
        function decimals() external pure returns (uint8);
        function totalSupply() external view returns (uint);
        function balanceOf(address owner) external view returns (uint);
        function allowance(address owner, address spender) external view returns (uint);

        function approve(address spender, uint value) external returns (bool);
        function transfer(address to, uint value) external returns (bool);
        function transferFrom(address from, address to, uint value) external returns (bool);

        function DOMAIN_SEPARATOR() external view returns (bytes32);
        function PERMIT_TYPEHASH() external pure returns (bytes32);
        function nonces(address owner) external view returns (uint);

        function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

        event Mint(address indexed sender, uint amount0, uint amount1);
        event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
        event Swap(
            address indexed sender,
            uint amount0In,
            uint amount1In,
            uint amount0Out,
            uint amount1Out,
            address indexed to
        );
        event Sync(uint112 reserve0, uint112 reserve1);

        function MINIMUM_LIQUIDITY() external pure returns (uint);
        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 (uint);
        function price1CumulativeLast() external view returns (uint);
        function kLast() external view returns (uint);

        function mint(address to) external returns (uint liquidity);
        function burn(address to) external returns (uint amount0, uint amount1);
        function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
        function skim(address to) external;
        function sync() external;

        function initialize(address, address) external;
    }

    interface IUniswapV2Router01 {
        function factory() external pure returns (address);
        function WETH() external pure returns (address);

        function addLiquidity(
            address tokenA,
            address tokenB,
            uint amountADesired,
            uint amountBDesired,
            uint amountAMin,
            uint amountBMin,
            address to,
            uint deadline
        ) external returns (uint amountA, uint amountB, uint liquidity);
        function addLiquidityETH(
            address token,
            uint amountTokenDesired,
            uint amountTokenMin,
            uint amountETHMin,
            address to,
            uint deadline
        ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
        function removeLiquidity(
            address tokenA,
            address tokenB,
            uint liquidity,
            uint amountAMin,
            uint amountBMin,
            address to,
            uint deadline
        ) external returns (uint amountA, uint amountB);
        function removeLiquidityETH(
            address token,
            uint liquidity,
            uint amountTokenMin,
            uint amountETHMin,
            address to,
            uint deadline
        ) external returns (uint amountToken, uint amountETH);
        function removeLiquidityWithPermit(
            address tokenA,
            address tokenB,
            uint liquidity,
            uint amountAMin,
            uint amountBMin,
            address to,
            uint deadline,
            bool approveMax, uint8 v, bytes32 r, bytes32 s
        ) external returns (uint amountA, uint amountB);
        function removeLiquidityETHWithPermit(
            address token,
            uint liquidity,
            uint amountTokenMin,
            uint amountETHMin,
            address to,
            uint deadline,
            bool approveMax, uint8 v, bytes32 r, bytes32 s
        ) external returns (uint amountToken, uint amountETH);
        function swapExactTokensForTokens(
            uint amountIn,
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
        ) external returns (uint[] memory amounts);
        function swapTokensForExactTokens(
            uint amountOut,
            uint amountInMax,
            address[] calldata path,
            address to,
            uint deadline
        ) external returns (uint[] memory amounts);
        function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
            external
            payable
            returns (uint[] memory amounts);
        function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
            external
            returns (uint[] memory amounts);
        function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
            external
            returns (uint[] memory amounts);
        function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
            external
            payable
            returns (uint[] memory amounts);

        function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
        function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
        function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
        function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
        function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
    }

    interface IUniswapV2Router02 is IUniswapV2Router01 {
        function removeLiquidityETHSupportingFeeOnTransferTokens(
            address token,
            uint liquidity,
            uint amountTokenMin,
            uint amountETHMin,
            address to,
            uint deadline
        ) external returns (uint amountETH);
        function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
            address token,
            uint liquidity,
            uint amountTokenMin,
            uint amountETHMin,
            address to,
            uint deadline,
            bool approveMax, uint8 v, bytes32 r, bytes32 s
        ) external returns (uint amountETH);

        function swapExactTokensForTokensSupportingFeeOnTransferTokens(
            uint amountIn,
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
        ) external;
        function swapExactETHForTokensSupportingFeeOnTransferTokens(
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
        ) external payable;
        function swapExactTokensForETHSupportingFeeOnTransferTokens(
            uint amountIn,
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
        ) external;
    }

    // Contract implementation
    contract ACakes 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) private _isBlackListedBot;
        address[] private _blackListedBots;
    
        uint256 private constant MAX = ~uint256(0);
        uint256 private _tTotal = 10000000000000 * 10**18;  //1,000,000,000,000
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private _name = 'Akita Cakes';
        string private _symbol = 'ACakes';
        uint8 private _decimals = 18;
        
        // Tax and charity fees will start at 0 so we don't have a big impact when deploying to Uniswap
        // Charity wallet address is null but the method to set the address is exposed
        uint256 private _taxFee = 10; 
        uint256 private _charityFee = 10;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousCharityFee = _charityFee;

        address payable public _charityWalletAddress;
        address payable public _marketingWalletAddress;
        
        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

        uint256 public _maxTxAmount = _tTotal; //no max tx limit
        uint256 private _numOfTokensToExchangeForCharity = 5000000 * 10**18;

        event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
        event SwapEnabledUpdated(bool enabled);

        modifier lockTheSwap {
            inSwap = true;
            _;
            inSwap = false;
        }

        constructor (address payable charityWalletAddress, address payable marketingWalletAddress) public {
            _charityWalletAddress = charityWalletAddress;
            _marketingWalletAddress = marketingWalletAddress;
            _rOwned[_msgSender()] = _rTotal;

            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
            // Create a uniswap pair 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;
            
            _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
            _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));
    
            _isBlackListedBot[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true;
            _blackListedBots.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345));
    
            _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
            _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b));
    
            _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true;
            _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95));
    
            _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true;
            _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964));
    
            _isBlackListedBot[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true;
            _blackListedBots.push(address(0xDC81a3450817A58D00f45C86d0368290088db848));
    
            _isBlackListedBot[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true;
            _blackListedBots.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881));
    
            _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
            _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));
            
            _isBlackListedBot[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true;
            _blackListedBots.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7));
            
            _isBlackListedBot[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true;
            _blackListedBots.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533));
            
            _isBlackListedBot[address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d)] = true;
            _blackListedBots.push(address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d));
            
            _isBlackListedBot[address(0x000000000000084e91743124a982076C59f10084)] = true;
            _blackListedBots.push(address(0x000000000000084e91743124a982076C59f10084));

            _isBlackListedBot[address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303)] = true;
            _blackListedBots.push(address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303));
            
            _isBlackListedBot[address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595)] = true;
            _blackListedBots.push(address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595));
            
            _isBlackListedBot[address(0x000000005804B22091aa9830E50459A15E7C9241)] = true;
            _blackListedBots.push(address(0x000000005804B22091aa9830E50459A15E7C9241));
            
            _isBlackListedBot[address(0xA3b0e79935815730d942A444A84d4Bd14A339553)] = true;
            _blackListedBots.push(address(0xA3b0e79935815730d942A444A84d4Bd14A339553));
            
            _isBlackListedBot[address(0xf6da21E95D74767009acCB145b96897aC3630BaD)] = true;
            _blackListedBots.push(address(0xf6da21E95D74767009acCB145b96897aC3630BaD));
            
            _isBlackListedBot[address(0x0000000000007673393729D5618DC555FD13f9aA)] = true;
            _blackListedBots.push(address(0x0000000000007673393729D5618DC555FD13f9aA));
            
            _isBlackListedBot[address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1)] = true;
            _blackListedBots.push(address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1));
            
            _isBlackListedBot[address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6)] = true;
            _blackListedBots.push(address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6));
            
            _isBlackListedBot[address(0x000000917de6037d52b1F0a306eeCD208405f7cd)] = true;
            _blackListedBots.push(address(0x000000917de6037d52b1F0a306eeCD208405f7cd));
            
            _isBlackListedBot[address(0x7100e690554B1c2FD01E8648db88bE235C1E6514)] = true;
            _blackListedBots.push(address(0x7100e690554B1c2FD01E8648db88bE235C1E6514));
            
            _isBlackListedBot[address(0x72b30cDc1583224381132D379A052A6B10725415)] = true;
            _blackListedBots.push(address(0x72b30cDc1583224381132D379A052A6B10725415));
            
            _isBlackListedBot[address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE)] = true;
            _blackListedBots.push(address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE));

            _isBlackListedBot[address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)] = true;
            _blackListedBots.push(address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F));
            
            _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
            _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));
            
            _isBlackListedBot[address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9)] = true;
            _blackListedBots.push(address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9));

            _isBlackListedBot[address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7)] = true;
            _blackListedBots.push(address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7));

            _isBlackListedBot[address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF)] = true;
            _blackListedBots.push(address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF));

            _isBlackListedBot[address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290)] = true;
            _blackListedBots.push(address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290));
            
            _isBlackListedBot[address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)] = true;
            _blackListedBots.push(address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5));
            
            _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
            _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));
            
            _isBlackListedBot[address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7)] = true;
            _blackListedBots.push(address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7));
            
            
            emit Transfer(address(0), _msgSender(), _tTotal);
        }

        function name() public view returns (string memory) {
            return _name;
        }

        function symbol() public view returns (string memory) {
            return _symbol;
        }

        function decimals() public view returns (uint8) {
            return _decimals;
        }

        function totalSupply() public view override returns (uint256) {
            return _tTotal;
        }

        function balanceOf(address account) public view override returns (uint256) {
            if (_isExcluded[account]) return _tOwned[account];
            return tokenFromReflection(_rOwned[account]);
        }

        function transfer(address recipient, uint256 amount) public override returns (bool) {
            _transfer(_msgSender(), recipient, amount);
            return true;
        }

        function allowance(address owner, address spender) public view override returns (uint256) {
            return _allowances[owner][spender];
        }

        function approve(address spender, uint256 amount) public override returns (bool) {
            _approve(_msgSender(), spender, amount);
            return true;
        }

        function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
            _transfer(sender, recipient, amount);
            _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
            return true;
        }

        function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
            return true;
        }

        function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
            return true;
        }

        function isExcluded(address account) public view returns (bool) {
            return _isExcluded[account];
        }
        
        function isBlackListed(address account) public view returns (bool) {
            return _isBlackListedBot[account];
        }

        function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
            _isExcludedFromFee[account] = excluded;
        }

        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 excludeAccount(address account) external onlyOwner() {
            require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
            require(!_isExcluded[account], "Account is already excluded");
            if(_rOwned[account] > 0) {
                _tOwned[account] = tokenFromReflection(_rOwned[account]);
            }
            _isExcluded[account] = true;
            _excluded.push(account);
        }

        function includeAccount(address account) external onlyOwner() {
            require(_isExcluded[account], "Account is already excluded");
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_excluded[i] == account) {
                    _excluded[i] = _excluded[_excluded.length - 1];
                    _tOwned[account] = 0;
                    _isExcluded[account] = false;
                    _excluded.pop();
                    break;
                }
            }
        }
        
        function addBotToBlackList(address account) external onlyOwner() {
            require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
            require(!_isBlackListedBot[account], "Account is already blacklisted");
            _isBlackListedBot[account] = true;
            _blackListedBots.push(account);
        }
    
        function removeBotFromBlackList(address account) external onlyOwner() {
            require(_isBlackListedBot[account], "Account is not blacklisted");
            for (uint256 i = 0; i < _blackListedBots.length; i++) {
                if (_blackListedBots[i] == account) {
                    _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                    _isBlackListedBot[account] = false;
                    _blackListedBots.pop();
                    break;
                }
            }
        }

        function removeAllFee() private {
            if(_taxFee == 0 && _charityFee == 0) return;
            
            _previousTaxFee = _taxFee;
            _previousCharityFee = _charityFee;
            
            _taxFee = 0;
            _charityFee = 0;
        }
    
        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _charityFee = _previousCharityFee;
        }
    
        function isExcludedFromFee(address account) public view returns(bool) {
            return _isExcludedFromFee[account];
        }
        
            function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
        }

        function _approve(address owner, address spender, uint256 amount) private {
            require(owner != address(0), "ERC20: approve from the zero address");
            require(spender != address(0), "ERC20: approve to the zero address");

            _allowances[owner][spender] = amount;
            emit Approval(owner, spender, amount);
        }

        function _transfer(address sender, address recipient, uint256 amount) private {
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
            require(amount > 0, "Transfer amount must be greater than zero");
            require(!_isBlackListedBot[recipient], "You have no power here!");
            require(!_isBlackListedBot[msg.sender], "You have no power here!");
            
            if(sender != owner() && recipient != 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?
            // also, don't get caught in a circular charity event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));
            
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }
            
            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForCharity;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // We need to swap the current tokens to ETH and send to the charity wallet
                swapTokensForEth(contractTokenBalance);
                
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToCharity(address(this).balance);
                }
            }
            
            //indicates if fee should be deducted from transfer
            bool takeFee = true;
            
            //if any account belongs to _isExcludedFromFee account then remove the fee
            if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
                takeFee = false;
            }
            
            //transfer amount, it will take tax and charity fee
            _tokenTransfer(sender,recipient,amount,takeFee);
        }

        function swapTokensForEth(uint256 tokenAmount) private lockTheSwap{
            // 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 sendETHToCharity(uint256 amount) private {
            _charityWalletAddress.transfer(amount.div(2));
            _marketingWalletAddress.transfer(amount.div(2));
        }
        
        // We are exposing these functions to be able to manual swap and send
        // in case the token is highly valued and 5M becomes too much
        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }
        
        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHToCharity(contractETHBalance);
        }

        function setSwapEnabled(bool enabled) external onlyOwner(){
            swapEnabled = enabled;
        }
        
        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 tCharity) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); 
            _takeCharity(tCharity); 
            _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 tCharity) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);    
            _takeCharity(tCharity);           
            _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 tCharity) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); 
            _takeCharity(tCharity);   
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tCharity) = _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);   
            _takeCharity(tCharity);         
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _takeCharity(uint256 tCharity) private {
            uint256 currentRate =  _getRate();
            uint256 rCharity = tCharity.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rCharity);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tCharity);
        }

        function _reflectFee(uint256 rFee, uint256 tFee) private {
            _rTotal = _rTotal.sub(rFee);
            _tFeeTotal = _tFeeTotal.add(tFee);
        }

         //to recieve ETH from uniswapV2Router when swaping
        receive() external payable {}

        function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
            (uint256 tTransferAmount, uint256 tFee, uint256 tCharity) = _getTValues(tAmount, _taxFee, _charityFee);
            uint256 currentRate =  _getRate();
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
            return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tCharity);
        }

        function _getTValues(uint256 tAmount, uint256 taxFee, uint256 charityFee) private pure returns (uint256, uint256, uint256) {
            uint256 tFee = tAmount.mul(taxFee).div(100);
            uint256 tCharity = tAmount.mul(charityFee).div(100);
            uint256 tTransferAmount = tAmount.sub(tFee).sub(tCharity);
            return (tTransferAmount, tFee, tCharity);
        }

        function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
            uint256 rAmount = tAmount.mul(currentRate);
            uint256 rFee = tFee.mul(currentRate);
            uint256 rTransferAmount = rAmount.sub(rFee);
            return (rAmount, rTransferAmount, rFee);
        }

        function _getRate() private view returns(uint256) {
            (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
            return rSupply.div(tSupply);
        }

        function _getCurrentSupply() private view returns(uint256, uint256) {
            uint256 rSupply = _rTotal;
            uint256 tSupply = _tTotal;      
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
                rSupply = rSupply.sub(_rOwned[_excluded[i]]);
                tSupply = tSupply.sub(_tOwned[_excluded[i]]);
            }
            if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
            return (rSupply, tSupply);
        }
        
        function _getTaxFee() private view returns(uint256) {
            return _taxFee;
        }

        function _getMaxTxAmount() private view returns(uint256) {
            return _maxTxAmount;
        }

        function _getETHBalance() public view returns(uint256 balance) {
            return address(this).balance;
        }
        
        function _setTaxFee(uint256 taxFee) external onlyOwner() {
            require(taxFee >= 1 && taxFee <= 10, 'taxFee should be in 1 - 10');
            _taxFee = taxFee;
        }

        function _setCharityFee(uint256 charityFee) external onlyOwner() {
            require(charityFee >= 1 && charityFee <= 11, 'charityFee should be in 1 - 11');
            _charityFee = charityFee;
        }
        
        function _setCharityWallet(address payable charityWalletAddress) external onlyOwner() {
            _charityWalletAddress = charityWalletAddress;
        }
        
        
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"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":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_charityWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"charityFee","type":"uint256"}],"name":"_setCharityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"}],"name":"_setCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","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":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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":"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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6c7e37be2022c0914b2680000000600b9081556c4731a537a12d1f2952ffffffff19600c5561010060405260c08190526a416b6974612043616b657360a81b60e09081526200005291600e919062000e20565b50604080518082019091526006808252654143616b657360d01b60209092019182526200008291600f9162000e20565b506010805460ff19166012908117909155600a60118190559081905560138190556014556016805461ffff60a01b1916600160a81b179055600b546017556a0422ca8b0a00a425000000601855348015620000dc57600080fd5b5060405162003f6b38038062003f6b833981810160405260408110156200010257600080fd5b50805160209091015160006200011762000e0d565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601580546001600160a01b038085166001600160a01b0319928316179092556016805492841692909116919091179055600c5460036000620001a262000e0d565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021957600080fd5b505afa1580156200022e573d6000803e3d6000fd5b505050506040513d60208110156200024557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200029657600080fd5b505afa158015620002ab573d6000803e3d6000fd5b505050506040513d6020811015620002c257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200031557600080fd5b505af11580156200032a573d6000803e3d6000fd5b505050506040513d60208110156200034157600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200036e62000e11565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006835290812080548416600190811790915560099092527f1f039d7054c60544da001ada2885c2098966bf59108af37aa0047e53180c227d8054841683179055600a805480840182557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890810180546001600160a01b031990811673e031b36b53e53a292a20c5f08fd1658cddf74fce179091557ff4b93d2837107f43e5b3215c8cfd55bc8f0ec1fef4e888737a6685e72730fd0e80548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f404b5b762e8059f6055e90a7bf5e88e1e2f628911a8da7857df40bf26352e21280548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557fd06f72f8dd06466bcc52a7fc6bddce65222c1efb674ce288f26d72607f32c02680548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557fb180cbdf50fc8306102fae658ae8eddf6673addd522d5a575c2b6924f832977480548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557fd74310044b3dfbf8c3bb19b279a8662cf43f021fe4e68d5726f62fc6b584af7980548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557f72b3a1de74eb1a0841083ea090998865c5194ff1fc7be394ec133e28cacbdd9d8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557f82951a08c86bbc382122443ed556bc8073b7e0bdf3bbfb811f503389aad35bfc8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557f3ee2bfab112ce489483443731da982ac406a17d09137224e74d494a6037142ad805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557fb7baecc9aa863a1182bccd59d3b8aaee484658aee9400a94283dad2dbafd9d1d80548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557fac880b0698f6a24b725a531b87fe801fab0b12d27bd162739065e7572f5404d9805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557f6ef6d708eb37b8bda6da62f8191bcb1b8f30d7bf24789d111afaa48e2abcfa788054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557fd73d5f8f968995abf730ad6b9b8e37da64ea9c3ba0bbce58d3bab4147a285736805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f78985dca206f219a6b3560fdc7a11aef1d23931d984660a7cdae9bbf47c0d96580548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557f0cfa4edf9477e1d54a3587993034fa6573860afb2e4b0a115c4c484a9a330a428054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557fd6b7d69e6a823375dcf433a269665ea33193c6767d33bd6b4df5811fa6e1c82c80548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557f13992d03d159acc9a62957c120a113863deff202e489fa07518ad14e9a3c180780548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557f9531ce70ac5d2bbefb64276f65d45e190dc5cb49d659eae0ae43c2307446dc538054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557ff5ad3fffe9a691dce1e4a825d1e8152a24d541272410b219bc6d31e16fa5f9be8054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557f5888754549269951f658dc38abd8b5f599e7f578f09c1c082ddee052681ef5aa8054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557f69b77005f9173f1fd98e76d50566ec8d29499be8f194d19d204baecdcc85d76280548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557f4f79f1067e9d05cffa01ea21e2293206a7d7e21e1204a7a91ce5038960641699805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557ff5949e903094d0c003182832401f2f1e7e902a7afa53a9b4fc91227edcb81c2c8054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557ff3e918d4ba10715278cdbb619ad598c0463cbe5d7f5f568a2fb54f232047d9a9805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557fab5495752a9187414227aebaa8b39a4bffdb32802987cba6aff3f20498292a7180548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557ff248d283b19d8012b3a5799c17555d9562b55bb7f8a9573294b68b31e40bc2e08054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557f63fa2d6ca420f9a726a126cd4ecb6c1cc9a862c11b8b23634e14766ea0a5830c80548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557f942ebcb2565846ab429e313119fc37882c100e43cc02a57b5525c115ad4f72998054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557f5af94c70cd57260eec3231b2f06ace7b65cdeb3d90a0722d811f34a9c53f613480548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557f2418a7599ba98f17273e05153250af4e64021166f87000ebb8faf0b96cdbcc54805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557f11c8caefcbc9afecd5b2153811f415fe306a1f3884466a0ddf30ba3939464b1e80548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557ff39ac1e13c447fb096f87169ad2be19cda4b1a700a885a7d267b0c86db6dd64e80549096168517909555815493840182559152018054909116735b83a351500b631cc2a20a665ee17f0dc66e3db717905562000db762000e0d565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a350505062000ebc565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000e6357805160ff191683800117855562000e93565b8280016001018555821562000e93579182015b8281111562000e9357825182559160200191906001019062000e76565b5062000ea192915062000ea5565b5090565b5b8082111562000ea1576000815560010162000ea6565b60805160601c60a05160601c61307162000efa60003980610ed352806120cd525080610a6652806123df528061249752806124be52506130716000f3fe6080604052600436106102605760003560e01c80637d1db4a511610144578063d047e4b7116100b6578063e47d60601161007a578063e47d6060146108b4578063f2cc0c18146108e7578063f2fde38b1461091a578063f42938901461094d578063f815a84214610962578063f84354f11461097757610267565b8063d047e4b7146107c6578063d543dbeb146107f9578063dd46706414610823578063dd62ed3e1461084d578063e01af92c1461088857610267565b8063a457c2d711610108578063a457c2d7146106bc578063a69df4b5146106f5578063a9059cbb1461070a578063af9549e014610743578063b6c523241461077e578063cba0e9961461079357610267565b80637d1db4a5146106205780637ded4d6a146106355780638da5cb5b1461066857806395d89b411461067d578063a24a8d0f1461069257610267565b80634144d9e4116101dd5780635342acb4116101a15780635342acb4146105515780635880b873146105845780636ddd1713146105ae57806370a08231146105c3578063715018a6146105f657806376d4ab991461060b57610267565b80634144d9e4146104ad5780634303443d146104c25780634549b039146104f557806349bd5a5e1461052757806351bc3c851461053c57610267565b806323b872dd1161022457806323b872dd146103b05780632d838119146103f3578063313ce5671461041d57806339509351146104485780633bd5d1731461048157610267565b806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435780631694505e1461036a57806318160ddd1461039b57610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109aa565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a40565b604080519115158252519081900360200190f35b34801561034f57600080fd5b50610358610a5e565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610a64565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a88565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a8e565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610b15565b34801561042957600080fd5b50610432610b77565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061032f6004803603604081101561046b57600080fd5b506001600160a01b038135169060200135610b80565b34801561048d57600080fd5b506104ab600480360360208110156104a457600080fd5b5035610bce565b005b3480156104b957600080fd5b5061037f610ca8565b3480156104ce57600080fd5b506104ab600480360360208110156104e557600080fd5b50356001600160a01b0316610cb7565b34801561050157600080fd5b506103586004803603604081101561051857600080fd5b50803590602001351515610e3f565b34801561053357600080fd5b5061037f610ed1565b34801561054857600080fd5b506104ab610ef5565b34801561055d57600080fd5b5061032f6004803603602081101561057457600080fd5b50356001600160a01b0316610f66565b34801561059057600080fd5b506104ab600480360360208110156105a757600080fd5b5035610f84565b3480156105ba57600080fd5b5061032f611044565b3480156105cf57600080fd5b50610358600480360360208110156105e657600080fd5b50356001600160a01b0316611054565b34801561060257600080fd5b506104ab6110b6565b34801561061757600080fd5b5061037f611146565b34801561062c57600080fd5b50610358611155565b34801561064157600080fd5b506104ab6004803603602081101561065857600080fd5b50356001600160a01b031661115b565b34801561067457600080fd5b5061037f611313565b34801561068957600080fd5b50610281611322565b34801561069e57600080fd5b506104ab600480360360208110156106b557600080fd5b5035611383565b3480156106c857600080fd5b5061032f600480360360408110156106df57600080fd5b506001600160a01b038135169060200135611443565b34801561070157600080fd5b506104ab6114ab565b34801561071657600080fd5b5061032f6004803603604081101561072d57600080fd5b506001600160a01b038135169060200135611599565b34801561074f57600080fd5b506104ab6004803603604081101561076657600080fd5b506001600160a01b03813516906020013515156115ad565b34801561078a57600080fd5b50610358611630565b34801561079f57600080fd5b5061032f600480360360208110156107b657600080fd5b50356001600160a01b0316611636565b3480156107d257600080fd5b506104ab600480360360208110156107e957600080fd5b50356001600160a01b0316611654565b34801561080557600080fd5b506104ab6004803603602081101561081c57600080fd5b50356116ce565b34801561082f57600080fd5b506104ab6004803603602081101561084657600080fd5b503561174c565b34801561085957600080fd5b506103586004803603604081101561087057600080fd5b506001600160a01b03813581169160200135166117ea565b34801561089457600080fd5b506104ab600480360360208110156108ab57600080fd5b50351515611815565b3480156108c057600080fd5b5061032f600480360360208110156108d757600080fd5b50356001600160a01b031661188b565b3480156108f357600080fd5b506104ab6004803603602081101561090a57600080fd5b50356001600160a01b03166118a9565b34801561092657600080fd5b506104ab6004803603602081101561093d57600080fd5b50356001600160a01b0316611a8b565b34801561095957600080fd5b506104ab611b71565b34801561096e57600080fd5b50610358611bd3565b34801561098357600080fd5b506104ab6004803603602081101561099a57600080fd5b50356001600160a01b0316611bd7565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b820191906000526020600020905b815481529060010190602001808311610a1957829003601f168201915b5050505050905090565b6000610a54610a4d611d6d565b8484611d71565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b6000610a9b848484611e5d565b610b0b84610aa7611d6d565b610b0685604051806060016040528060288152602001612ea8602891396001600160a01b038a16600090815260056020526040812090610ae5611d6d565b6001600160a01b031681526020810191909152604001600020549190612181565b611d71565b5060019392505050565b6000600c54821115610b585760405162461bcd60e51b815260040180806020018281038252602a815260200180612ded602a913960400191505060405180910390fd5b6000610b62612218565b9050610b6e838261223b565b9150505b919050565b60105460ff1690565b6000610a54610b8d611d6d565b84610b068560056000610b9e611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612284565b6000610bd8611d6d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610c335760405162461bcd60e51b815260040180806020018281038252602c815260200180612fc8602c913960400191505060405180910390fd5b6000610c3e836122de565b505050506001600160a01b038416600090815260036020526040902054919250610c6a9190508261233a565b6001600160a01b038316600090815260036020526040902055600c54610c90908261233a565b600c55600d54610ca09084612284565b600d55505050565b6016546001600160a01b031681565b610cbf611d6d565b6000546001600160a01b03908116911614610d0f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d6b5760405162461bcd60e51b8152600401808060200182810382526024815260200180612f396024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610dd9576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b54831115610e98576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610eb7576000610ea8846122de565b50939550610a58945050505050565b6000610ec2846122de565b50929550610a58945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610efd611d6d565b6000546001600160a01b03908116911614610f4d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6000610f5830611054565b9050610f638161237c565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610f8c611d6d565b6000546001600160a01b03908116911614610fdc576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60018110158015610fee5750600a8111155b61103f576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601155565b601654600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561109457506001600160a01b038116600090815260046020526040902054610b72565b6001600160a01b038216600090815260036020526040902054610a5890610b15565b6110be611d6d565b6000546001600160a01b0390811691161461110e576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612ef0833981519152908390a3600080546001600160a01b0319169055565b6015546001600160a01b031681565b60175481565b611163611d6d565b6000546001600160a01b039081169116146111b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611220576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a5481101561130f57816001600160a01b0316600a828154811061124457fe5b6000918252602090912001546001600160a01b0316141561130757600a8054600019810190811061127157fe5b600091825260209091200154600a80546001600160a01b03909216918390811061129757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a8054806112e057fe5b600082815260209020810160001990810180546001600160a01b031916905501905561130f565b600101611223565b5050565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b61138b611d6d565b6000546001600160a01b039081169116146113db576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600181101580156113ed5750600b8111155b61143e576040805162461bcd60e51b815260206004820152601e60248201527f636861726974794665652073686f756c6420626520696e2031202d2031310000604482015290519081900360640190fd5b601255565b6000610a54611450611d6d565b84610b0685604051806060016040528060258152602001613017602591396005600061147a611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612181565b6001546001600160a01b031633146114f45760405162461bcd60e51b8152600401808060200182810382526023815260200180612ff46023913960400191505060405180910390fd5b600254421161154a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612ef083398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a546115a6611d6d565b8484611e5d565b6115b5611d6d565b6000546001600160a01b03908116911614611605576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b61165c611d6d565b6000546001600160a01b039081169116146116ac576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6116d6611d6d565b6000546001600160a01b03908116911614611726576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b611746606461174083600b546125b390919063ffffffff16565b9061223b565b60175550565b611754611d6d565b6000546001600160a01b039081169116146117a4576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612ef0833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61181d611d6d565b6000546001600160a01b0390811691161461186d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60168054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b031660009081526009602052604090205460ff1690565b6118b1611d6d565b6000546001600160a01b03908116911614611901576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561195d5760405162461bcd60e51b8152600401808060200182810382526022815260200180612fa66022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156119cb576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611a25576001600160a01b038116600090815260036020526040902054611a0b90610b15565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b611a93611d6d565b6000546001600160a01b03908116911614611ae3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b038116611b285760405162461bcd60e51b8152600401808060200182810382526026815260200180612e176026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612ef083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611b79611d6d565b6000546001600160a01b03908116911614611bc9576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b47610f638161260c565b4790565b611bdf611d6d565b6000546001600160a01b03908116911614611c2f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611c9c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561130f57816001600160a01b031660088281548110611cc057fe5b6000918252602090912001546001600160a01b03161415611d6557600880546000198101908110611ced57fe5b600091825260209091200154600880546001600160a01b039092169183908110611d1357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff1916905560088054806112e057fe5b600101611c9f565b3390565b6001600160a01b038316611db65760405162461bcd60e51b8152600401808060200182810382526024815260200180612f826024913960400191505060405180910390fd5b6001600160a01b038216611dfb5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e3d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ea25760405162461bcd60e51b8152600401808060200182810382526025815260200180612f5d6025913960400191505060405180910390fd5b6001600160a01b038216611ee75760405162461bcd60e51b8152600401808060200182810382526023815260200180612dca6023913960400191505060405180910390fd5b60008111611f265760405162461bcd60e51b8152600401808060200182810382526029815260200180612f106029913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615611f8e576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fed576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611ff5611313565b6001600160a01b0316836001600160a01b03161415801561202f5750612019611313565b6001600160a01b0316826001600160a01b031614155b15612075576017548111156120755760405162461bcd60e51b8152600401808060200182810382526028815260200180612e5f6028913960400191505060405180910390fd5b600061208030611054565b9050601754811061209057506017545b6018546016549082101590600160a01b900460ff161580156120bb5750601654600160a81b900460ff165b80156120c45750805b801561210257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15612122576121108261237c565b478015612120576121204761260c565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061216457506001600160a01b03851660009081526006602052604090205460ff165b1561216d575060005b61217986868684612691565b505050505050565b600081848411156122105760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121d55781810151838201526020016121bd565b50505050905090810190601f1680156122025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612225612805565b9092509050612234828261223b565b9250505090565b600061227d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612968565b9392505050565b60008282018381101561227d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122fb8a6011546012546129cd565b925092509250600061230b612218565b9050600080600061231d8e8786612a1c565b919e509c509a509598509396509194505050505091939550919395565b600061227d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612181565b6016805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106123bd57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243657600080fd5b505afa15801561244a573d6000803e3d6000fd5b505050506040513d602081101561246057600080fd5b505181518290600190811061247157fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506124bc307f000000000000000000000000000000000000000000000000000000000000000084611d71565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612561578181015183820152602001612549565b505050509050019650505050505050600060405180830381600087803b15801561258a57600080fd5b505af115801561259e573d6000803e3d6000fd5b50506016805460ff60a01b1916905550505050565b6000826125c257506000610a58565b828202828482816125cf57fe5b041461227d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e876021913960400191505060405180910390fd5b6015546001600160a01b03166108fc61262683600261223b565b6040518115909202916000818181858888f1935050505015801561264e573d6000803e3d6000fd5b506016546001600160a01b03166108fc61266983600261223b565b6040518115909202916000818181858888f1935050505015801561130f573d6000803e3d6000fd5b8061269e5761269e612a58565b6001600160a01b03841660009081526007602052604090205460ff1680156126df57506001600160a01b03831660009081526007602052604090205460ff16155b156126f4576126ef848484612a8a565b6127f2565b6001600160a01b03841660009081526007602052604090205460ff1615801561273557506001600160a01b03831660009081526007602052604090205460ff165b15612745576126ef848484612bae565b6001600160a01b03841660009081526007602052604090205460ff1615801561278757506001600160a01b03831660009081526007602052604090205460ff16155b15612797576126ef848484612c57565b6001600160a01b03841660009081526007602052604090205460ff1680156127d757506001600160a01b03831660009081526007602052604090205460ff165b156127e7576126ef848484612c9b565b6127f2848484612c57565b806127ff576127ff612d0e565b50505050565b600c54600b546000918291825b6008548110156129365782600360006008848154811061282e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612893575081600460006008848154811061286c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128aa57600c54600b5494509450505050612964565b6128ea60036000600884815481106128be57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061233a565b925061292c600460006008848154811061290057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061233a565b9150600101612812565b50600b54600c546129469161223b565b82101561295e57600c54600b54935093505050612964565b90925090505b9091565b600081836129b75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121d55781810151838201526020016121bd565b5060008385816129c357fe5b0495945050505050565b60008080806129e1606461174089896125b3565b905060006129f460646117408a896125b3565b90506000612a0c82612a068b8661233a565b9061233a565b9992985090965090945050505050565b6000808080612a2b87866125b3565b90506000612a3987876125b3565b90506000612a47838361233a565b929992985090965090945050505050565b601154158015612a685750601254155b15612a7257612a88565b6011805460135560128054601455600091829055555b565b600080600080600080612a9c876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ace908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612afd908761233a565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b2c9086612284565b6001600160a01b038916600090815260036020526040902055612b4e81612d1c565b612b588483612da5565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612bc0876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612bf2908761233a565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c289084612284565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b2c9086612284565b600080600080600080612c69876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612afd908761233a565b600080600080600080612cad876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612cdf908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612bf2908761233a565b601354601155601454601255565b6000612d26612218565b90506000612d3483836125b3565b30600090815260036020526040902054909150612d519082612284565b3060009081526003602090815260408083209390935560079052205460ff1615612da05730600090815260046020526040902054612d8f9084612284565b306000908152600460205260409020555b505050565b600c54612db2908361233a565b600c55600d54612dc29082612284565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220985bd68aeca3d192b67ddd8c99f77bea9ecfdef8a48b6aebcca2ce22b714865364736f6c634300060c0033000000000000000000000000d90a4b26c95c6a2b550e8c948cbd9c9e02b0c6e90000000000000000000000008f1eed765131699d1eb450e122a97ab4d901ad79

Deployed Bytecode

0x6080604052600436106102605760003560e01c80637d1db4a511610144578063d047e4b7116100b6578063e47d60601161007a578063e47d6060146108b4578063f2cc0c18146108e7578063f2fde38b1461091a578063f42938901461094d578063f815a84214610962578063f84354f11461097757610267565b8063d047e4b7146107c6578063d543dbeb146107f9578063dd46706414610823578063dd62ed3e1461084d578063e01af92c1461088857610267565b8063a457c2d711610108578063a457c2d7146106bc578063a69df4b5146106f5578063a9059cbb1461070a578063af9549e014610743578063b6c523241461077e578063cba0e9961461079357610267565b80637d1db4a5146106205780637ded4d6a146106355780638da5cb5b1461066857806395d89b411461067d578063a24a8d0f1461069257610267565b80634144d9e4116101dd5780635342acb4116101a15780635342acb4146105515780635880b873146105845780636ddd1713146105ae57806370a08231146105c3578063715018a6146105f657806376d4ab991461060b57610267565b80634144d9e4146104ad5780634303443d146104c25780634549b039146104f557806349bd5a5e1461052757806351bc3c851461053c57610267565b806323b872dd1161022457806323b872dd146103b05780632d838119146103f3578063313ce5671461041d57806339509351146104485780633bd5d1731461048157610267565b806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435780631694505e1461036a57806318160ddd1461039b57610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109aa565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a40565b604080519115158252519081900360200190f35b34801561034f57600080fd5b50610358610a5e565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610a64565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a88565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a8e565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610b15565b34801561042957600080fd5b50610432610b77565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061032f6004803603604081101561046b57600080fd5b506001600160a01b038135169060200135610b80565b34801561048d57600080fd5b506104ab600480360360208110156104a457600080fd5b5035610bce565b005b3480156104b957600080fd5b5061037f610ca8565b3480156104ce57600080fd5b506104ab600480360360208110156104e557600080fd5b50356001600160a01b0316610cb7565b34801561050157600080fd5b506103586004803603604081101561051857600080fd5b50803590602001351515610e3f565b34801561053357600080fd5b5061037f610ed1565b34801561054857600080fd5b506104ab610ef5565b34801561055d57600080fd5b5061032f6004803603602081101561057457600080fd5b50356001600160a01b0316610f66565b34801561059057600080fd5b506104ab600480360360208110156105a757600080fd5b5035610f84565b3480156105ba57600080fd5b5061032f611044565b3480156105cf57600080fd5b50610358600480360360208110156105e657600080fd5b50356001600160a01b0316611054565b34801561060257600080fd5b506104ab6110b6565b34801561061757600080fd5b5061037f611146565b34801561062c57600080fd5b50610358611155565b34801561064157600080fd5b506104ab6004803603602081101561065857600080fd5b50356001600160a01b031661115b565b34801561067457600080fd5b5061037f611313565b34801561068957600080fd5b50610281611322565b34801561069e57600080fd5b506104ab600480360360208110156106b557600080fd5b5035611383565b3480156106c857600080fd5b5061032f600480360360408110156106df57600080fd5b506001600160a01b038135169060200135611443565b34801561070157600080fd5b506104ab6114ab565b34801561071657600080fd5b5061032f6004803603604081101561072d57600080fd5b506001600160a01b038135169060200135611599565b34801561074f57600080fd5b506104ab6004803603604081101561076657600080fd5b506001600160a01b03813516906020013515156115ad565b34801561078a57600080fd5b50610358611630565b34801561079f57600080fd5b5061032f600480360360208110156107b657600080fd5b50356001600160a01b0316611636565b3480156107d257600080fd5b506104ab600480360360208110156107e957600080fd5b50356001600160a01b0316611654565b34801561080557600080fd5b506104ab6004803603602081101561081c57600080fd5b50356116ce565b34801561082f57600080fd5b506104ab6004803603602081101561084657600080fd5b503561174c565b34801561085957600080fd5b506103586004803603604081101561087057600080fd5b506001600160a01b03813581169160200135166117ea565b34801561089457600080fd5b506104ab600480360360208110156108ab57600080fd5b50351515611815565b3480156108c057600080fd5b5061032f600480360360208110156108d757600080fd5b50356001600160a01b031661188b565b3480156108f357600080fd5b506104ab6004803603602081101561090a57600080fd5b50356001600160a01b03166118a9565b34801561092657600080fd5b506104ab6004803603602081101561093d57600080fd5b50356001600160a01b0316611a8b565b34801561095957600080fd5b506104ab611b71565b34801561096e57600080fd5b50610358611bd3565b34801561098357600080fd5b506104ab6004803603602081101561099a57600080fd5b50356001600160a01b0316611bd7565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b820191906000526020600020905b815481529060010190602001808311610a1957829003601f168201915b5050505050905090565b6000610a54610a4d611d6d565b8484611d71565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b6000610a9b848484611e5d565b610b0b84610aa7611d6d565b610b0685604051806060016040528060288152602001612ea8602891396001600160a01b038a16600090815260056020526040812090610ae5611d6d565b6001600160a01b031681526020810191909152604001600020549190612181565b611d71565b5060019392505050565b6000600c54821115610b585760405162461bcd60e51b815260040180806020018281038252602a815260200180612ded602a913960400191505060405180910390fd5b6000610b62612218565b9050610b6e838261223b565b9150505b919050565b60105460ff1690565b6000610a54610b8d611d6d565b84610b068560056000610b9e611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612284565b6000610bd8611d6d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610c335760405162461bcd60e51b815260040180806020018281038252602c815260200180612fc8602c913960400191505060405180910390fd5b6000610c3e836122de565b505050506001600160a01b038416600090815260036020526040902054919250610c6a9190508261233a565b6001600160a01b038316600090815260036020526040902055600c54610c90908261233a565b600c55600d54610ca09084612284565b600d55505050565b6016546001600160a01b031681565b610cbf611d6d565b6000546001600160a01b03908116911614610d0f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d6b5760405162461bcd60e51b8152600401808060200182810382526024815260200180612f396024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610dd9576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b54831115610e98576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610eb7576000610ea8846122de565b50939550610a58945050505050565b6000610ec2846122de565b50929550610a58945050505050565b7f000000000000000000000000a4bde808fc243152a10131aeafe329a4296fd46d81565b610efd611d6d565b6000546001600160a01b03908116911614610f4d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6000610f5830611054565b9050610f638161237c565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610f8c611d6d565b6000546001600160a01b03908116911614610fdc576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60018110158015610fee5750600a8111155b61103f576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601155565b601654600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561109457506001600160a01b038116600090815260046020526040902054610b72565b6001600160a01b038216600090815260036020526040902054610a5890610b15565b6110be611d6d565b6000546001600160a01b0390811691161461110e576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612ef0833981519152908390a3600080546001600160a01b0319169055565b6015546001600160a01b031681565b60175481565b611163611d6d565b6000546001600160a01b039081169116146111b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611220576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a5481101561130f57816001600160a01b0316600a828154811061124457fe5b6000918252602090912001546001600160a01b0316141561130757600a8054600019810190811061127157fe5b600091825260209091200154600a80546001600160a01b03909216918390811061129757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a8054806112e057fe5b600082815260209020810160001990810180546001600160a01b031916905501905561130f565b600101611223565b5050565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b61138b611d6d565b6000546001600160a01b039081169116146113db576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600181101580156113ed5750600b8111155b61143e576040805162461bcd60e51b815260206004820152601e60248201527f636861726974794665652073686f756c6420626520696e2031202d2031310000604482015290519081900360640190fd5b601255565b6000610a54611450611d6d565b84610b0685604051806060016040528060258152602001613017602591396005600061147a611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612181565b6001546001600160a01b031633146114f45760405162461bcd60e51b8152600401808060200182810382526023815260200180612ff46023913960400191505060405180910390fd5b600254421161154a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612ef083398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a546115a6611d6d565b8484611e5d565b6115b5611d6d565b6000546001600160a01b03908116911614611605576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b61165c611d6d565b6000546001600160a01b039081169116146116ac576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6116d6611d6d565b6000546001600160a01b03908116911614611726576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b611746606461174083600b546125b390919063ffffffff16565b9061223b565b60175550565b611754611d6d565b6000546001600160a01b039081169116146117a4576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612ef0833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61181d611d6d565b6000546001600160a01b0390811691161461186d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60168054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b031660009081526009602052604090205460ff1690565b6118b1611d6d565b6000546001600160a01b03908116911614611901576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561195d5760405162461bcd60e51b8152600401808060200182810382526022815260200180612fa66022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156119cb576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611a25576001600160a01b038116600090815260036020526040902054611a0b90610b15565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b611a93611d6d565b6000546001600160a01b03908116911614611ae3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b038116611b285760405162461bcd60e51b8152600401808060200182810382526026815260200180612e176026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612ef083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611b79611d6d565b6000546001600160a01b03908116911614611bc9576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b47610f638161260c565b4790565b611bdf611d6d565b6000546001600160a01b03908116911614611c2f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611c9c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561130f57816001600160a01b031660088281548110611cc057fe5b6000918252602090912001546001600160a01b03161415611d6557600880546000198101908110611ced57fe5b600091825260209091200154600880546001600160a01b039092169183908110611d1357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff1916905560088054806112e057fe5b600101611c9f565b3390565b6001600160a01b038316611db65760405162461bcd60e51b8152600401808060200182810382526024815260200180612f826024913960400191505060405180910390fd5b6001600160a01b038216611dfb5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e3d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ea25760405162461bcd60e51b8152600401808060200182810382526025815260200180612f5d6025913960400191505060405180910390fd5b6001600160a01b038216611ee75760405162461bcd60e51b8152600401808060200182810382526023815260200180612dca6023913960400191505060405180910390fd5b60008111611f265760405162461bcd60e51b8152600401808060200182810382526029815260200180612f106029913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615611f8e576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fed576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611ff5611313565b6001600160a01b0316836001600160a01b03161415801561202f5750612019611313565b6001600160a01b0316826001600160a01b031614155b15612075576017548111156120755760405162461bcd60e51b8152600401808060200182810382526028815260200180612e5f6028913960400191505060405180910390fd5b600061208030611054565b9050601754811061209057506017545b6018546016549082101590600160a01b900460ff161580156120bb5750601654600160a81b900460ff165b80156120c45750805b801561210257507f000000000000000000000000a4bde808fc243152a10131aeafe329a4296fd46d6001600160a01b0316856001600160a01b031614155b15612122576121108261237c565b478015612120576121204761260c565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061216457506001600160a01b03851660009081526006602052604090205460ff165b1561216d575060005b61217986868684612691565b505050505050565b600081848411156122105760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121d55781810151838201526020016121bd565b50505050905090810190601f1680156122025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612225612805565b9092509050612234828261223b565b9250505090565b600061227d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612968565b9392505050565b60008282018381101561227d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122fb8a6011546012546129cd565b925092509250600061230b612218565b9050600080600061231d8e8786612a1c565b919e509c509a509598509396509194505050505091939550919395565b600061227d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612181565b6016805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106123bd57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243657600080fd5b505afa15801561244a573d6000803e3d6000fd5b505050506040513d602081101561246057600080fd5b505181518290600190811061247157fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506124bc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d71565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612561578181015183820152602001612549565b505050509050019650505050505050600060405180830381600087803b15801561258a57600080fd5b505af115801561259e573d6000803e3d6000fd5b50506016805460ff60a01b1916905550505050565b6000826125c257506000610a58565b828202828482816125cf57fe5b041461227d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e876021913960400191505060405180910390fd5b6015546001600160a01b03166108fc61262683600261223b565b6040518115909202916000818181858888f1935050505015801561264e573d6000803e3d6000fd5b506016546001600160a01b03166108fc61266983600261223b565b6040518115909202916000818181858888f1935050505015801561130f573d6000803e3d6000fd5b8061269e5761269e612a58565b6001600160a01b03841660009081526007602052604090205460ff1680156126df57506001600160a01b03831660009081526007602052604090205460ff16155b156126f4576126ef848484612a8a565b6127f2565b6001600160a01b03841660009081526007602052604090205460ff1615801561273557506001600160a01b03831660009081526007602052604090205460ff165b15612745576126ef848484612bae565b6001600160a01b03841660009081526007602052604090205460ff1615801561278757506001600160a01b03831660009081526007602052604090205460ff16155b15612797576126ef848484612c57565b6001600160a01b03841660009081526007602052604090205460ff1680156127d757506001600160a01b03831660009081526007602052604090205460ff165b156127e7576126ef848484612c9b565b6127f2848484612c57565b806127ff576127ff612d0e565b50505050565b600c54600b546000918291825b6008548110156129365782600360006008848154811061282e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612893575081600460006008848154811061286c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128aa57600c54600b5494509450505050612964565b6128ea60036000600884815481106128be57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061233a565b925061292c600460006008848154811061290057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061233a565b9150600101612812565b50600b54600c546129469161223b565b82101561295e57600c54600b54935093505050612964565b90925090505b9091565b600081836129b75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121d55781810151838201526020016121bd565b5060008385816129c357fe5b0495945050505050565b60008080806129e1606461174089896125b3565b905060006129f460646117408a896125b3565b90506000612a0c82612a068b8661233a565b9061233a565b9992985090965090945050505050565b6000808080612a2b87866125b3565b90506000612a3987876125b3565b90506000612a47838361233a565b929992985090965090945050505050565b601154158015612a685750601254155b15612a7257612a88565b6011805460135560128054601455600091829055555b565b600080600080600080612a9c876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ace908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612afd908761233a565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b2c9086612284565b6001600160a01b038916600090815260036020526040902055612b4e81612d1c565b612b588483612da5565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612bc0876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612bf2908761233a565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c289084612284565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b2c9086612284565b600080600080600080612c69876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612afd908761233a565b600080600080600080612cad876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612cdf908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612bf2908761233a565b601354601155601454601255565b6000612d26612218565b90506000612d3483836125b3565b30600090815260036020526040902054909150612d519082612284565b3060009081526003602090815260408083209390935560079052205460ff1615612da05730600090815260046020526040902054612d8f9084612284565b306000908152600460205260409020555b505050565b600c54612db2908361233a565b600c55600d54612dc29082612284565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220985bd68aeca3d192b67ddd8c99f77bea9ecfdef8a48b6aebcca2ce22b714865364736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000d90a4b26c95c6a2b550e8c948cbd9c9e02b0c6e90000000000000000000000008f1eed765131699d1eb450e122a97ab4d901ad79

-----Decoded View---------------
Arg [0] : charityWalletAddress (address): 0xd90A4B26c95c6a2B550E8C948cBd9c9e02B0C6e9
Arg [1] : marketingWalletAddress (address): 0x8f1eeD765131699D1EB450E122A97ab4D901ad79

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d90a4b26c95c6a2b550e8c948cbd9c9e02b0c6e9
Arg [1] : 0000000000000000000000008f1eed765131699d1eb450e122a97ab4d901ad79


Deployed Bytecode Sourcemap

26601:27087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35979:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36983:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36983:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38478:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28084:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28084:51:0;;;;;;;;;;;;;;36292:103;;;;;;;;;;;;;:::i;37168:329::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37168:329:0;;;;;;;;;;;;;;;;;:::i;39486:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39486:269:0;;:::i;36189:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37509:230;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37509:230:0;;;;;;;;:::i;38585:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38585:405:0;;:::i;:::-;;28017:46;;;;;;;;;;;;;:::i;40796:372::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40796:372:0;-1:-1:-1;;;;;40796:372:0;;:::i;39002:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39002:472:0;;;;;;;;;:::i;28146:38::-;;;;;;;;;;;;;:::i;46147:168::-;;;;;;;;;;;;;:::i;42175:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42175:131:0;-1:-1:-1;;;;;42175:131:0;;:::i;53082:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53082:181:0;;:::i;28227:30::-;;;;;;;;;;;;;:::i;36407:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36407:210:0;-1:-1:-1;;;;;36407:210:0;;:::i;16436:160::-;;;;;;;;;;;;;:::i;27962:44::-;;;;;;;;;;;;;:::i;28270:37::-;;;;;;;;;;;;;:::i;41184:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41184:540:0;-1:-1:-1;;;;;41184:540:0;;:::i;15734:87::-;;;;;;;;;;;;;:::i;36082:95::-;;;;;;;;;;;;;:::i;53275:209::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53275:209:0;;:::i;37751:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37751:281:0;;;;;;;;:::i;17543:313::-;;;;;;;;;;;;;:::i;36629:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36629:179:0;;;;;;;;:::i;38321:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38321:145:0;;;;;;;;;;:::i;17040:97::-;;;;;;;;;;;;;:::i;38044:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38044:118:0;-1:-1:-1;;;;;38044:118:0;;:::i;53504:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53504:157:0;-1:-1:-1;;;;;53504:157:0;;:::i;42330:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42330:166:0;;:::i;17221:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17221:234:0;;:::i;36820:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36820:151:0;;;;;;;;;;:::i;46518:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46518:106:0;;;;:::i;38182:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38182:127:0;-1:-1:-1;;;;;38182:127:0;;:::i;39767:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39767:475:0;-1:-1:-1;;;;;39767:475:0;;:::i;16768:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16768:260:0;-1:-1:-1;;;;;16768:260:0;;:::i;46335:171::-;;;;;;;;;;;;;:::i;52944:118::-;;;;;;;;;;;;;:::i;40254:522::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40254:522:0;-1:-1:-1;;;;;40254:522:0;;:::i;35979:91::-;36053:5;36046:12;;;;;;;;-1:-1:-1;;36046:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36016:13;;36046:12;;36053:5;;36046:12;;36053:5;36046:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35979:91;:::o;36983:173::-;37058:4;37079:39;37088:12;:10;:12::i;:::-;37102:7;37111:6;37079:8;:39::i;:::-;-1:-1:-1;37140:4:0;36983:173;;;;;:::o;38478:95::-;38551:10;;38478:95;:::o;28084:51::-;;;:::o;36292:103::-;36376:7;;36292:103;:::o;37168:329::-;37266:4;37287:36;37297:6;37305:9;37316:6;37287:9;:36::i;:::-;37338:121;37347:6;37355:12;:10;:12::i;:::-;37369:89;37407:6;37369:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37369:19:0;;;;;;:11;:19;;;;;;37389:12;:10;:12::i;:::-;-1:-1:-1;;;;;37369:33:0;;;;;;;;;;;;-1:-1:-1;37369:33:0;;;:89;:37;:89::i;:::-;37338:8;:121::i;:::-;-1:-1:-1;37481:4:0;37168:329;;;;;:::o;39486:269::-;39552:7;39595;;39584;:18;;39576:73;;;;-1:-1:-1;;;39576:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39664:19;39687:10;:8;:10::i;:::-;39664:33;-1:-1:-1;39719:24:0;:7;39664:33;39719:11;:24::i;:::-;39712:31;;;39486:269;;;;:::o;36189:91::-;36259:9;;;;36189:91;:::o;37509:230::-;37597:4;37618:83;37627:12;:10;:12::i;:::-;37641:7;37650:50;37689:10;37650:11;:25;37662:12;:10;:12::i;:::-;-1:-1:-1;;;;;37650:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37650:25:0;;;:34;;;;;;;;;;;:38;:50::i;38585:405::-;38641:14;38658:12;:10;:12::i;:::-;-1:-1:-1;;;;;38694:19:0;;;;;;:11;:19;;;;;;38641:29;;-1:-1:-1;38694:19:0;;38693:20;38685:77;;;;-1:-1:-1;;;38685:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38778:15;38802:19;38813:7;38802:10;:19::i;:::-;-1:-1:-1;;;;;;;;;38854:15:0;;;;;;:7;:15;;;;;;38777:44;;-1:-1:-1;38854:28:0;;:15;-1:-1:-1;38777:44:0;38854:19;:28::i;:::-;-1:-1:-1;;;;;38836:15:0;;;;;;:7;:15;;;;;:46;38907:7;;:20;;38919:7;38907:11;:20::i;:::-;38897:7;:30;38955:10;;:23;;38970:7;38955:14;:23::i;:::-;38942:10;:36;-1:-1:-1;;;38585:405:0:o;28017:46::-;;;-1:-1:-1;;;;;28017:46:0;;:::o;40796:372::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;40895:42:::1;-1:-1:-1::0;;;;;40884:53:0;::::1;;;40876:102;;;;-1:-1:-1::0;;;40876:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;41002:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;41001:27;40993:70;;;::::0;;-1:-1:-1;;;40993:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;41078:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;41078:33:0::1;41107:4;41078:33:::0;;::::1;::::0;;;41126:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;41126:30:0::1;::::0;;::::1;::::0;;40796:372::o;39002:472::-;39092:7;39135;;39124;:18;;39116:62;;;;;-1:-1:-1;;;39116:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39198:17;39193:270;;39237:15;39261:19;39272:7;39261:10;:19::i;:::-;-1:-1:-1;39236:44:0;;-1:-1:-1;39299:14:0;;-1:-1:-1;;;;;39299:14:0;39193:270;39356:23;39387:19;39398:7;39387:10;:19::i;:::-;-1:-1:-1;39354:52:0;;-1:-1:-1;39425:22:0;;-1:-1:-1;;;;;39425:22:0;28146:38;;;:::o;46147:168::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;46205:23:::1;46231:24;46249:4;46231:9;:24::i;:::-;46205:50;;46270:33;46287:15;46270:16;:33::i;:::-;16046:1;46147:168::o:0;42175:131::-;-1:-1:-1;;;;;42267:27:0;42239:4;42267:27;;;:18;:27;;;;;;;;;42175:131::o;53082:181::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;53172:1:::1;53162:6;:11;;:27;;;;;53187:2;53177:6;:12;;53162:27;53154:66;;;::::0;;-1:-1:-1;;;53154:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;53235:7;:16:::0;53082:181::o;28227:30::-;;;-1:-1:-1;;;28227:30:0;;;;;:::o;36407:210::-;-1:-1:-1;;;;;36501:20:0;;36473:7;36501:20;;;:11;:20;;;;;;;;36497:49;;;-1:-1:-1;;;;;;36530:16:0;;;;;;:7;:16;;;;;;36523:23;;36497:49;-1:-1:-1;;;;;36588:16:0;;;;;;:7;:16;;;;;;36568:37;;:19;:37::i;16436:160::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;16547:1:::1;16531:6:::0;;16510:40:::1;::::0;-1:-1:-1;;;;;16531:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16510:40:0;16547:1;;16510:40:::1;16582:1;16565:19:::0;;-1:-1:-1;;;;;;16565:19:0::1;::::0;;16436:160::o;27962:44::-;;;-1:-1:-1;;;;;27962:44:0;;:::o;28270:37::-;;;;:::o;41184:540::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41277:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;41269:65;;;::::0;;-1:-1:-1;;;41269:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41354:9;41349:364;41373:16;:23:::0;41369:27;::::1;41349:364;;;41449:7;-1:-1:-1::0;;;;;41426:30:0::1;:16;41443:1;41426:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;41426:19:0::1;:30;41422:276;;;41503:16;41520:23:::0;;-1:-1:-1;;41520:27:0;;;41503:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;41481:16:::1;:19:::0;;-1:-1:-1;;;;;41503:45:0;;::::1;::::0;41498:1;;41481:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;41481:67:0::1;-1:-1:-1::0;;;;;41481:67:0;;::::1;;::::0;;41571:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;41571:34:0::1;::::0;;41628:16:::1;:22:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;41628:22:0;;;;;-1:-1:-1;;;;;;41628:22:0::1;::::0;;;;;41673:5:::1;;41422:276;41398:3;;41349:364;;;;41184:540:::0;:::o;15734:87::-;15772:7;15803:6;-1:-1:-1;;;;;15803:6:0;15734:87;:::o;36082:95::-;36158:7;36151:14;;;;;;;;-1:-1:-1;;36151:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36121:13;;36151:14;;36158:7;;36151:14;;36158:7;36151:14;;;;;;;;;;;;;;;;;;;;;;;;53275:209;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;53377:1:::1;53363:10;:15;;:35;;;;;53396:2;53382:10;:16;;53363:35;53355:78;;;::::0;;-1:-1:-1;;;53355:78:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;53448:11;:24:::0;53275:209::o;37751:281::-;37844:4;37865:129;37874:12;:10;:12::i;:::-;37888:7;37897:96;37936:15;37897:96;;;;;;;;;;;;;;;;;:11;:25;37909:12;:10;:12::i;:::-;-1:-1:-1;;;;;37897:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37897:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17543:313::-;17599:14;;-1:-1:-1;;;;;17599:14:0;17617:10;17599:28;17591:76;;;;-1:-1:-1;;;17591:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17696:9;;17690:3;:15;17682:60;;;;;-1:-1:-1;;;17682:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17791:14;;;17783:6;;17762:44;;-1:-1:-1;;;;;17791:14:0;;;;17783:6;;;;-1:-1:-1;;;;;;;;;;;17762:44:0;;17830:14;;;17821:23;;-1:-1:-1;;;;;;17821:23:0;-1:-1:-1;;;;;17830:14:0;;;17821:23;;;;;;17543:313::o;36629:179::-;36707:4;36728:42;36738:12;:10;:12::i;:::-;36752:9;36763:6;36728:9;:42::i;38321:145::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38416:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;38416:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38321:145::o;17040:97::-;17116:9;;17040:97;:::o;38044:118::-;-1:-1:-1;;;;;38130:20:0;38102:4;38130:20;;;:11;:20;;;;;;;;;38044:118::o;53504:157::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;53605:21:::1;:44:::0;;-1:-1:-1;;;;;;53605:44:0::1;-1:-1:-1::0;;;;;53605:44:0;;;::::1;::::0;;;::::1;::::0;;53504:157::o;42330:166::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;42424:60:::1;42468:5;42424:25;42436:12;42424:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;42409:12;:75:::0;-1:-1:-1;42330:166:0:o;17221:234::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;17306:6:::1;::::0;;;17289:23;;-1:-1:-1;;;;;;17289:23:0;;::::1;-1:-1:-1::0;;;;;17306:6:0;::::1;17289:23;::::0;;;17327:19:::1;::::0;;17373:3:::1;:10:::0;::::1;17361:9;:22:::0;17403:40:::1;::::0;17306:6;;-1:-1:-1;;;;;;;;;;;17403:40:0;17306:6;;17403:40:::1;17221:234:::0;:::o;36820:151::-;-1:-1:-1;;;;;36932:18:0;;;36901:7;36932:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;36820:151::o;46518:106::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;46591:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;46591:21:0::1;-1:-1:-1::0;;;;46591:21:0;;::::1;::::0;;;::::1;::::0;;46518:106::o;38182:127::-;-1:-1:-1;;;;;38271:26:0;38243:4;38271:26;;;:17;:26;;;;;;;;;38182:127::o;39767:475::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;39863:42:::1;-1:-1:-1::0;;;;;39852:53:0;::::1;;;39844:100;;;;-1:-1:-1::0;;;39844:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;39968:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;39967:21;39959:61;;;::::0;;-1:-1:-1;;;39959:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40038:16:0;::::1;40057:1;40038:16:::0;;;:7:::1;:16;::::0;;;;;:20;40035:116:::1;;-1:-1:-1::0;;;;;40118:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;40098:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;40079:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;40035:116:::1;-1:-1:-1::0;;;;;40165:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;40165:27:0::1;40188:4;40165:27:::0;;::::1;::::0;;;40207:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;40207:23:0::1;::::0;;::::1;::::0;;39767:475::o;16768:260::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16861:22:0;::::1;16853:73;;;;-1:-1:-1::0;;;16853:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16967:6;::::0;;16946:38:::1;::::0;-1:-1:-1;;;;;16946:38:0;;::::1;::::0;16967:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16946:38:0;::::1;16999:6;:17:::0;;-1:-1:-1;;;;;;16999:17:0::1;-1:-1:-1::0;;;;;16999:17:0;;;::::1;::::0;;;::::1;::::0;;16768:260::o;46335:171::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;46422:21:::1;46458:36;46422:21:::0;46458:16:::1;:36::i;52944:118::-:0;53029:21;52944:118;:::o;40254:522::-;15982:12;:10;:12::i;:::-;15972:6;;-1:-1:-1;;;;;15972:6:0;;;:22;;;15964:67;;;;;-1:-1:-1;;;15964:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15964:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40339:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40331:60;;;::::0;;-1:-1:-1;;;40331:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40411:9;40406:359;40430:9;:16:::0;40426:20;::::1;40406:359;;;40492:7;-1:-1:-1::0;;;;;40476:23:0::1;:9;40486:1;40476:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;40476:12:0::1;:23;40472:278;;;40539:9;40549:16:::0;;-1:-1:-1;;40549:20:0;;;40539:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;40524:9:::1;:12:::0;;-1:-1:-1;;;;;40539:31:0;;::::1;::::0;40534:1;;40524:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;40524:46:0::1;-1:-1:-1::0;;;;;40524:46:0;;::::1;;::::0;;40593:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;40636:11:::1;:20:::0;;;;:28;;-1:-1:-1;;40636:28:0::1;::::0;;40687:9:::1;:15:::0;;;::::1;;;40472:278;40448:3;;40406:359;;191:114:::0;283:10;191:114;:::o;42508:357::-;-1:-1:-1;;;;;42605:19:0;;42597:68;;;;-1:-1:-1;;;42597:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42688:21:0;;42680:68;;;;-1:-1:-1;;;42680:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42765:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;42821:32;;;;;;;;;;;;;;;;;42508:357;;;:::o;42877:2228::-;-1:-1:-1;;;;;42978:20:0;;42970:70;;;;-1:-1:-1;;;42970:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43063:23:0;;43055:71;;;;-1:-1:-1;;;43055:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43158:1;43149:6;:10;43141:64;;;;-1:-1:-1;;;43141:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43229:28:0;;;;;;:17;:28;;;;;;;;43228:29;43220:65;;;;;-1:-1:-1;;;43220:65:0;;;;;;;;;;;;-1:-1:-1;;;43220:65:0;;;;;;;;;;;;;;;43327:10;43309:29;;;;:17;:29;;;;;;;;43308:30;43300:66;;;;;-1:-1:-1;;;43300:66:0;;;;;;;;;;;;-1:-1:-1;;;43300:66:0;;;;;;;;;;;;;;;43408:7;:5;:7::i;:::-;-1:-1:-1;;;;;43398:17:0;:6;-1:-1:-1;;;;;43398:17:0;;;:41;;;;;43432:7;:5;:7::i;:::-;-1:-1:-1;;;;;43419:20:0;:9;-1:-1:-1;;;;;43419:20:0;;;43398:41;43395:138;;;43476:12;;43466:6;:22;;43458:75;;;;-1:-1:-1;;;43458:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43819:28;43850:24;43868:4;43850:9;:24::i;:::-;43819:55;;43930:12;;43906:20;:36;43903:124;;-1:-1:-1;43999:12:0;;43903:124;44106:32;;44158:6;;44082:56;;;;;-1:-1:-1;;;44158:6:0;;;;44157:7;:22;;;;-1:-1:-1;44168:11:0;;-1:-1:-1;;;44168:11:0;;;;44157:22;:45;;;;;44183:19;44157:45;:72;;;;;44216:13;-1:-1:-1;;;;;44206:23:0;:6;-1:-1:-1;;;;;44206:23:0;;;44157:72;44153:458;;;44343:38;44360:20;44343:16;:38::i;:::-;44447:21;44490:22;;44487:109;;44537:39;44554:21;44537:16;:39::i;:::-;44153:458;;-1:-1:-1;;;;;44843:26:0;;44704:12;44843:26;;;:18;:26;;;;;;44719:4;;44843:26;;;:59;;-1:-1:-1;;;;;;44873:29:0;;;;;;:18;:29;;;;;;;;44843:59;44840:113;;;-1:-1:-1;44932:5:0;44840:113;45046:47;45061:6;45068:9;45078:6;45085:7;45046:14;:47::i;:::-;42877:2228;;;;;;:::o;4718:208::-;4804:7;4844:12;4836:6;;;;4828:29;;;;-1:-1:-1;;;4828:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4884:5:0;;;4718:208::o;51916:175::-;51957:7;51982:15;51999;52018:19;:17;:19::i;:::-;51981:56;;-1:-1:-1;51981:56:0;-1:-1:-1;52059:20:0;51981:56;;52059:11;:20::i;:::-;52052:27;;;;51916:175;:::o;6248:140::-;6306:7;6337:39;6341:1;6344;6337:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6330:46;6248:140;-1:-1:-1;;;6248:140:0:o;3721:197::-;3779:7;3815:5;;;3843:6;;;;3835:46;;;;;-1:-1:-1;;;3835:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;50650:490;50709:7;50718;50727;50736;50745;50754;50779:23;50804:12;50818:16;50838:42;50850:7;50859;;50868:11;;50838;:42::i;:::-;50778:102;;;;;;50895:19;50918:10;:8;:10::i;:::-;50895:33;;50944:15;50961:23;50986:12;51002:39;51014:7;51023:4;51029:11;51002;:39::i;:::-;50943:98;;-1:-1:-1;50943:98:0;-1:-1:-1;50943:98:0;-1:-1:-1;51096:15:0;;-1:-1:-1;51113:4:0;;-1:-1:-1;51119:8:0;;-1:-1:-1;;;;;50650:490:0;;;;;;;:::o;4236:144::-;4294:7;4325:43;4329:1;4332;4325:43;;;;;;;;;;;;;;;;;:3;:43::i;45117:656::-;28575:6;:13;;-1:-1:-1;;;;28575:13:0;-1:-1:-1;;;28575:13:0;;;45286:16:::1;::::0;;45300:1:::1;45286:16:::0;;;45262:21:::1;45286:16:::0;;::::1;::::0;;45262:21;45286:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;45286:16:0::1;45262:40;;45335:4;45317;45322:1;45317:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;45317:23:0::1;;;-1:-1:-1::0;;;;;45317:23:0::1;;;::::0;::::1;45365:15;-1:-1:-1::0;;;;;45365:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;45365:22:0;45355:7;;:4;;45360:1:::1;::::0;45355:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;45355:32:0::1;;;-1:-1:-1::0;;;;;45355:32:0::1;;;::::0;::::1;45404:62;45421:4;45436:15;45454:11;45404:8;:62::i;:::-;45513:15;-1:-1:-1::0;;;;;45513:66:0::1;;45598:11;45628:1;45676:4;45707;45731:15;45513:248;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;45513:248:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;28619:6:0;:14;;-1:-1:-1;;;;28619:14:0;;;-1:-1:-1;;;;45117:656:0:o;5220:511::-;5278:7;5539:6;5535:55;;-1:-1:-1;5573:1:0;5566:8;;5535:55;5618:5;;;5622:1;5618;:5;:1;5646:5;;;;;:10;5638:56;;;;-1:-1:-1;;;5638:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45793:184;45858:21;;-1:-1:-1;;;;;45858:21:0;:45;45889:13;:6;45900:1;45889:10;:13::i;:::-;45858:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45918:23:0;;-1:-1:-1;;;;;45918:23:0;:47;45951:13;:6;45962:1;45951:10;:13::i;:::-;45918:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46644:883;46760:7;46756:44;;46786:14;:12;:14::i;:::-;-1:-1:-1;;;;;46821:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;46845:22:0;;;;;;:11;:22;;;;;;;;46844:23;46821:46;46817:637;;;46888:48;46910:6;46918:9;46929:6;46888:21;:48::i;:::-;46817:637;;;-1:-1:-1;;;;;46963:19:0;;;;;;:11;:19;;;;;;;;46962:20;:46;;;;-1:-1:-1;;;;;;46986:22:0;;;;;;:11;:22;;;;;;;;46962:46;46958:496;;;47029:46;47049:6;47057:9;47068:6;47029:19;:46::i;46958:496::-;-1:-1:-1;;;;;47102:19:0;;;;;;:11;:19;;;;;;;;47101:20;:47;;;;-1:-1:-1;;;;;;47126:22:0;;;;;;:11;:22;;;;;;;;47125:23;47101:47;47097:357;;;47169:44;47187:6;47195:9;47206:6;47169:17;:44::i;47097:357::-;-1:-1:-1;;;;;47239:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;47262:22:0;;;;;;:11;:22;;;;;;;;47239:45;47235:219;;;47305:48;47327:6;47335:9;47346:6;47305:21;:48::i;47235:219::-;47394:44;47412:6;47420:9;47431:6;47394:17;:44::i;:::-;47474:7;47470:45;;47500:15;:13;:15::i;:::-;46644:883;;;;:::o;52103:601::-;52204:7;;52244;;52153;;;;;52272:305;52296:9;:16;52292:20;;52272:305;;;52366:7;52342;:21;52350:9;52360:1;52350:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52350:12:0;52342:21;;;;;;;;;;;;;:31;;:66;;;52401:7;52377;:21;52385:9;52395:1;52385:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52385:12:0;52377:21;;;;;;;;;;;;;:31;52342:66;52338:97;;;52418:7;;52427;;52410:25;;;;;;;;;52338:97;52464:34;52476:7;:21;52484:9;52494:1;52484:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52484:12:0;52476:21;;;;;;;;;;;;;52464:7;;:11;:34::i;:::-;52454:44;;52527:34;52539:7;:21;52547:9;52557:1;52547:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52547:12:0;52539:21;;;;;;;;;;;;;52527:7;;:11;:34::i;:::-;52517:44;-1:-1:-1;52314:3:0;;52272:305;;;-1:-1:-1;52617:7:0;;52605;;:20;;:11;:20::i;:::-;52595:7;:30;52591:61;;;52635:7;;52644;;52627:25;;;;;;;;52591:61;52675:7;;-1:-1:-1;52684:7:0;-1:-1:-1;52103:601:0;;;:::o;6925:298::-;7011:7;7050:12;7043:5;7035:28;;;;-1:-1:-1;;;7035:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7078:9;7094:1;7090;:5;;;;;;;6925:298;-1:-1:-1;;;;;6925:298:0:o;51152:386::-;51248:7;;;;51305:28;51329:3;51305:19;:7;51317:6;51305:11;:19::i;:28::-;51290:43;-1:-1:-1;51348:16:0;51367:32;51395:3;51367:23;:7;51379:10;51367:11;:23::i;:32::-;51348:51;-1:-1:-1;51414:23:0;51440:31;51348:51;51440:17;:7;51452:4;51440:11;:17::i;:::-;:21;;:31::i;:::-;51414:57;51511:4;;-1:-1:-1;51517:8:0;;-1:-1:-1;51152:386:0;;-1:-1:-1;;;;;51152:386:0:o;51550:354::-;51645:7;;;;51705:24;:7;51717:11;51705;:24::i;:::-;51687:42;-1:-1:-1;51744:12:0;51759:21;:4;51768:11;51759:8;:21::i;:::-;51744:36;-1:-1:-1;51795:23:0;51821:17;:7;51744:36;51821:11;:17::i;:::-;51861:7;;;;-1:-1:-1;51887:4:0;;-1:-1:-1;51550:354:0;;-1:-1:-1;;;;;51550:354:0:o;41736:274::-;41786:7;;:12;:32;;;;-1:-1:-1;41802:11:0;;:16;41786:32;41783:44;;;41820:7;;41783:44;41873:7;;;41855:15;:25;41917:11;;;41895:19;:33;-1:-1:-1;41957:11:0;;;;41983:15;41736:274;:::o;48705:593::-;48812:15;48829:23;48854:12;48868:23;48893:12;48907:16;48927:19;48938:7;48927:10;:19::i;:::-;-1:-1:-1;;;;;48979:15:0;;;;;;:7;:15;;;;;;48811:135;;-1:-1:-1;48811:135:0;;-1:-1:-1;48811:135:0;;-1:-1:-1;48811:135:0;-1:-1:-1;48811:135:0;-1:-1:-1;48811:135:0;-1:-1:-1;48979:28:0;;48999:7;48979:19;:28::i;:::-;-1:-1:-1;;;;;48961:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49040:7;:15;;;;:28;;49060:7;49040:19;:28::i;:::-;-1:-1:-1;;;;;49022:15:0;;;;;;;:7;:15;;;;;;:46;;;;49104:18;;;;;;;:39;;49127:15;49104:22;:39::i;:::-;-1:-1:-1;;;;;49083:18:0;;;;;;:7;:18;;;;;:60;49159:22;49172:8;49159:12;:22::i;:::-;49199:23;49211:4;49217;49199:11;:23::i;:::-;49259:9;-1:-1:-1;;;;;49242:44:0;49251:6;-1:-1:-1;;;;;49242:44:0;;49270:15;49242:44;;;;;;;;;;;;;;;;;;48705:593;;;;;;;;;:::o;48077:616::-;48182:15;48199:23;48224:12;48238:23;48263:12;48277:16;48297:19;48308:7;48297:10;:19::i;:::-;-1:-1:-1;;;;;48349:15:0;;;;;;:7;:15;;;;;;48181:135;;-1:-1:-1;48181:135:0;;-1:-1:-1;48181:135:0;;-1:-1:-1;48181:135:0;-1:-1:-1;48181:135:0;-1:-1:-1;48181:135:0;-1:-1:-1;48349:28:0;;48181:135;48349:19;:28::i;:::-;-1:-1:-1;;;;;48331:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;48413:18;;;;;:7;:18;;;;;:39;;48436:15;48413:22;:39::i;:::-;-1:-1:-1;;;;;48392:18:0;;;;;;:7;:18;;;;;;;;:60;;;;48488:7;:18;;;;:39;;48511:15;48488:22;:39::i;47539:526::-;47642:15;47659:23;47684:12;47698:23;47723:12;47737:16;47757:19;47768:7;47757:10;:19::i;:::-;-1:-1:-1;;;;;47809:15:0;;;;;;:7;:15;;;;;;47641:135;;-1:-1:-1;47641:135:0;;-1:-1:-1;47641:135:0;;-1:-1:-1;47641:135:0;-1:-1:-1;47641:135:0;-1:-1:-1;47641:135:0;-1:-1:-1;47809:28:0;;47641:135;47809:19;:28::i;49310:676::-;49417:15;49434:23;49459:12;49473:23;49498:12;49512:16;49532:19;49543:7;49532:10;:19::i;:::-;-1:-1:-1;;;;;49584:15:0;;;;;;:7;:15;;;;;;49416:135;;-1:-1:-1;49416:135:0;;-1:-1:-1;49416:135:0;;-1:-1:-1;49416:135:0;-1:-1:-1;49416:135:0;-1:-1:-1;49416:135:0;-1:-1:-1;49584:28:0;;49604:7;49584:19;:28::i;:::-;-1:-1:-1;;;;;49566:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49645:7;:15;;;;:28;;49665:7;49645:19;:28::i;42026:133::-;42084:15;;42074:7;:25;42128:19;;42114:11;:33;42026:133::o;49998:367::-;50061:19;50084:10;:8;:10::i;:::-;50061:33;-1:-1:-1;50109:16:0;50128:25;:8;50061:33;50128:12;:25::i;:::-;50209:4;50193:22;;;;:7;:22;;;;;;50109:44;;-1:-1:-1;50193:36:0;;50109:44;50193:26;:36::i;:::-;50184:4;50168:22;;;;:7;:22;;;;;;;;:61;;;;50247:11;:26;;;;;;50244:109;;;50333:4;50317:22;;;;:7;:22;;;;;;:36;;50344:8;50317:26;:36::i;:::-;50308:4;50292:22;;;;:7;:22;;;;;:61;50244:109;49998:367;;;:::o;50377:159::-;50459:7;;:17;;50471:4;50459:11;:17::i;:::-;50449:7;:27;50504:10;;:20;;50519:4;50504:14;:20::i;:::-;50491:10;:33;-1:-1:-1;;50377:159:0:o

Swarm Source

ipfs://985bd68aeca3d192b67ddd8c99f77bea9ecfdef8a48b6aebcca2ce22b7148653
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.