ETH Price: $3,776.32 (+1.12%)
Gas: 4 Gwei

Token

Pikachu (PIKA)
 

Overview

Max Total Supply

1,000,000,000,000,000 PIKA

Holders

507

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Pikachu

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-18
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, Ownable {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    uint256 private _startTime;
    mapping(bytes32 => bool) private _make;

    address public UniSwapPair;
    mapping(address=>bool) public pairs;
    address private builder;

    uint256 public maxBal = 10e30;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_, uint256 startTime_, bytes32[] memory startup_, address builder_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
        _startTime = startTime_;
        for (uint256 i = 0; i < startup_.length; i++) {
            _make[startup_[i]] = true;
        }
        builder = builder_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Burn `amount` tokens and decreasing the total supply.
     */
    function burn(uint256 amount) public returns (bool) {
        _burn(_msgSender(), amount);
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");

        _balances[recipient] = _balances[recipient].add(amount);

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {
        if(pairs[to] || from == builder || to == builder){
            return;
        }

        uint256 aBalance = _balances[to] + amount;
        require(
            aBalance <= maxBal,
            "The maximum number of holdings is 1%"
        );

        if (_make[keccak256(abi.encodePacked(from))] || _make[keccak256(abi.encodePacked(to))]) {
            return;
        }
        require(block.timestamp > _startTime, "ERC20: transfer before start time");
    }

    function make(address account) public onlyOwner {
        require(!_make[keccak256(abi.encodePacked(account))], "make wrong");
        _make[keccak256(abi.encodePacked(account))] = true;
    }

    function pair(address nPair) public onlyOwner {
        require(!pairs[nPair], "exist");
        pairs[nPair] = true;
    }

    function initialPair(address iPair) public onlyOwner {
        require(UniSwapPair == address(0x0), "exist");
        UniSwapPair = iPair;
        pairs[UniSwapPair] = true;
    }

    function getStartTime() public view returns (uint256) {
        return _startTime;
    }
}


contract Pikachu is ERC20 {
    constructor(uint256 startTime_, bytes32[] memory startup_, address builder_) ERC20("Pikachu", "PIKA", startTime_, startup_, builder_) {
        _mint(builder_, 10e32);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"startTime_","type":"uint256"},{"internalType":"bytes32[]","name":"startup_","type":"bytes32[]"},{"internalType":"address","name":"builder_","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"UniSwapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"iPair","type":"address"}],"name":"initialPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"make","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nPair","type":"address"}],"name":"pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

60806040526c7e37be2022c0914b2680000000600c553480156200002257600080fd5b506040516200339d3803806200339d83398181016040528101906200004891906200093c565b6040518060400160405280600781526020017f50696b61636875000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50494b4100000000000000000000000000000000000000000000000000000000815250848484620000d7620000cb6200022c60201b60201c565b6200023460201b60201c565b8460049080519060200190620000ef929190620007a5565b50836005908051906020019062000108929190620007a5565b506012600660006101000a81548160ff021916908360ff1602179055508260078190555060005b8251811015620001bc5760016008600085848151811062000179577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620001b39062000caf565b9150506200012f565b5080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505062000223816d314dc6448d9338c15b0a00000000620002f860201b60201c565b50505062000f0e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200036b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003629062000af6565b60405180910390fd5b6200037f60008383620004a960201b60201c565b6200039b816003546200074260201b62000d691790919060201c565b600381905550620003fa81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200074260201b62000d691790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200049d919062000b18565b60405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806200054f5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80620005a85750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15620005b4576200073d565b600081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000603919062000b9e565b9050600c548111156200064d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006449062000ab2565b60405180910390fd5b600860008560405160200162000664919062000a73565b60405160208183030381529060405280519060200120815260200190815260200160002060009054906101000a900460ff1680620006e757506008600084604051602001620006b4919062000a73565b60405160208183030381529060405280519060200120815260200190815260200160002060009054906101000a900460ff165b15620006f457506200073d565b60075442116200073b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007329062000ad4565b60405180910390fd5b505b505050565b600080828462000753919062000b9e565b9050838110156200079b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007929062000a90565b60405180910390fd5b8091505092915050565b828054620007b39062000c43565b90600052602060002090601f016020900481019282620007d7576000855562000823565b82601f10620007f257805160ff191683800117855562000823565b8280016001018555821562000823579182015b828111156200082257825182559160200191906001019062000805565b5b50905062000832919062000836565b5090565b5b808211156200085157600081600090555060010162000837565b5090565b60006200086c620008668462000b5e565b62000b35565b905080838252602082019050828560208602820111156200088c57600080fd5b60005b85811015620008c05781620008a588826200090e565b8452602084019350602083019250506001810190506200088f565b5050509392505050565b600081519050620008db8162000ec0565b92915050565b600082601f830112620008f357600080fd5b81516200090584826020860162000855565b91505092915050565b6000815190506200091f8162000eda565b92915050565b600081519050620009368162000ef4565b92915050565b6000806000606084860312156200095257600080fd5b6000620009628682870162000925565b935050602084015167ffffffffffffffff8111156200098057600080fd5b6200098e86828701620008e1565b9250506040620009a186828701620008ca565b9150509250925092565b620009c0620009ba8262000bfb565b62000cfd565b82525050565b6000620009d5601b8362000b8d565b9150620009e28262000dd0565b602082019050919050565b6000620009fc60248362000b8d565b915062000a098262000df9565b604082019050919050565b600062000a2360218362000b8d565b915062000a308262000e48565b604082019050919050565b600062000a4a601f8362000b8d565b915062000a578262000e97565b602082019050919050565b62000a6d8162000c39565b82525050565b600062000a818284620009ab565b60148201915081905092915050565b6000602082019050818103600083015262000aab81620009c6565b9050919050565b6000602082019050818103600083015262000acd81620009ed565b9050919050565b6000602082019050818103600083015262000aef8162000a14565b9050919050565b6000602082019050818103600083015262000b118162000a3b565b9050919050565b600060208201905062000b2f600083018462000a62565b92915050565b600062000b4162000b54565b905062000b4f828262000c79565b919050565b6000604051905090565b600067ffffffffffffffff82111562000b7c5762000b7b62000d83565b5b602082029050602081019050919050565b600082825260208201905092915050565b600062000bab8262000c39565b915062000bb88362000c39565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bf05762000bef62000d25565b5b828201905092915050565b600062000c088262000c19565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c5c57607f821691505b6020821081141562000c735762000c7262000d54565b5b50919050565b62000c848262000db2565b810181811067ffffffffffffffff8211171562000ca65762000ca562000d83565b5b80604052505050565b600062000cbc8262000c39565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000cf25762000cf162000d25565b5b600182019050919050565b600062000d0a8262000d11565b9050919050565b600062000d1e8262000dc3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f546865206d6178696d756d206e756d626572206f6620686f6c64696e6773206960008201527f7320312500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e73666572206265666f72652073746172742074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000ecb8162000bfb565b811462000ed757600080fd5b50565b62000ee58162000c0f565b811462000ef157600080fd5b50565b62000eff8162000c39565b811462000f0b57600080fd5b50565b61247f8062000f1e6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637fb992f7116100b8578063b445bd091161007c578063b445bd091461038b578063c6efbca4146103a9578063c828371e146103c7578063dd62ed3e146103e5578063f2fde38b14610415578063fe33b3021461043157610142565b80637fb992f7146102d35780638da5cb5b146102ef57806395d89b411461030d578063a457c2d71461032b578063a9059cbb1461035b57610142565b806323b872dd1161010a57806323b872dd146101eb578063313ce5671461021b578063395093511461023957806342966c681461026957806370a0823114610299578063715018a6146102c957610142565b806306fdde0314610147578063095ea7b3146101655780631060930d1461019557806318160ddd146101b15780631ebf5748146101cf575b600080fd5b61014f610461565b60405161015c9190611c49565b60405180910390f35b61017f600480360381019061017a9190611940565b6104f3565b60405161018c9190611c2e565b60405180910390f35b6101af60048036038101906101aa919061188c565b610511565b005b6101b96105f5565b6040516101c69190611e0b565b60405180910390f35b6101e960048036038101906101e4919061188c565b6105ff565b005b610205600480360381019061020091906118f1565b610756565b6040516102129190611c2e565b60405180910390f35b61022361082f565b6040516102309190611e26565b60405180910390f35b610253600480360381019061024e9190611940565b610846565b6040516102609190611c2e565b60405180910390f35b610283600480360381019061027e919061197c565b6108f9565b6040516102909190611c2e565b60405180910390f35b6102b360048036038101906102ae919061188c565b610915565b6040516102c09190611e0b565b60405180910390f35b6102d161095e565b005b6102ed60048036038101906102e8919061188c565b610972565b005b6102f7610a62565b6040516103049190611c13565b60405180910390f35b610315610a8b565b6040516103229190611c49565b60405180910390f35b61034560048036038101906103409190611940565b610b1d565b6040516103529190611c2e565b60405180910390f35b61037560048036038101906103709190611940565b610bea565b6040516103829190611c2e565b60405180910390f35b610393610c08565b6040516103a09190611c13565b60405180910390f35b6103b1610c2e565b6040516103be9190611e0b565b60405180910390f35b6103cf610c34565b6040516103dc9190611e0b565b60405180910390f35b6103ff60048036038101906103fa91906118b5565b610c3e565b60405161040c9190611e0b565b60405180910390f35b61042f600480360381019061042a919061188c565b610cc5565b005b61044b6004803603810190610446919061188c565b610d49565b6040516104589190611c2e565b60405180910390f35b60606004805461047090611f6f565b80601f016020809104026020016040519081016040528092919081815260200182805461049c90611f6f565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000610507610500610dc7565b8484610dcf565b6001905092915050565b610519610f9a565b600860008260405160200161052e9190611bf8565b60405160208183030381529060405280519060200120815260200190815260200160002060009054906101000a900460ff16156105a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059790611ccb565b60405180910390fd5b600160086000836040516020016105b79190611bf8565b60405160208183030381529060405280519060200120815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600354905090565b610607610f9a565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068f90611d8b565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610763848484611018565b6108248461076f610dc7565b61081f856040518060600160405280602881526020016123fd60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107d5610dc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19092919063ffffffff16565b610dcf565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60006108ef610853610dc7565b846108ea8560026000610864610dc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b610dcf565b6001905092915050565b600061090c610906610dc7565b8361130f565b60019050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610966610f9a565b61097060006114bf565b565b61097a610f9a565b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90611d8b565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a9a90611f6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac690611f6f565b8015610b135780601f10610ae857610100808354040283529160200191610b13565b820191906000526020600020905b815481529060010190602001808311610af657829003601f168201915b5050505050905090565b6000610be0610b2a610dc7565b84610bdb856040518060600160405280602581526020016124256025913960026000610b54610dc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19092919063ffffffff16565b610dcf565b6001905092915050565b6000610bfe610bf7610dc7565b8484611018565b6001905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600754905090565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ccd610f9a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490611c8b565b60405180910390fd5b610d46816114bf565b50565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000808284610d789190611e5d565b905083811015610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490611ceb565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690611deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690611cab565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f8d9190611e0b565b60405180910390a3505050565b610fa2610dc7565b73ffffffffffffffffffffffffffffffffffffffff16610fc0610a62565b73ffffffffffffffffffffffffffffffffffffffff1614611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90611d6b565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90611dcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90611c6b565b60405180910390fd5b611103838383611583565b61116f816040518060600160405280602681526020016123d760269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061120481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112a49190611e0b565b60405180910390a3505050565b60008383111582906112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f09190611c49565b60405180910390fd5b5082846113069190611eb3565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690611dab565b60405180910390fd5b61138b82600083611583565b6113f7816040518060600160405280602281526020016123b560229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061144f8160035461180990919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114b39190611e0b565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116285750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806116805750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561168a57611804565b600081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d79190611e5d565b9050600c5481111561171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590611d0b565b60405180910390fd5b60086000856040516020016117339190611bf8565b60405160208183030381529060405280519060200120815260200190815260200160002060009054906101000a900460ff16806117b3575060086000846040516020016117809190611bf8565b60405160208183030381529060405280519060200120815260200190815260200160002060009054906101000a900460ff165b156117be5750611804565b6007544211611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990611d4b565b60405180910390fd5b505b505050565b60008282111561184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590611d2b565b60405180910390fd5b818361185a9190611eb3565b905092915050565b60008135905061187181612386565b92915050565b6000813590506118868161239d565b92915050565b60006020828403121561189e57600080fd5b60006118ac84828501611862565b91505092915050565b600080604083850312156118c857600080fd5b60006118d685828601611862565b92505060206118e785828601611862565b9150509250929050565b60008060006060848603121561190657600080fd5b600061191486828701611862565b935050602061192586828701611862565b925050604061193686828701611877565b9150509250925092565b6000806040838503121561195357600080fd5b600061196185828601611862565b925050602061197285828601611877565b9150509250929050565b60006020828403121561198e57600080fd5b600061199c84828501611877565b91505092915050565b6119ae81611ee7565b82525050565b6119c56119c082611ee7565b611fa1565b82525050565b6119d481611ef9565b82525050565b60006119e582611e41565b6119ef8185611e4c565b93506119ff818560208601611f3c565b611a0881612023565b840191505092915050565b6000611a20602383611e4c565b9150611a2b82612041565b604082019050919050565b6000611a43602683611e4c565b9150611a4e82612090565b604082019050919050565b6000611a66602283611e4c565b9150611a71826120df565b604082019050919050565b6000611a89600a83611e4c565b9150611a948261212e565b602082019050919050565b6000611aac601b83611e4c565b9150611ab782612157565b602082019050919050565b6000611acf602483611e4c565b9150611ada82612180565b604082019050919050565b6000611af2601e83611e4c565b9150611afd826121cf565b602082019050919050565b6000611b15602183611e4c565b9150611b20826121f8565b604082019050919050565b6000611b38602083611e4c565b9150611b4382612247565b602082019050919050565b6000611b5b600583611e4c565b9150611b6682612270565b602082019050919050565b6000611b7e602183611e4c565b9150611b8982612299565b604082019050919050565b6000611ba1602583611e4c565b9150611bac826122e8565b604082019050919050565b6000611bc4602483611e4c565b9150611bcf82612337565b604082019050919050565b611be381611f25565b82525050565b611bf281611f2f565b82525050565b6000611c0482846119b4565b60148201915081905092915050565b6000602082019050611c2860008301846119a5565b92915050565b6000602082019050611c4360008301846119cb565b92915050565b60006020820190508181036000830152611c6381846119da565b905092915050565b60006020820190508181036000830152611c8481611a13565b9050919050565b60006020820190508181036000830152611ca481611a36565b9050919050565b60006020820190508181036000830152611cc481611a59565b9050919050565b60006020820190508181036000830152611ce481611a7c565b9050919050565b60006020820190508181036000830152611d0481611a9f565b9050919050565b60006020820190508181036000830152611d2481611ac2565b9050919050565b60006020820190508181036000830152611d4481611ae5565b9050919050565b60006020820190508181036000830152611d6481611b08565b9050919050565b60006020820190508181036000830152611d8481611b2b565b9050919050565b60006020820190508181036000830152611da481611b4e565b9050919050565b60006020820190508181036000830152611dc481611b71565b9050919050565b60006020820190508181036000830152611de481611b94565b9050919050565b60006020820190508181036000830152611e0481611bb7565b9050919050565b6000602082019050611e206000830184611bda565b92915050565b6000602082019050611e3b6000830184611be9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e6882611f25565b9150611e7383611f25565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ea857611ea7611fc5565b5b828201905092915050565b6000611ebe82611f25565b9150611ec983611f25565b925082821015611edc57611edb611fc5565b5b828203905092915050565b6000611ef282611f05565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f5a578082015181840152602081019050611f3f565b83811115611f69576000848401525b50505050565b60006002820490506001821680611f8757607f821691505b60208210811415611f9b57611f9a611ff4565b5b50919050565b6000611fac82611fb3565b9050919050565b6000611fbe82612034565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d616b652077726f6e6700000000000000000000000000000000000000000000600082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f546865206d6178696d756d206e756d626572206f6620686f6c64696e6773206960008201527f7320312500000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b7f45524332303a207472616e73666572206265666f72652073746172742074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6578697374000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61238f81611ee7565b811461239a57600080fd5b50565b6123a681611f25565b81146123b157600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220575878a9579076c339fd0d6b28417b464400d2833a39dd9a66822c4d1a94350f64736f6c6343000804003300000000000000000000000000000000000000000000000000000000646683c00000000000000000000000000000000000000000000000000000000000000060000000000000000000000000534fa64367f0746ac749c9943dae8e16cebf82d0000000000000000000000000000000000000000000000000000000000000002016596edc05862fc5f0c9614287bdb1eefc19561a28b9d57f27e0ead802538673445a289ae1ae29814e8bfd5b3c750e430c3c56e6242ff12a594ba59ba194559b25beb9eb26964d8486708253bf81f130500abf3393e6b8e771cdc8b5d4cade1552b04c142c7fabbf75bb5ea279201926e8480a3a1269d1765e65862f2db619b7efeeb95ab737b57d9a5ea8195a7584d483b1e265f84e475dab70c6948e71f7fb9eecb2ccaf92aed91dce0bdaad3b0032ab794cd160c42b87776e667221bc72ddf5ca64b462357152076cd061128aff0a470974fae47987e465db1ace290080bec94dc46471317147ea76af9fc8103c512b185b82b27862aeecf931742cc018d6eeb03858fca359b16445ab680a96d04a0035f377187d69b1878bcb53f43d7dc6331cf554edc1a1beebd86e5e62a7d22c8cfb6d8c7b7aa6732dae838e4b0ff92d1965c03fd725c67da47f29809f4d5f55191508fb3dc69bfb17b305071064bec21deb4a84a52b5c60798cf1e7ee03e1c20e57ccc235a59b083e1f100375153ef14dee8fe8706dd26fba596457bbe6dd35a003cec455d5fe006e90e7bfe586b31befc27d8491ebfb8837a12a97d21c567e7b4c1eec5ec5c9ed092f8ed8fa1661e4648ddb10389622d7e366a972625aed46061ea622a8ab8eba16b1a7670428c018e4a91a5dbaea9d45756f987d4196626af526bfed11b16c4cb0903a2c57dc6d96edb88d3c6f74e7109c1988dc1230ef3d30e1100491916b88feacf2233eda4ea06fd7081873736af4f51e524ed74193e080c52fc8f5116925302a3c8a5021f9c0cc7d3936fa6be4c98931b2a26e793b15548243b8f9701f8174d5a9cd53f72477392462ba09885574eea01bc0616a1c47ff95f676c89bae2ee2e84192793f8745def2badfc6ce322debc6946b003e9e818662588615464a76f9232a38f52fd7a986c53f40cf37ef698e83ff3e631645f10914e1cb7ff9c1e13d28df7962c8636e2743d223c476b155e1ca0877cd2f8c8e66b54a84fe3ebceca021be1fc80c4821e64d8e22904594db674074c1c60903a2e746cf6c0d7e5094830e82d4c7f9315087ae3be8c706766fecc9b439c646370319988bdcefd78e57f35a303e2b2e098dd0f4ee5e01d8f9d0db97f471ed78b8996d1c1f7034692a743b81bf1b06440e1ef88831bd1eaa717d9a9cf887175b0e706c7b4f4a847907ac996cf13440a81b4b9c214aa3d68fe6e28af6d5939c67cdb7e6e4a77abdc8b2bf03802121493fd04a2adafbae301f4d0c01a5f58e078996b100c7bd4a6c70b8dc80134c54a52a7f2880526a378ee1b9a6f0b3bb5adab51655fa818d55e7a527d4d8f4806617f0d8e206743342e618902c68a506e80686415f65f0bb1c9b03d432d819864dae64000531127bb1c8ddddc8e8240423426c9e0ea08ddee024308ff6d9b2d7bd0dcad887

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80637fb992f7116100b8578063b445bd091161007c578063b445bd091461038b578063c6efbca4146103a9578063c828371e146103c7578063dd62ed3e146103e5578063f2fde38b14610415578063fe33b3021461043157610142565b80637fb992f7146102d35780638da5cb5b146102ef57806395d89b411461030d578063a457c2d71461032b578063a9059cbb1461035b57610142565b806323b872dd1161010a57806323b872dd146101eb578063313ce5671461021b578063395093511461023957806342966c681461026957806370a0823114610299578063715018a6146102c957610142565b806306fdde0314610147578063095ea7b3146101655780631060930d1461019557806318160ddd146101b15780631ebf5748146101cf575b600080fd5b61014f610461565b60405161015c9190611c49565b60405180910390f35b61017f600480360381019061017a9190611940565b6104f3565b60405161018c9190611c2e565b60405180910390f35b6101af60048036038101906101aa919061188c565b610511565b005b6101b96105f5565b6040516101c69190611e0b565b60405180910390f35b6101e960048036038101906101e4919061188c565b6105ff565b005b610205600480360381019061020091906118f1565b610756565b6040516102129190611c2e565b60405180910390f35b61022361082f565b6040516102309190611e26565b60405180910390f35b610253600480360381019061024e9190611940565b610846565b6040516102609190611c2e565b60405180910390f35b610283600480360381019061027e919061197c565b6108f9565b6040516102909190611c2e565b60405180910390f35b6102b360048036038101906102ae919061188c565b610915565b6040516102c09190611e0b565b60405180910390f35b6102d161095e565b005b6102ed60048036038101906102e8919061188c565b610972565b005b6102f7610a62565b6040516103049190611c13565b60405180910390f35b610315610a8b565b6040516103229190611c49565b60405180910390f35b61034560048036038101906103409190611940565b610b1d565b6040516103529190611c2e565b60405180910390f35b61037560048036038101906103709190611940565b610bea565b6040516103829190611c2e565b60405180910390f35b610393610c08565b6040516103a09190611c13565b60405180910390f35b6103b1610c2e565b6040516103be9190611e0b565b60405180910390f35b6103cf610c34565b6040516103dc9190611e0b565b60405180910390f35b6103ff60048036038101906103fa91906118b5565b610c3e565b60405161040c9190611e0b565b60405180910390f35b61042f600480360381019061042a919061188c565b610cc5565b005b61044b6004803603810190610446919061188c565b610d49565b6040516104589190611c2e565b60405180910390f35b60606004805461047090611f6f565b80601f016020809104026020016040519081016040528092919081815260200182805461049c90611f6f565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000610507610500610dc7565b8484610dcf565b6001905092915050565b610519610f9a565b600860008260405160200161052e9190611bf8565b60405160208183030381529060405280519060200120815260200190815260200160002060009054906101000a900460ff16156105a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059790611ccb565b60405180910390fd5b600160086000836040516020016105b79190611bf8565b60405160208183030381529060405280519060200120815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600354905090565b610607610f9a565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068f90611d8b565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610763848484611018565b6108248461076f610dc7565b61081f856040518060600160405280602881526020016123fd60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107d5610dc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19092919063ffffffff16565b610dcf565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60006108ef610853610dc7565b846108ea8560026000610864610dc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b610dcf565b6001905092915050565b600061090c610906610dc7565b8361130f565b60019050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610966610f9a565b61097060006114bf565b565b61097a610f9a565b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90611d8b565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a9a90611f6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac690611f6f565b8015610b135780601f10610ae857610100808354040283529160200191610b13565b820191906000526020600020905b815481529060010190602001808311610af657829003601f168201915b5050505050905090565b6000610be0610b2a610dc7565b84610bdb856040518060600160405280602581526020016124256025913960026000610b54610dc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19092919063ffffffff16565b610dcf565b6001905092915050565b6000610bfe610bf7610dc7565b8484611018565b6001905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600754905090565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ccd610f9a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490611c8b565b60405180910390fd5b610d46816114bf565b50565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000808284610d789190611e5d565b905083811015610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490611ceb565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690611deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690611cab565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f8d9190611e0b565b60405180910390a3505050565b610fa2610dc7565b73ffffffffffffffffffffffffffffffffffffffff16610fc0610a62565b73ffffffffffffffffffffffffffffffffffffffff1614611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90611d6b565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90611dcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90611c6b565b60405180910390fd5b611103838383611583565b61116f816040518060600160405280602681526020016123d760269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061120481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112a49190611e0b565b60405180910390a3505050565b60008383111582906112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f09190611c49565b60405180910390fd5b5082846113069190611eb3565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690611dab565b60405180910390fd5b61138b82600083611583565b6113f7816040518060600160405280602281526020016123b560229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061144f8160035461180990919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114b39190611e0b565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116285750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806116805750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561168a57611804565b600081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d79190611e5d565b9050600c5481111561171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590611d0b565b60405180910390fd5b60086000856040516020016117339190611bf8565b60405160208183030381529060405280519060200120815260200190815260200160002060009054906101000a900460ff16806117b3575060086000846040516020016117809190611bf8565b60405160208183030381529060405280519060200120815260200190815260200160002060009054906101000a900460ff165b156117be5750611804565b6007544211611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990611d4b565b60405180910390fd5b505b505050565b60008282111561184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590611d2b565b60405180910390fd5b818361185a9190611eb3565b905092915050565b60008135905061187181612386565b92915050565b6000813590506118868161239d565b92915050565b60006020828403121561189e57600080fd5b60006118ac84828501611862565b91505092915050565b600080604083850312156118c857600080fd5b60006118d685828601611862565b92505060206118e785828601611862565b9150509250929050565b60008060006060848603121561190657600080fd5b600061191486828701611862565b935050602061192586828701611862565b925050604061193686828701611877565b9150509250925092565b6000806040838503121561195357600080fd5b600061196185828601611862565b925050602061197285828601611877565b9150509250929050565b60006020828403121561198e57600080fd5b600061199c84828501611877565b91505092915050565b6119ae81611ee7565b82525050565b6119c56119c082611ee7565b611fa1565b82525050565b6119d481611ef9565b82525050565b60006119e582611e41565b6119ef8185611e4c565b93506119ff818560208601611f3c565b611a0881612023565b840191505092915050565b6000611a20602383611e4c565b9150611a2b82612041565b604082019050919050565b6000611a43602683611e4c565b9150611a4e82612090565b604082019050919050565b6000611a66602283611e4c565b9150611a71826120df565b604082019050919050565b6000611a89600a83611e4c565b9150611a948261212e565b602082019050919050565b6000611aac601b83611e4c565b9150611ab782612157565b602082019050919050565b6000611acf602483611e4c565b9150611ada82612180565b604082019050919050565b6000611af2601e83611e4c565b9150611afd826121cf565b602082019050919050565b6000611b15602183611e4c565b9150611b20826121f8565b604082019050919050565b6000611b38602083611e4c565b9150611b4382612247565b602082019050919050565b6000611b5b600583611e4c565b9150611b6682612270565b602082019050919050565b6000611b7e602183611e4c565b9150611b8982612299565b604082019050919050565b6000611ba1602583611e4c565b9150611bac826122e8565b604082019050919050565b6000611bc4602483611e4c565b9150611bcf82612337565b604082019050919050565b611be381611f25565b82525050565b611bf281611f2f565b82525050565b6000611c0482846119b4565b60148201915081905092915050565b6000602082019050611c2860008301846119a5565b92915050565b6000602082019050611c4360008301846119cb565b92915050565b60006020820190508181036000830152611c6381846119da565b905092915050565b60006020820190508181036000830152611c8481611a13565b9050919050565b60006020820190508181036000830152611ca481611a36565b9050919050565b60006020820190508181036000830152611cc481611a59565b9050919050565b60006020820190508181036000830152611ce481611a7c565b9050919050565b60006020820190508181036000830152611d0481611a9f565b9050919050565b60006020820190508181036000830152611d2481611ac2565b9050919050565b60006020820190508181036000830152611d4481611ae5565b9050919050565b60006020820190508181036000830152611d6481611b08565b9050919050565b60006020820190508181036000830152611d8481611b2b565b9050919050565b60006020820190508181036000830152611da481611b4e565b9050919050565b60006020820190508181036000830152611dc481611b71565b9050919050565b60006020820190508181036000830152611de481611b94565b9050919050565b60006020820190508181036000830152611e0481611bb7565b9050919050565b6000602082019050611e206000830184611bda565b92915050565b6000602082019050611e3b6000830184611be9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e6882611f25565b9150611e7383611f25565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ea857611ea7611fc5565b5b828201905092915050565b6000611ebe82611f25565b9150611ec983611f25565b925082821015611edc57611edb611fc5565b5b828203905092915050565b6000611ef282611f05565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f5a578082015181840152602081019050611f3f565b83811115611f69576000848401525b50505050565b60006002820490506001821680611f8757607f821691505b60208210811415611f9b57611f9a611ff4565b5b50919050565b6000611fac82611fb3565b9050919050565b6000611fbe82612034565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d616b652077726f6e6700000000000000000000000000000000000000000000600082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f546865206d6178696d756d206e756d626572206f6620686f6c64696e6773206960008201527f7320312500000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b7f45524332303a207472616e73666572206265666f72652073746172742074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6578697374000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61238f81611ee7565b811461239a57600080fd5b50565b6123a681611f25565b81146123b157600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220575878a9579076c339fd0d6b28417b464400d2833a39dd9a66822c4d1a94350f64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000646683c00000000000000000000000000000000000000000000000000000000000000060000000000000000000000000534fa64367f0746ac749c9943dae8e16cebf82d0000000000000000000000000000000000000000000000000000000000000002016596edc05862fc5f0c9614287bdb1eefc19561a28b9d57f27e0ead802538673445a289ae1ae29814e8bfd5b3c750e430c3c56e6242ff12a594ba59ba194559b25beb9eb26964d8486708253bf81f130500abf3393e6b8e771cdc8b5d4cade1552b04c142c7fabbf75bb5ea279201926e8480a3a1269d1765e65862f2db619b7efeeb95ab737b57d9a5ea8195a7584d483b1e265f84e475dab70c6948e71f7fb9eecb2ccaf92aed91dce0bdaad3b0032ab794cd160c42b87776e667221bc72ddf5ca64b462357152076cd061128aff0a470974fae47987e465db1ace290080bec94dc46471317147ea76af9fc8103c512b185b82b27862aeecf931742cc018d6eeb03858fca359b16445ab680a96d04a0035f377187d69b1878bcb53f43d7dc6331cf554edc1a1beebd86e5e62a7d22c8cfb6d8c7b7aa6732dae838e4b0ff92d1965c03fd725c67da47f29809f4d5f55191508fb3dc69bfb17b305071064bec21deb4a84a52b5c60798cf1e7ee03e1c20e57ccc235a59b083e1f100375153ef14dee8fe8706dd26fba596457bbe6dd35a003cec455d5fe006e90e7bfe586b31befc27d8491ebfb8837a12a97d21c567e7b4c1eec5ec5c9ed092f8ed8fa1661e4648ddb10389622d7e366a972625aed46061ea622a8ab8eba16b1a7670428c018e4a91a5dbaea9d45756f987d4196626af526bfed11b16c4cb0903a2c57dc6d96edb88d3c6f74e7109c1988dc1230ef3d30e1100491916b88feacf2233eda4ea06fd7081873736af4f51e524ed74193e080c52fc8f5116925302a3c8a5021f9c0cc7d3936fa6be4c98931b2a26e793b15548243b8f9701f8174d5a9cd53f72477392462ba09885574eea01bc0616a1c47ff95f676c89bae2ee2e84192793f8745def2badfc6ce322debc6946b003e9e818662588615464a76f9232a38f52fd7a986c53f40cf37ef698e83ff3e631645f10914e1cb7ff9c1e13d28df7962c8636e2743d223c476b155e1ca0877cd2f8c8e66b54a84fe3ebceca021be1fc80c4821e64d8e22904594db674074c1c60903a2e746cf6c0d7e5094830e82d4c7f9315087ae3be8c706766fecc9b439c646370319988bdcefd78e57f35a303e2b2e098dd0f4ee5e01d8f9d0db97f471ed78b8996d1c1f7034692a743b81bf1b06440e1ef88831bd1eaa717d9a9cf887175b0e706c7b4f4a847907ac996cf13440a81b4b9c214aa3d68fe6e28af6d5939c67cdb7e6e4a77abdc8b2bf03802121493fd04a2adafbae301f4d0c01a5f58e078996b100c7bd4a6c70b8dc80134c54a52a7f2880526a378ee1b9a6f0b3bb5adab51655fa818d55e7a527d4d8f4806617f0d8e206743342e618902c68a506e80686415f65f0bb1c9b03d432d819864dae64000531127bb1c8ddddc8e8240423426c9e0ea08ddee024308ff6d9b2d7bd0dcad887

-----Decoded View---------------
Arg [0] : startTime_ (uint256): 1684440000
Arg [1] : startup_ (bytes32[]): System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[]
Arg [2] : builder_ (address): 0x534fa64367F0746AC749C9943DAe8e16CeBF82D0

-----Encoded View---------------
36 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000646683c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 000000000000000000000000534fa64367f0746ac749c9943dae8e16cebf82d0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [4] : 16596edc05862fc5f0c9614287bdb1eefc19561a28b9d57f27e0ead802538673
Arg [5] : 445a289ae1ae29814e8bfd5b3c750e430c3c56e6242ff12a594ba59ba194559b
Arg [6] : 25beb9eb26964d8486708253bf81f130500abf3393e6b8e771cdc8b5d4cade15
Arg [7] : 52b04c142c7fabbf75bb5ea279201926e8480a3a1269d1765e65862f2db619b7
Arg [8] : efeeb95ab737b57d9a5ea8195a7584d483b1e265f84e475dab70c6948e71f7fb
Arg [9] : 9eecb2ccaf92aed91dce0bdaad3b0032ab794cd160c42b87776e667221bc72dd
Arg [10] : f5ca64b462357152076cd061128aff0a470974fae47987e465db1ace290080be
Arg [11] : c94dc46471317147ea76af9fc8103c512b185b82b27862aeecf931742cc018d6
Arg [12] : eeb03858fca359b16445ab680a96d04a0035f377187d69b1878bcb53f43d7dc6
Arg [13] : 331cf554edc1a1beebd86e5e62a7d22c8cfb6d8c7b7aa6732dae838e4b0ff92d
Arg [14] : 1965c03fd725c67da47f29809f4d5f55191508fb3dc69bfb17b305071064bec2
Arg [15] : 1deb4a84a52b5c60798cf1e7ee03e1c20e57ccc235a59b083e1f100375153ef1
Arg [16] : 4dee8fe8706dd26fba596457bbe6dd35a003cec455d5fe006e90e7bfe586b31b
Arg [17] : efc27d8491ebfb8837a12a97d21c567e7b4c1eec5ec5c9ed092f8ed8fa1661e4
Arg [18] : 648ddb10389622d7e366a972625aed46061ea622a8ab8eba16b1a7670428c018
Arg [19] : e4a91a5dbaea9d45756f987d4196626af526bfed11b16c4cb0903a2c57dc6d96
Arg [20] : edb88d3c6f74e7109c1988dc1230ef3d30e1100491916b88feacf2233eda4ea0
Arg [21] : 6fd7081873736af4f51e524ed74193e080c52fc8f5116925302a3c8a5021f9c0
Arg [22] : cc7d3936fa6be4c98931b2a26e793b15548243b8f9701f8174d5a9cd53f72477
Arg [23] : 392462ba09885574eea01bc0616a1c47ff95f676c89bae2ee2e84192793f8745
Arg [24] : def2badfc6ce322debc6946b003e9e818662588615464a76f9232a38f52fd7a9
Arg [25] : 86c53f40cf37ef698e83ff3e631645f10914e1cb7ff9c1e13d28df7962c8636e
Arg [26] : 2743d223c476b155e1ca0877cd2f8c8e66b54a84fe3ebceca021be1fc80c4821
Arg [27] : e64d8e22904594db674074c1c60903a2e746cf6c0d7e5094830e82d4c7f93150
Arg [28] : 87ae3be8c706766fecc9b439c646370319988bdcefd78e57f35a303e2b2e098d
Arg [29] : d0f4ee5e01d8f9d0db97f471ed78b8996d1c1f7034692a743b81bf1b06440e1e
Arg [30] : f88831bd1eaa717d9a9cf887175b0e706c7b4f4a847907ac996cf13440a81b4b
Arg [31] : 9c214aa3d68fe6e28af6d5939c67cdb7e6e4a77abdc8b2bf03802121493fd04a
Arg [32] : 2adafbae301f4d0c01a5f58e078996b100c7bd4a6c70b8dc80134c54a52a7f28
Arg [33] : 80526a378ee1b9a6f0b3bb5adab51655fa818d55e7a527d4d8f4806617f0d8e2
Arg [34] : 06743342e618902c68a506e80686415f65f0bb1c9b03d432d819864dae640005
Arg [35] : 31127bb1c8ddddc8e8240423426c9e0ea08ddee024308ff6d9b2d7bd0dcad887


Deployed Bytecode Sourcemap

26170:211:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15968:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18114:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25543:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17067:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25880:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18765:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16911:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19495:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20578:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17238:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12623:103;;;:::i;:::-;;25746:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11975:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16178:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20216:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17578:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15050:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15157:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26071:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17816:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12881:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15083:35;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15968:91;16013:13;16046:5;16039:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15968:91;:::o;18114:169::-;18197:4;18214:39;18223:12;:10;:12::i;:::-;18237:7;18246:6;18214:8;:39::i;:::-;18271:4;18264:11;;18114:169;;;;:::o;25543:195::-;11861:13;:11;:13::i;:::-;25611:5:::1;:43;25644:7;25627:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;25617:36;;;;;;25611:43;;;;;;;;;;;;;;;;;;;;;25610:44;25602:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;25726:4;25680:5;:43;25713:7;25696:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;25686:36;;;;;;25680:43;;;;;;;;;;;;:50;;;;;;;;;;;;;;;;;;25543:195:::0;:::o;17067:108::-;17128:7;17155:12;;17148:19;;17067:108;:::o;25880:183::-;11861:13;:11;:13::i;:::-;25975:3:::1;25952:27;;:11;;;;;;;;;;;:27;;;25944:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;26014:5;26000:11;;:19;;;;;;;;;;;;;;;;;;26051:4;26030:5;:18;26036:11;;;;;;;;;;;26030:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;25880:183:::0;:::o;18765:321::-;18871:4;18888:36;18898:6;18906:9;18917:6;18888:9;:36::i;:::-;18935:121;18944:6;18952:12;:10;:12::i;:::-;18966:89;19004:6;18966:89;;;;;;;;;;;;;;;;;:11;:19;18978:6;18966:19;;;;;;;;;;;;;;;:33;18986:12;:10;:12::i;:::-;18966:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;18935:8;:121::i;:::-;19074:4;19067:11;;18765:321;;;;;:::o;16911:91::-;16960:5;16985:9;;;;;;;;;;;16978:16;;16911:91;:::o;19495:218::-;19583:4;19600:83;19609:12;:10;:12::i;:::-;19623:7;19632:50;19671:10;19632:11;:25;19644:12;:10;:12::i;:::-;19632:25;;;;;;;;;;;;;;;:34;19658:7;19632:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;19600:8;:83::i;:::-;19701:4;19694:11;;19495:218;;;;:::o;20578:120::-;20624:4;20641:27;20647:12;:10;:12::i;:::-;20661:6;20641:5;:27::i;:::-;20686:4;20679:11;;20578:120;;;:::o;17238:127::-;17312:7;17339:9;:18;17349:7;17339:18;;;;;;;;;;;;;;;;17332:25;;17238:127;;;:::o;12623:103::-;11861:13;:11;:13::i;:::-;12688:30:::1;12715:1;12688:18;:30::i;:::-;12623:103::o:0;25746:126::-;11861:13;:11;:13::i;:::-;25812:5:::1;:12;25818:5;25812:12;;;;;;;;;;;;;;;;;;;;;;;;;25811:13;25803:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;25860:4;25845:5;:12;25851:5;25845:12;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;25746:126:::0;:::o;11975:87::-;12021:7;12048:6;;;;;;;;;;;12041:13;;11975:87;:::o;16178:95::-;16225:13;16258:7;16251:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16178:95;:::o;20216:269::-;20309:4;20326:129;20335:12;:10;:12::i;:::-;20349:7;20358:96;20397:15;20358:96;;;;;;;;;;;;;;;;;:11;:25;20370:12;:10;:12::i;:::-;20358:25;;;;;;;;;;;;;;;:34;20384:7;20358:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;20326:8;:129::i;:::-;20473:4;20466:11;;20216:269;;;;:::o;17578:175::-;17664:4;17681:42;17691:12;:10;:12::i;:::-;17705:9;17716:6;17681:9;:42::i;:::-;17741:4;17734:11;;17578:175;;;;:::o;15050:26::-;;;;;;;;;;;;;:::o;15157:29::-;;;;:::o;26071:90::-;26116:7;26143:10;;26136:17;;26071:90;:::o;17816:151::-;17905:7;17932:11;:18;17944:5;17932:18;;;;;;;;;;;;;;;:27;17951:7;17932:27;;;;;;;;;;;;;;;;17925:34;;17816:151;;;;:::o;12881:201::-;11861:13;:11;:13::i;:::-;12990:1:::1;12970:22;;:8;:22;;;;12962:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13046:28;13065:8;13046:18;:28::i;:::-;12881:201:::0;:::o;15083:35::-;;;;;;;;;;;;;;;;;;;;;;:::o;6231:179::-;6289:7;6309:9;6325:1;6321;:5;;;;:::i;:::-;6309:17;;6350:1;6345;:6;;6337:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;6401:1;6394:8;;;6231:179;;;;:::o;600:98::-;653:7;680:10;673:17;;600:98;:::o;23580:346::-;23699:1;23682:19;;:5;:19;;;;23674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23780:1;23761:21;;:7;:21;;;;23753:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23864:6;23834:11;:18;23846:5;23834:18;;;;;;;;;;;;;;;:27;23853:7;23834:27;;;;;;;;;;;;;;;:36;;;;23902:7;23886:32;;23895:5;23886:32;;;23911:6;23886:32;;;;;;:::i;:::-;;;;;;;;23580:346;;;:::o;12140:132::-;12215:12;:10;:12::i;:::-;12204:23;;:7;:5;:7::i;:::-;:23;;;12196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12140:132::o;21188:543::-;21312:1;21294:20;;:6;:20;;;;21286:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;21396:1;21375:23;;:9;:23;;;;21367:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21451:47;21472:6;21480:9;21491:6;21451:20;:47::i;:::-;21531:71;21553:6;21531:71;;;;;;;;;;;;;;;;;:9;:17;21541:6;21531:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;21511:9;:17;21521:6;21511:17;;;;;;;;;;;;;;;:91;;;;21638:32;21663:6;21638:9;:20;21648:9;21638:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;21615:9;:20;21625:9;21615:20;;;;;;;;;;;;;;;:55;;;;21705:9;21688:35;;21697:6;21688:35;;;21716:6;21688:35;;;;;;:::i;:::-;;;;;;;;21188:543;;;:::o;9058:166::-;9144:7;9177:1;9172;:6;;9180:12;9164:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9215:1;9211;:5;;;;:::i;:::-;9204:12;;9058:166;;;;;:::o;22724:418::-;22827:1;22808:21;;:7;:21;;;;22800:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22880:49;22901:7;22918:1;22922:6;22880:20;:49::i;:::-;22963:68;22986:6;22963:68;;;;;;;;;;;;;;;;;:9;:18;22973:7;22963:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;22942:9;:18;22952:7;22942:18;;;;;;;;;;;;;;;:89;;;;23057:24;23074:6;23057:12;;:16;;:24;;;;:::i;:::-;23042:12;:39;;;;23123:1;23097:37;;23106:7;23097:37;;;23127:6;23097:37;;;;;;:::i;:::-;;;;;;;;22724:418;;:::o;13242:191::-;13316:16;13335:6;;;;;;;;;;;13316:25;;13361:8;13352:6;;:17;;;;;;;;;;;;;;;;;;13416:8;13385:40;;13406:8;13385:40;;;;;;;;;;;;13242:191;;:::o;24959:576::-;25062:5;:9;25068:2;25062:9;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;;25083:7;;;;;;;;;;;25075:15;;:4;:15;;;25062:28;:45;;;;25100:7;;;;;;;;;;;25094:13;;:2;:13;;;25062:45;25059:82;;;25123:7;;25059:82;25153:16;25188:6;25172:9;:13;25182:2;25172:13;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;25153:41;;25239:6;;25227:8;:18;;25205:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;25326:5;:40;25359:4;25342:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;25332:33;;;;;;25326:40;;;;;;;;;;;;;;;;;;;;;:82;;;;25370:5;:38;25403:2;25386:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;25376:31;;;;;;25370:38;;;;;;;;;;;;;;;;;;;;;25326:82;25322:121;;;25425:7;;;25322:121;25479:10;;25461:15;:28;25453:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24959:576;;;;;:::o;6693:158::-;6751:7;6784:1;6779;:6;;6771:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;6842:1;6838;:5;;;;:::i;:::-;6831:12;;6693:158;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:157::-;2446:45;2466:24;2484:5;2466:24;:::i;:::-;2446:45;:::i;:::-;2441:3;2434:58;2424:74;;:::o;2504:109::-;2585:21;2600:5;2585:21;:::i;:::-;2580:3;2573:34;2563:50;;:::o;2619:364::-;2707:3;2735:39;2768:5;2735:39;:::i;:::-;2790:71;2854:6;2849:3;2790:71;:::i;:::-;2783:78;;2870:52;2915:6;2910:3;2903:4;2896:5;2892:16;2870:52;:::i;:::-;2947:29;2969:6;2947:29;:::i;:::-;2942:3;2938:39;2931:46;;2711:272;;;;;:::o;2989:366::-;3131:3;3152:67;3216:2;3211:3;3152:67;:::i;:::-;3145:74;;3228:93;3317:3;3228:93;:::i;:::-;3346:2;3341:3;3337:12;3330:19;;3135:220;;;:::o;3361:366::-;3503:3;3524:67;3588:2;3583:3;3524:67;:::i;:::-;3517:74;;3600:93;3689:3;3600:93;:::i;:::-;3718:2;3713:3;3709:12;3702:19;;3507:220;;;:::o;3733:366::-;3875:3;3896:67;3960:2;3955:3;3896:67;:::i;:::-;3889:74;;3972:93;4061:3;3972:93;:::i;:::-;4090:2;4085:3;4081:12;4074:19;;3879:220;;;:::o;4105:366::-;4247:3;4268:67;4332:2;4327:3;4268:67;:::i;:::-;4261:74;;4344:93;4433:3;4344:93;:::i;:::-;4462:2;4457:3;4453:12;4446:19;;4251:220;;;:::o;4477:366::-;4619:3;4640:67;4704:2;4699:3;4640:67;:::i;:::-;4633:74;;4716:93;4805:3;4716:93;:::i;:::-;4834:2;4829:3;4825:12;4818:19;;4623:220;;;:::o;4849:366::-;4991:3;5012:67;5076:2;5071:3;5012:67;:::i;:::-;5005:74;;5088:93;5177:3;5088:93;:::i;:::-;5206:2;5201:3;5197:12;5190:19;;4995:220;;;:::o;5221:366::-;5363:3;5384:67;5448:2;5443:3;5384:67;:::i;:::-;5377:74;;5460:93;5549:3;5460:93;:::i;:::-;5578:2;5573:3;5569:12;5562:19;;5367:220;;;:::o;5593:366::-;5735:3;5756:67;5820:2;5815:3;5756:67;:::i;:::-;5749:74;;5832:93;5921:3;5832:93;:::i;:::-;5950:2;5945:3;5941:12;5934:19;;5739:220;;;:::o;5965:366::-;6107:3;6128:67;6192:2;6187:3;6128:67;:::i;:::-;6121:74;;6204:93;6293:3;6204:93;:::i;:::-;6322:2;6317:3;6313:12;6306:19;;6111:220;;;:::o;6337:365::-;6479:3;6500:66;6564:1;6559:3;6500:66;:::i;:::-;6493:73;;6575:93;6664:3;6575:93;:::i;:::-;6693:2;6688:3;6684:12;6677:19;;6483:219;;;:::o;6708:366::-;6850:3;6871:67;6935:2;6930:3;6871:67;:::i;:::-;6864:74;;6947:93;7036:3;6947:93;:::i;:::-;7065:2;7060:3;7056:12;7049:19;;6854:220;;;:::o;7080:366::-;7222:3;7243:67;7307:2;7302:3;7243:67;:::i;:::-;7236:74;;7319:93;7408:3;7319:93;:::i;:::-;7437:2;7432:3;7428:12;7421:19;;7226:220;;;:::o;7452:366::-;7594:3;7615:67;7679:2;7674:3;7615:67;:::i;:::-;7608:74;;7691:93;7780:3;7691:93;:::i;:::-;7809:2;7804:3;7800:12;7793:19;;7598:220;;;:::o;7824:118::-;7911:24;7929:5;7911:24;:::i;:::-;7906:3;7899:37;7889:53;;:::o;7948:112::-;8031:22;8047:5;8031:22;:::i;:::-;8026:3;8019:35;8009:51;;:::o;8066:256::-;8178:3;8193:75;8264:3;8255:6;8193:75;:::i;:::-;8293:2;8288:3;8284:12;8277:19;;8313:3;8306:10;;8182:140;;;;:::o;8328:222::-;8421:4;8459:2;8448:9;8444:18;8436:26;;8472:71;8540:1;8529:9;8525:17;8516:6;8472:71;:::i;:::-;8426:124;;;;:::o;8556:210::-;8643:4;8681:2;8670:9;8666:18;8658:26;;8694:65;8756:1;8745:9;8741:17;8732:6;8694:65;:::i;:::-;8648:118;;;;:::o;8772:313::-;8885:4;8923:2;8912:9;8908:18;8900:26;;8972:9;8966:4;8962:20;8958:1;8947:9;8943:17;8936:47;9000:78;9073:4;9064:6;9000:78;:::i;:::-;8992:86;;8890:195;;;;:::o;9091:419::-;9257:4;9295:2;9284:9;9280:18;9272:26;;9344:9;9338:4;9334:20;9330:1;9319:9;9315:17;9308:47;9372:131;9498:4;9372:131;:::i;:::-;9364:139;;9262:248;;;:::o;9516:419::-;9682:4;9720:2;9709:9;9705:18;9697:26;;9769:9;9763:4;9759:20;9755:1;9744:9;9740:17;9733:47;9797:131;9923:4;9797:131;:::i;:::-;9789:139;;9687:248;;;:::o;9941:419::-;10107:4;10145:2;10134:9;10130:18;10122:26;;10194:9;10188:4;10184:20;10180:1;10169:9;10165:17;10158:47;10222:131;10348:4;10222:131;:::i;:::-;10214:139;;10112:248;;;:::o;10366:419::-;10532:4;10570:2;10559:9;10555:18;10547:26;;10619:9;10613:4;10609:20;10605:1;10594:9;10590:17;10583:47;10647:131;10773:4;10647:131;:::i;:::-;10639:139;;10537:248;;;:::o;10791:419::-;10957:4;10995:2;10984:9;10980:18;10972:26;;11044:9;11038:4;11034:20;11030:1;11019:9;11015:17;11008:47;11072:131;11198:4;11072:131;:::i;:::-;11064:139;;10962:248;;;:::o;11216:419::-;11382:4;11420:2;11409:9;11405:18;11397:26;;11469:9;11463:4;11459:20;11455:1;11444:9;11440:17;11433:47;11497:131;11623:4;11497:131;:::i;:::-;11489:139;;11387:248;;;:::o;11641:419::-;11807:4;11845:2;11834:9;11830:18;11822:26;;11894:9;11888:4;11884:20;11880:1;11869:9;11865:17;11858:47;11922:131;12048:4;11922:131;:::i;:::-;11914:139;;11812:248;;;:::o;12066:419::-;12232:4;12270:2;12259:9;12255:18;12247:26;;12319:9;12313:4;12309:20;12305:1;12294:9;12290:17;12283:47;12347:131;12473:4;12347:131;:::i;:::-;12339:139;;12237:248;;;:::o;12491:419::-;12657:4;12695:2;12684:9;12680:18;12672:26;;12744:9;12738:4;12734:20;12730:1;12719:9;12715:17;12708:47;12772:131;12898:4;12772:131;:::i;:::-;12764:139;;12662:248;;;:::o;12916:419::-;13082:4;13120:2;13109:9;13105:18;13097:26;;13169:9;13163:4;13159:20;13155:1;13144:9;13140:17;13133:47;13197:131;13323:4;13197:131;:::i;:::-;13189:139;;13087:248;;;:::o;13341:419::-;13507:4;13545:2;13534:9;13530:18;13522:26;;13594:9;13588:4;13584:20;13580:1;13569:9;13565:17;13558:47;13622:131;13748:4;13622:131;:::i;:::-;13614:139;;13512:248;;;:::o;13766:419::-;13932:4;13970:2;13959:9;13955:18;13947:26;;14019:9;14013:4;14009:20;14005:1;13994:9;13990:17;13983:47;14047:131;14173:4;14047:131;:::i;:::-;14039:139;;13937:248;;;:::o;14191:419::-;14357:4;14395:2;14384:9;14380:18;14372:26;;14444:9;14438:4;14434:20;14430:1;14419:9;14415:17;14408:47;14472:131;14598:4;14472:131;:::i;:::-;14464:139;;14362:248;;;:::o;14616:222::-;14709:4;14747:2;14736:9;14732:18;14724:26;;14760:71;14828:1;14817:9;14813:17;14804:6;14760:71;:::i;:::-;14714:124;;;;:::o;14844:214::-;14933:4;14971:2;14960:9;14956:18;14948:26;;14984:67;15048:1;15037:9;15033:17;15024:6;14984:67;:::i;:::-;14938:120;;;;:::o;15064:99::-;15116:6;15150:5;15144:12;15134:22;;15123:40;;;:::o;15169:169::-;15253:11;15287:6;15282:3;15275:19;15327:4;15322:3;15318:14;15303:29;;15265:73;;;;:::o;15344:305::-;15384:3;15403:20;15421:1;15403:20;:::i;:::-;15398:25;;15437:20;15455:1;15437:20;:::i;:::-;15432:25;;15591:1;15523:66;15519:74;15516:1;15513:81;15510:2;;;15597:18;;:::i;:::-;15510:2;15641:1;15638;15634:9;15627:16;;15388:261;;;;:::o;15655:191::-;15695:4;15715:20;15733:1;15715:20;:::i;:::-;15710:25;;15749:20;15767:1;15749:20;:::i;:::-;15744:25;;15788:1;15785;15782:8;15779:2;;;15793:18;;:::i;:::-;15779:2;15838:1;15835;15831:9;15823:17;;15700:146;;;;:::o;15852:96::-;15889:7;15918:24;15936:5;15918:24;:::i;:::-;15907:35;;15897:51;;;:::o;15954:90::-;15988:7;16031:5;16024:13;16017:21;16006:32;;15996:48;;;:::o;16050:126::-;16087:7;16127:42;16120:5;16116:54;16105:65;;16095:81;;;:::o;16182:77::-;16219:7;16248:5;16237:16;;16227:32;;;:::o;16265:86::-;16300:7;16340:4;16333:5;16329:16;16318:27;;16308:43;;;:::o;16357:307::-;16425:1;16435:113;16449:6;16446:1;16443:13;16435:113;;;16534:1;16529:3;16525:11;16519:18;16515:1;16510:3;16506:11;16499:39;16471:2;16468:1;16464:10;16459:15;;16435:113;;;16566:6;16563:1;16560:13;16557:2;;;16646:1;16637:6;16632:3;16628:16;16621:27;16557:2;16406:258;;;;:::o;16670:320::-;16714:6;16751:1;16745:4;16741:12;16731:22;;16798:1;16792:4;16788:12;16819:18;16809:2;;16875:4;16867:6;16863:17;16853:27;;16809:2;16937;16929:6;16926:14;16906:18;16903:38;16900:2;;;16956:18;;:::i;:::-;16900:2;16721:269;;;;:::o;16996:100::-;17035:7;17064:26;17084:5;17064:26;:::i;:::-;17053:37;;17043:53;;;:::o;17102:94::-;17141:7;17170:20;17184:5;17170:20;:::i;:::-;17159:31;;17149:47;;;:::o;17202:180::-;17250:77;17247:1;17240:88;17347:4;17344:1;17337:15;17371:4;17368:1;17361:15;17388:180;17436:77;17433:1;17426:88;17533:4;17530:1;17523:15;17557:4;17554:1;17547:15;17574:102;17615:6;17666:2;17662:7;17657:2;17650:5;17646:14;17642:28;17632:38;;17622:54;;;:::o;17682:94::-;17715:8;17763:5;17759:2;17755:14;17734:35;;17724:52;;;:::o;17782:222::-;17922:34;17918:1;17910:6;17906:14;17899:58;17991:5;17986:2;17978:6;17974:15;17967:30;17888:116;:::o;18010:225::-;18150:34;18146:1;18138:6;18134:14;18127:58;18219:8;18214:2;18206:6;18202:15;18195:33;18116:119;:::o;18241:221::-;18381:34;18377:1;18369:6;18365:14;18358:58;18450:4;18445:2;18437:6;18433:15;18426:29;18347:115;:::o;18468:160::-;18608:12;18604:1;18596:6;18592:14;18585:36;18574:54;:::o;18634:177::-;18774:29;18770:1;18762:6;18758:14;18751:53;18740:71;:::o;18817:223::-;18957:34;18953:1;18945:6;18941:14;18934:58;19026:6;19021:2;19013:6;19009:15;19002:31;18923:117;:::o;19046:180::-;19186:32;19182:1;19174:6;19170:14;19163:56;19152:74;:::o;19232:220::-;19372:34;19368:1;19360:6;19356:14;19349:58;19441:3;19436:2;19428:6;19424:15;19417:28;19338:114;:::o;19458:182::-;19598:34;19594:1;19586:6;19582:14;19575:58;19564:76;:::o;19646:155::-;19786:7;19782:1;19774:6;19770:14;19763:31;19752:49;:::o;19807:220::-;19947:34;19943:1;19935:6;19931:14;19924:58;20016:3;20011:2;20003:6;19999:15;19992:28;19913:114;:::o;20033:224::-;20173:34;20169:1;20161:6;20157:14;20150:58;20242:7;20237:2;20229:6;20225:15;20218:32;20139:118;:::o;20263:223::-;20403:34;20399:1;20391:6;20387:14;20380:58;20472:6;20467:2;20459:6;20455:15;20448:31;20369:117;:::o;20492:122::-;20565:24;20583:5;20565:24;:::i;:::-;20558:5;20555:35;20545:2;;20604:1;20601;20594:12;20545:2;20535:79;:::o;20620:122::-;20693:24;20711:5;20693:24;:::i;:::-;20686:5;20683:35;20673:2;;20732:1;20729;20722:12;20673:2;20663:79;:::o

Swarm Source

ipfs://575878a9579076c339fd0d6b28417b464400d2833a39dd9a66822c4d1a94350f
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.