Polygon Sponsored slots available. Book your slot here!
ERC-20
FxChild
Overview
Max Total Supply
249,957,960 GAUI
Holders
1,177
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
GaugeChildToken
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./BlacklistToken.sol"; contract GaugeChildToken is BlacklistToken { // keeping it for checking, whether deposit being called by valid address or not address public childChainManagerProxy; constructor(string memory name_, string memory symbol_, address _blacklist,address _childChainManagerProxy) BlacklistToken( name_, symbol_, _blacklist){ childChainManagerProxy=_childChainManagerProxy; } function transferBatch(address[] memory accounts, uint256[] memory amounts) public { require(accounts.length == amounts.length, 'transferBatch: Arrays must be the same length'); for(uint16 i = 0; i < accounts.length; i++){ _transfer(msg.sender, accounts[i], amounts[i]); } } // being proxified smart contract, most probably childChainManagerProxy contract's address // is not going to change ever, but still, lets keep it function updateChildChainManager(address newChildChainManagerProxy) external onlyOwner { require(newChildChainManagerProxy != address(0), "Bad ChildChainManagerProxy address"); childChainManagerProxy = newChildChainManagerProxy; } function deposit(address user, bytes calldata depositData) external { require(msg.sender == childChainManagerProxy, "You're not allowed to deposit"); uint256 amount = abi.decode(depositData, (uint256)); //All this process is already implemented as internal functions _mint(user, amount); // // `amount` token getting minted here & equal amount got locked in RootChainManager // _totalSupply = _totalSupply.add(amount); // _balances[user] = _balances[user].add(amount); // emit Transfer(address(0), user, amount); } function withdraw(uint256 amount) external { //All this process is already implemented as internal functions _burn(msg.sender, amount); // _balances[msg.sender] = _balances[msg.sender].sub(amount, "ERC20: burn amount exceeds balance"); // _totalSupply = _totalSupply.sub(amount); // emit Transfer(msg.sender, address(0), amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ 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) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { 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) { unchecked { // 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) { unchecked { 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) { unchecked { 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) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return 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) { return a * b; } /** * @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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { 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) { 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) { unchecked { 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. * * 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) { unchecked { 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) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./SnapshotToken.sol"; import "./Blacklist/IBlacklist.sol"; contract BlacklistToken is SnapshotToken { address public blacklist; event DestroyedBlackFunds(address _blackListedUser, uint _balance); constructor(string memory name_, string memory symbol_, address _blacklist) SnapshotToken( name_, symbol_){ blacklist = _blacklist; } modifier isNotBlacklisted(address _account) { bool isBlacklisted = IBlacklist(blacklist).isBlacklisted(_account); require(!isBlacklisted , 'isNotBlacklisted: this account is blacklisted'); _; } function destroyBlackFunds (address _account, uint256 amount) public onlyOwner { require(IBlacklist(blacklist).isBlacklisted(_account),'destroyBlackFunds: user must be blacklisted'); bool success = IBlacklist(blacklist).remove(_account); require(success, 'destroyBlackFunds: remove failed'); _burn(_account, amount); IBlacklist(blacklist).add(_account); emit DestroyedBlackFunds(_account, amount); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override isNotBlacklisted(from) isNotBlacklisted(to) { super._beforeTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./PausableToken.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol"; contract SnapshotToken is PausableToken, ERC20Snapshot { constructor(string memory name_, string memory symbol_) PausableToken( name_, symbol_){ } function snapshot() public onlyOwner { _snapshot(); } function _beforeTokenTransfer( address from, address to, uint256 amount )virtual internal override(ERC20Pausable, ERC20Snapshot) { super._beforeTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IBlacklist { event AddedToBlacklist(address indexed account); event RemovedFromBlacklist(address indexed account); function add(address account) external returns(bool); function remove(address account) external returns(bool); function isBlacklisted(address account)external returns(bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract PausableToken is ERC20Pausable, Ownable { constructor (string memory name_, string memory symbol_) ERC20(name_, symbol_) { } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/extensions/ERC20Snapshot.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Arrays.sol"; import "../../../utils/Counters.sol"; /** * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id * and the account address. * * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it * return `block.number` will trigger the creation of snapshot at the beginning of each new block. When overriding this * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract. * * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient * alternative consider {ERC20Votes}. * * ==== Gas Costs * * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much * smaller since identical balances in subsequent snapshots are stored as a single entry. * * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent * transfers will have normal cost until the next snapshot, and so on. */ abstract contract ERC20Snapshot is ERC20 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using Arrays for uint256[]; using Counters for Counters.Counter; // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a // Snapshot struct, but that would impede usage of functions that work on an array. struct Snapshots { uint256[] ids; uint256[] values; } mapping(address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid. Counters.Counter private _currentSnapshotId; /** * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created. */ event Snapshot(uint256 id); /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. * * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a * set of accounts, for example using {AccessControl}, or it may be open to the public. * * [WARNING] * ==== * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking, * you must consider that it can potentially be used by attackers in two ways. * * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs * section above. * * We haven't measured the actual numbers; if this is something you're interested in please reach out to us. * ==== */ function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _getCurrentSnapshotId(); emit Snapshot(currentId); return currentId; } /** * @dev Get the current snapshotId */ function _getCurrentSnapshotId() internal view virtual returns (uint256) { return _currentSnapshotId.current(); } /** * @dev Retrieves the balance of `account` at the time `snapshotId` was created. */ function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : balanceOf(account); } /** * @dev Retrieves the total supply at the time `snapshotId` was created. */ function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } // Update balance and/or total supply snapshots before the values are modified. This is implemented // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations. function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // mint _updateAccountSnapshot(to); _updateTotalSupplySnapshot(); } else if (to == address(0)) { // burn _updateAccountSnapshot(from); _updateTotalSupplySnapshot(); } else { // transfer _updateAccountSnapshot(from); _updateAccountSnapshot(to); } } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id"); // When a valid snapshot is queried, there are three possibilities: // a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never // created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds // to this id is the current one. // b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the // requested id, and its value is the one to return. // c) More snapshots were created after the requested one, and the queried value was later modified. There will be // no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is // larger than the requested one. // // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does // exactly this. uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } function _updateAccountSnapshot(address account) private { _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account)); } function _updateTotalSupplySnapshot() private { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _getCurrentSnapshotId(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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 Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; 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; } /** * @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 `sender` to `recipient`. * * 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; } _balances[to] += amount; 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; _balances[account] += amount; 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; } _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 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 {} /** * @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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_blacklist","type":"address"},{"internalType":"address","name":"_childChainManagerProxy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_blackListedUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"childChainManagerProxy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"depositData","type":"bytes"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"destroyBlackFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","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":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"transferBatch","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newChildChainManagerProxy","type":"address"}],"name":"updateChildChainManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003dff38038062003dff8339818101604052810190620000379190620004c2565b83838382828181818181600390805190602001906200005892919062000210565b5080600490805190602001906200007192919062000210565b5050506000600560006101000a81548160ff021916908315150217905550620000af620000a36200014260201b60201c565b6200014a60201b60201c565b5050505080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050620005d7565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021e90620005a1565b90600052602060002090601f0160209004810192826200024257600085556200028e565b82601f106200025d57805160ff19168380011785556200028e565b828001600101855582156200028e579182015b828111156200028d57825182559160200191906001019062000270565b5b5090506200029d9190620002a1565b5090565b5b80821115620002bc576000816000905550600101620002a2565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200032982620002de565b810181811067ffffffffffffffff821117156200034b576200034a620002ef565b5b80604052505050565b600062000360620002c0565b90506200036e82826200031e565b919050565b600067ffffffffffffffff821115620003915762000390620002ef565b5b6200039c82620002de565b9050602081019050919050565b60005b83811015620003c9578082015181840152602081019050620003ac565b83811115620003d9576000848401525b50505050565b6000620003f6620003f08462000373565b62000354565b905082815260208101848484011115620004155762000414620002d9565b5b62000422848285620003a9565b509392505050565b600082601f830112620004425762000441620002d4565b5b815162000454848260208601620003df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200048a826200045d565b9050919050565b6200049c816200047d565b8114620004a857600080fd5b50565b600081519050620004bc8162000491565b92915050565b60008060008060808587031215620004df57620004de620002ca565b5b600085015167ffffffffffffffff8111156200050057620004ff620002cf565b5b6200050e878288016200042a565b945050602085015167ffffffffffffffff811115620005325762000531620002cf565b5b62000540878288016200042a565b93505060406200055387828801620004ab565b92505060606200056687828801620004ab565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005ba57607f821691505b60208210811415620005d157620005d062000572565b5b50919050565b61381880620005e76000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806362f629e7116100f9578063981b24d011610097578063a9059cbb11610071578063a9059cbb14610486578063cf2c52cb146104b6578063dd62ed3e146104d2578063f2fde38b14610502576101a9565b8063981b24d014610408578063a457c2d714610438578063a4b5fa5614610468576101a9565b80638456cb59116100d35780638456cb59146103b85780638da5cb5b146103c257806395d89b41146103e05780639711715a146103fe576101a9565b806362f629e71461036057806370a082311461037e578063715018a6146103ae576101a9565b80633950935111610166578063445a679711610140578063445a6797146102da5780634ee2cd7e146102f657806353d51e64146103265780635c975abb14610342576101a9565b806339509351146102845780633b3e672f146102b45780633f4ba83a146102d0576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806323b872dd1461021a5780632e1a7d4d1461024a578063313ce56714610266575b600080fd5b6101b661051e565b6040516101c391906123c0565b60405180910390f35b6101e660048036038101906101e1919061248a565b6105b0565b6040516101f391906124e5565b60405180910390f35b6102046105d3565b604051610211919061250f565b60405180910390f35b610234600480360381019061022f919061252a565b6105dd565b60405161024191906124e5565b60405180910390f35b610264600480360381019061025f919061257d565b61060c565b005b61026e610619565b60405161027b91906125c6565b60405180910390f35b61029e6004803603810190610299919061248a565b610622565b6040516102ab91906124e5565b60405180910390f35b6102ce60048036038101906102c991906127ec565b610659565b005b6102d861070c565b005b6102f460048036038101906102ef9190612864565b610792565b005b610310600480360381019061030b919061248a565b6108c2565b60405161031d919061250f565b60405180910390f35b610340600480360381019061033b919061248a565b610932565b005b61034a610c54565b60405161035791906124e5565b60405180910390f35b610368610c6b565b60405161037591906128a0565b60405180910390f35b61039860048036038101906103939190612864565b610c91565b6040516103a5919061250f565b60405180910390f35b6103b6610cd9565b005b6103c0610d61565b005b6103ca610de7565b6040516103d791906128a0565b60405180910390f35b6103e8610e11565b6040516103f591906123c0565b60405180910390f35b610406610ea3565b005b610422600480360381019061041d919061257d565b610f2a565b60405161042f919061250f565b60405180910390f35b610452600480360381019061044d919061248a565b610f5b565b60405161045f91906124e5565b60405180910390f35b610470610fd2565b60405161047d91906128a0565b60405180910390f35b6104a0600480360381019061049b919061248a565b610ff8565b6040516104ad91906124e5565b60405180910390f35b6104d060048036038101906104cb9190612916565b61101b565b005b6104ec60048036038101906104e79190612976565b6110ce565b6040516104f9919061250f565b60405180910390f35b61051c60048036038101906105179190612864565b611155565b005b60606003805461052d906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610559906129e5565b80156105a65780601f1061057b576101008083540402835291602001916105a6565b820191906000526020600020905b81548152906001019060200180831161058957829003601f168201915b5050505050905090565b6000806105bb61124d565b90506105c8818585611255565b600191505092915050565b6000600254905090565b6000806105e861124d565b90506105f5858285611420565b6106008585856114ac565b60019150509392505050565b610616338261172d565b50565b60006012905090565b60008061062d61124d565b905061064e81858561063f85896110ce565b6106499190612a46565b611255565b600191505092915050565b805182511461069d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069490612b0e565b60405180910390fd5b60005b82518161ffff161015610707576106f433848361ffff16815181106106c8576106c7612b2e565b5b6020026020010151848461ffff16815181106106e7576106e6612b2e565b5b60200260200101516114ac565b80806106ff90612b6b565b9150506106a0565b505050565b61071461124d565b73ffffffffffffffffffffffffffffffffffffffff16610732610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077f90612be2565b60405180910390fd5b610790611904565b565b61079a61124d565b73ffffffffffffffffffffffffffffffffffffffff166107b8610de7565b73ffffffffffffffffffffffffffffffffffffffff161461080e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080590612be2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561087e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087590612c74565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600061090f84600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206119a6565b91509150816109265761092185610c91565b610928565b805b9250505092915050565b61093a61124d565b73ffffffffffffffffffffffffffffffffffffffff16610958610de7565b73ffffffffffffffffffffffffffffffffffffffff16146109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590612be2565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe575a87836040518263ffffffff1660e01b8152600401610a0991906128a0565b6020604051808303816000875af1158015610a28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4c9190612cc0565b610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612d5f565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166329092d0e846040518263ffffffff1660e01b8152600401610ae891906128a0565b6020604051808303816000875af1158015610b07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2b9190612cc0565b905080610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490612dcb565b60405180910390fd5b610b77838361172d565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630a3b0a4f846040518263ffffffff1660e01b8152600401610bd291906128a0565b6020604051808303816000875af1158015610bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c159190612cc0565b507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c68383604051610c47929190612deb565b60405180910390a1505050565b6000600560009054906101000a900460ff16905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce161124d565b73ffffffffffffffffffffffffffffffffffffffff16610cff610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90612be2565b60405180910390fd5b610d5f6000611a9c565b565b610d6961124d565b73ffffffffffffffffffffffffffffffffffffffff16610d87610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490612be2565b60405180910390fd5b610de5611b62565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e20906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4c906129e5565b8015610e995780601f10610e6e57610100808354040283529160200191610e99565b820191906000526020600020905b815481529060010190602001808311610e7c57829003601f168201915b5050505050905090565b610eab61124d565b73ffffffffffffffffffffffffffffffffffffffff16610ec9610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690612be2565b60405180910390fd5b610f27611c05565b50565b6000806000610f3a8460076119a6565b9150915081610f5057610f4b6105d3565b610f52565b805b92505050919050565b600080610f6661124d565b90506000610f7482866110ce565b905083811015610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090612e86565b60405180910390fd5b610fc68286868403611255565b60019250505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061100361124d565b90506110108185856114ac565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290612ef2565b60405180910390fd5b600082828101906110bc919061257d565b90506110c88482611c5b565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61115d61124d565b73ffffffffffffffffffffffffffffffffffffffff1661117b610de7565b73ffffffffffffffffffffffffffffffffffffffff16146111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890612be2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890612f84565b60405180910390fd5b61124a81611a9c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90613016565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c906130a8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611413919061250f565b60405180910390a3505050565b600061142c84846110ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a65781811015611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90613114565b60405180910390fd5b6114a58484848403611255565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561151c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611513906131a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613238565b60405180910390fd5b611597838383611dbb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561161d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611614906132ca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116b09190612a46565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611714919061250f565b60405180910390a3611727848484611f97565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117949061335c565b60405180910390fd5b6117a982600083611dbb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561182f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611826906133ee565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611886919061340e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118eb919061250f565b60405180910390a36118ff83600084611f97565b505050565b61190c610c54565b61194b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119429061348e565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61198f61124d565b60405161199c91906128a0565b60405180910390a1565b600080600084116119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e3906134fa565b60405180910390fd5b6119f4611f9c565b841115611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613566565b60405180910390fd5b6000611a4e8585600001611fad90919063ffffffff16565b90508360000180549050811415611a6c576000809250925050611a95565b6001846001018281548110611a8457611a83612b2e565b5b906000526020600020015492509250505b9250929050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b6a610c54565b15611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba1906135d2565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bee61124d565b604051611bfb91906128a0565b60405180910390a1565b6000611c116009612087565b6000611c1b611f9c565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611c4c919061250f565b60405180910390a18091505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc29061363e565b60405180910390fd5b611cd760008383611dbb565b8060026000828254611ce99190612a46565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d3e9190612a46565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611da3919061250f565b60405180910390a3611db760008383611f97565b5050565b826000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe575a87836040518263ffffffff1660e01b8152600401611e1991906128a0565b6020604051808303816000875af1158015611e38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5c9190612cc0565b90508015611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e96906136d0565b60405180910390fd5b836000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe575a87836040518263ffffffff1660e01b8152600401611efd91906128a0565b6020604051808303816000875af1158015611f1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f409190612cc0565b90508015611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a906136d0565b60405180910390fd5b611f8e87878761209d565b50505050505050565b505050565b6000611fa860096120ad565b905090565b60008083805490501415611fc45760009050612081565b600080848054905090505b80821015612028576000611fe383836120bb565b905084868281548110611ff957611ff8612b2e565b5b9060005260206000200154111561201257809150612022565b60018161201f9190612a46565b92505b50611fcf565b60008211801561206057508385600184612042919061340e565b8154811061205357612052612b2e565b5b9060005260206000200154145b1561207b57600182612072919061340e565b92505050612081565b81925050505b92915050565b6001816000016000828254019250508190555050565b6120a88383836120e1565b505050565b600081600001549050919050565b600060028284186120cc919061371f565b8284166120d99190612a46565b905092915050565b6120ec83838361219b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121375761212a826121f3565b612132612246565b612196565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218257612175836121f3565b61217d612246565b612195565b61218b836121f3565b612194826121f3565b5b5b505050565b6121a683838361225a565b6121ae610c54565b156121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e5906137c2565b60405180910390fd5b505050565b612243600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061223e83610c91565b61225f565b50565b61225860076122536105d3565b61225f565b565b505050565b6000612269611f9c565b905080612278846000016122da565b10156122d55782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600080828054905014156122f15760009050612322565b8160018380549050612303919061340e565b8154811061231457612313612b2e565b5b906000526020600020015490505b919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612361578082015181840152602081019050612346565b83811115612370576000848401525b50505050565b6000601f19601f8301169050919050565b600061239282612327565b61239c8185612332565b93506123ac818560208601612343565b6123b581612376565b840191505092915050565b600060208201905081810360008301526123da8184612387565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612421826123f6565b9050919050565b61243181612416565b811461243c57600080fd5b50565b60008135905061244e81612428565b92915050565b6000819050919050565b61246781612454565b811461247257600080fd5b50565b6000813590506124848161245e565b92915050565b600080604083850312156124a1576124a06123ec565b5b60006124af8582860161243f565b92505060206124c085828601612475565b9150509250929050565b60008115159050919050565b6124df816124ca565b82525050565b60006020820190506124fa60008301846124d6565b92915050565b61250981612454565b82525050565b60006020820190506125246000830184612500565b92915050565b600080600060608486031215612543576125426123ec565b5b60006125518682870161243f565b93505060206125628682870161243f565b925050604061257386828701612475565b9150509250925092565b600060208284031215612593576125926123ec565b5b60006125a184828501612475565b91505092915050565b600060ff82169050919050565b6125c0816125aa565b82525050565b60006020820190506125db60008301846125b7565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61261e82612376565b810181811067ffffffffffffffff8211171561263d5761263c6125e6565b5b80604052505050565b60006126506123e2565b905061265c8282612615565b919050565b600067ffffffffffffffff82111561267c5761267b6125e6565b5b602082029050602081019050919050565b600080fd5b60006126a56126a084612661565b612646565b905080838252602082019050602084028301858111156126c8576126c761268d565b5b835b818110156126f157806126dd888261243f565b8452602084019350506020810190506126ca565b5050509392505050565b600082601f8301126127105761270f6125e1565b5b8135612720848260208601612692565b91505092915050565b600067ffffffffffffffff821115612744576127436125e6565b5b602082029050602081019050919050565b600061276861276384612729565b612646565b9050808382526020820190506020840283018581111561278b5761278a61268d565b5b835b818110156127b457806127a08882612475565b84526020840193505060208101905061278d565b5050509392505050565b600082601f8301126127d3576127d26125e1565b5b81356127e3848260208601612755565b91505092915050565b60008060408385031215612803576128026123ec565b5b600083013567ffffffffffffffff811115612821576128206123f1565b5b61282d858286016126fb565b925050602083013567ffffffffffffffff81111561284e5761284d6123f1565b5b61285a858286016127be565b9150509250929050565b60006020828403121561287a576128796123ec565b5b60006128888482850161243f565b91505092915050565b61289a81612416565b82525050565b60006020820190506128b56000830184612891565b92915050565b600080fd5b60008083601f8401126128d6576128d56125e1565b5b8235905067ffffffffffffffff8111156128f3576128f26128bb565b5b60208301915083600182028301111561290f5761290e61268d565b5b9250929050565b60008060006040848603121561292f5761292e6123ec565b5b600061293d8682870161243f565b935050602084013567ffffffffffffffff81111561295e5761295d6123f1565b5b61296a868287016128c0565b92509250509250925092565b6000806040838503121561298d5761298c6123ec565b5b600061299b8582860161243f565b92505060206129ac8582860161243f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129fd57607f821691505b60208210811415612a1157612a106129b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a5182612454565b9150612a5c83612454565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a9157612a90612a17565b5b828201905092915050565b7f7472616e7366657242617463683a20417272617973206d75737420626520746860008201527f652073616d65206c656e67746800000000000000000000000000000000000000602082015250565b6000612af8602d83612332565b9150612b0382612a9c565b604082019050919050565b60006020820190508181036000830152612b2781612aeb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061ffff82169050919050565b6000612b7682612b5d565b915061ffff821415612b8b57612b8a612a17565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bcc602083612332565b9150612bd782612b96565b602082019050919050565b60006020820190508181036000830152612bfb81612bbf565b9050919050565b7f426164204368696c64436861696e4d616e6167657250726f787920616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c5e602283612332565b9150612c6982612c02565b604082019050919050565b60006020820190508181036000830152612c8d81612c51565b9050919050565b612c9d816124ca565b8114612ca857600080fd5b50565b600081519050612cba81612c94565b92915050565b600060208284031215612cd657612cd56123ec565b5b6000612ce484828501612cab565b91505092915050565b7f64657374726f79426c61636b46756e64733a2075736572206d7573742062652060008201527f626c61636b6c6973746564000000000000000000000000000000000000000000602082015250565b6000612d49602b83612332565b9150612d5482612ced565b604082019050919050565b60006020820190508181036000830152612d7881612d3c565b9050919050565b7f64657374726f79426c61636b46756e64733a2072656d6f7665206661696c6564600082015250565b6000612db5602083612332565b9150612dc082612d7f565b602082019050919050565b60006020820190508181036000830152612de481612da8565b9050919050565b6000604082019050612e006000830185612891565b612e0d6020830184612500565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e70602583612332565b9150612e7b82612e14565b604082019050919050565b60006020820190508181036000830152612e9f81612e63565b9050919050565b7f596f75277265206e6f7420616c6c6f77656420746f206465706f736974000000600082015250565b6000612edc601d83612332565b9150612ee782612ea6565b602082019050919050565b60006020820190508181036000830152612f0b81612ecf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f6e602683612332565b9150612f7982612f12565b604082019050919050565b60006020820190508181036000830152612f9d81612f61565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613000602483612332565b915061300b82612fa4565b604082019050919050565b6000602082019050818103600083015261302f81612ff3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613092602283612332565b915061309d82613036565b604082019050919050565b600060208201905081810360008301526130c181613085565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006130fe601d83612332565b9150613109826130c8565b602082019050919050565b6000602082019050818103600083015261312d816130f1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613190602583612332565b915061319b82613134565b604082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613222602383612332565b915061322d826131c6565b604082019050919050565b6000602082019050818103600083015261325181613215565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006132b4602683612332565b91506132bf82613258565b604082019050919050565b600060208201905081810360008301526132e3816132a7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613346602183612332565b9150613351826132ea565b604082019050919050565b6000602082019050818103600083015261337581613339565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006133d8602283612332565b91506133e38261337c565b604082019050919050565b60006020820190508181036000830152613407816133cb565b9050919050565b600061341982612454565b915061342483612454565b92508282101561343757613436612a17565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613478601483612332565b915061348382613442565b602082019050919050565b600060208201905081810360008301526134a78161346b565b9050919050565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b60006134e4601683612332565b91506134ef826134ae565b602082019050919050565b60006020820190508181036000830152613513816134d7565b9050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b6000613550601d83612332565b915061355b8261351a565b602082019050919050565b6000602082019050818103600083015261357f81613543565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006135bc601083612332565b91506135c782613586565b602082019050919050565b600060208201905081810360008301526135eb816135af565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613628601f83612332565b9150613633826135f2565b602082019050919050565b600060208201905081810360008301526136578161361b565b9050919050565b7f69734e6f74426c61636b6c69737465643a2074686973206163636f756e74206960008201527f7320626c61636b6c697374656400000000000000000000000000000000000000602082015250565b60006136ba602d83612332565b91506136c58261365e565b604082019050919050565b600060208201905081810360008301526136e9816136ad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061372a82612454565b915061373583612454565b925082613745576137446136f0565b5b828204905092915050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006137ac602a83612332565b91506137b782613750565b604082019050919050565b600060208201905081810360008301526137db8161379f565b905091905056fea26469706673582212204373e89d62d10e0307d087deac115e70cec77cce5bbaeff08c7674c18328fe8264736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000095a01ed9189c912a9d3edd7339dc4ef37dadd4a5000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa000000000000000000000000000000000000000000000000000000000000000c47617567654669656c645632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044741554900000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806362f629e7116100f9578063981b24d011610097578063a9059cbb11610071578063a9059cbb14610486578063cf2c52cb146104b6578063dd62ed3e146104d2578063f2fde38b14610502576101a9565b8063981b24d014610408578063a457c2d714610438578063a4b5fa5614610468576101a9565b80638456cb59116100d35780638456cb59146103b85780638da5cb5b146103c257806395d89b41146103e05780639711715a146103fe576101a9565b806362f629e71461036057806370a082311461037e578063715018a6146103ae576101a9565b80633950935111610166578063445a679711610140578063445a6797146102da5780634ee2cd7e146102f657806353d51e64146103265780635c975abb14610342576101a9565b806339509351146102845780633b3e672f146102b45780633f4ba83a146102d0576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806323b872dd1461021a5780632e1a7d4d1461024a578063313ce56714610266575b600080fd5b6101b661051e565b6040516101c391906123c0565b60405180910390f35b6101e660048036038101906101e1919061248a565b6105b0565b6040516101f391906124e5565b60405180910390f35b6102046105d3565b604051610211919061250f565b60405180910390f35b610234600480360381019061022f919061252a565b6105dd565b60405161024191906124e5565b60405180910390f35b610264600480360381019061025f919061257d565b61060c565b005b61026e610619565b60405161027b91906125c6565b60405180910390f35b61029e6004803603810190610299919061248a565b610622565b6040516102ab91906124e5565b60405180910390f35b6102ce60048036038101906102c991906127ec565b610659565b005b6102d861070c565b005b6102f460048036038101906102ef9190612864565b610792565b005b610310600480360381019061030b919061248a565b6108c2565b60405161031d919061250f565b60405180910390f35b610340600480360381019061033b919061248a565b610932565b005b61034a610c54565b60405161035791906124e5565b60405180910390f35b610368610c6b565b60405161037591906128a0565b60405180910390f35b61039860048036038101906103939190612864565b610c91565b6040516103a5919061250f565b60405180910390f35b6103b6610cd9565b005b6103c0610d61565b005b6103ca610de7565b6040516103d791906128a0565b60405180910390f35b6103e8610e11565b6040516103f591906123c0565b60405180910390f35b610406610ea3565b005b610422600480360381019061041d919061257d565b610f2a565b60405161042f919061250f565b60405180910390f35b610452600480360381019061044d919061248a565b610f5b565b60405161045f91906124e5565b60405180910390f35b610470610fd2565b60405161047d91906128a0565b60405180910390f35b6104a0600480360381019061049b919061248a565b610ff8565b6040516104ad91906124e5565b60405180910390f35b6104d060048036038101906104cb9190612916565b61101b565b005b6104ec60048036038101906104e79190612976565b6110ce565b6040516104f9919061250f565b60405180910390f35b61051c60048036038101906105179190612864565b611155565b005b60606003805461052d906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610559906129e5565b80156105a65780601f1061057b576101008083540402835291602001916105a6565b820191906000526020600020905b81548152906001019060200180831161058957829003601f168201915b5050505050905090565b6000806105bb61124d565b90506105c8818585611255565b600191505092915050565b6000600254905090565b6000806105e861124d565b90506105f5858285611420565b6106008585856114ac565b60019150509392505050565b610616338261172d565b50565b60006012905090565b60008061062d61124d565b905061064e81858561063f85896110ce565b6106499190612a46565b611255565b600191505092915050565b805182511461069d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069490612b0e565b60405180910390fd5b60005b82518161ffff161015610707576106f433848361ffff16815181106106c8576106c7612b2e565b5b6020026020010151848461ffff16815181106106e7576106e6612b2e565b5b60200260200101516114ac565b80806106ff90612b6b565b9150506106a0565b505050565b61071461124d565b73ffffffffffffffffffffffffffffffffffffffff16610732610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077f90612be2565b60405180910390fd5b610790611904565b565b61079a61124d565b73ffffffffffffffffffffffffffffffffffffffff166107b8610de7565b73ffffffffffffffffffffffffffffffffffffffff161461080e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080590612be2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561087e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087590612c74565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600061090f84600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206119a6565b91509150816109265761092185610c91565b610928565b805b9250505092915050565b61093a61124d565b73ffffffffffffffffffffffffffffffffffffffff16610958610de7565b73ffffffffffffffffffffffffffffffffffffffff16146109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590612be2565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe575a87836040518263ffffffff1660e01b8152600401610a0991906128a0565b6020604051808303816000875af1158015610a28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4c9190612cc0565b610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612d5f565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166329092d0e846040518263ffffffff1660e01b8152600401610ae891906128a0565b6020604051808303816000875af1158015610b07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2b9190612cc0565b905080610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490612dcb565b60405180910390fd5b610b77838361172d565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630a3b0a4f846040518263ffffffff1660e01b8152600401610bd291906128a0565b6020604051808303816000875af1158015610bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c159190612cc0565b507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c68383604051610c47929190612deb565b60405180910390a1505050565b6000600560009054906101000a900460ff16905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce161124d565b73ffffffffffffffffffffffffffffffffffffffff16610cff610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90612be2565b60405180910390fd5b610d5f6000611a9c565b565b610d6961124d565b73ffffffffffffffffffffffffffffffffffffffff16610d87610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490612be2565b60405180910390fd5b610de5611b62565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e20906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4c906129e5565b8015610e995780601f10610e6e57610100808354040283529160200191610e99565b820191906000526020600020905b815481529060010190602001808311610e7c57829003601f168201915b5050505050905090565b610eab61124d565b73ffffffffffffffffffffffffffffffffffffffff16610ec9610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690612be2565b60405180910390fd5b610f27611c05565b50565b6000806000610f3a8460076119a6565b9150915081610f5057610f4b6105d3565b610f52565b805b92505050919050565b600080610f6661124d565b90506000610f7482866110ce565b905083811015610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090612e86565b60405180910390fd5b610fc68286868403611255565b60019250505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061100361124d565b90506110108185856114ac565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290612ef2565b60405180910390fd5b600082828101906110bc919061257d565b90506110c88482611c5b565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61115d61124d565b73ffffffffffffffffffffffffffffffffffffffff1661117b610de7565b73ffffffffffffffffffffffffffffffffffffffff16146111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890612be2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890612f84565b60405180910390fd5b61124a81611a9c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90613016565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c906130a8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611413919061250f565b60405180910390a3505050565b600061142c84846110ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a65781811015611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90613114565b60405180910390fd5b6114a58484848403611255565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561151c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611513906131a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613238565b60405180910390fd5b611597838383611dbb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561161d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611614906132ca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116b09190612a46565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611714919061250f565b60405180910390a3611727848484611f97565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117949061335c565b60405180910390fd5b6117a982600083611dbb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561182f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611826906133ee565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611886919061340e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118eb919061250f565b60405180910390a36118ff83600084611f97565b505050565b61190c610c54565b61194b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119429061348e565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61198f61124d565b60405161199c91906128a0565b60405180910390a1565b600080600084116119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e3906134fa565b60405180910390fd5b6119f4611f9c565b841115611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613566565b60405180910390fd5b6000611a4e8585600001611fad90919063ffffffff16565b90508360000180549050811415611a6c576000809250925050611a95565b6001846001018281548110611a8457611a83612b2e565b5b906000526020600020015492509250505b9250929050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b6a610c54565b15611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba1906135d2565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bee61124d565b604051611bfb91906128a0565b60405180910390a1565b6000611c116009612087565b6000611c1b611f9c565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611c4c919061250f565b60405180910390a18091505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc29061363e565b60405180910390fd5b611cd760008383611dbb565b8060026000828254611ce99190612a46565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d3e9190612a46565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611da3919061250f565b60405180910390a3611db760008383611f97565b5050565b826000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe575a87836040518263ffffffff1660e01b8152600401611e1991906128a0565b6020604051808303816000875af1158015611e38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5c9190612cc0565b90508015611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e96906136d0565b60405180910390fd5b836000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe575a87836040518263ffffffff1660e01b8152600401611efd91906128a0565b6020604051808303816000875af1158015611f1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f409190612cc0565b90508015611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a906136d0565b60405180910390fd5b611f8e87878761209d565b50505050505050565b505050565b6000611fa860096120ad565b905090565b60008083805490501415611fc45760009050612081565b600080848054905090505b80821015612028576000611fe383836120bb565b905084868281548110611ff957611ff8612b2e565b5b9060005260206000200154111561201257809150612022565b60018161201f9190612a46565b92505b50611fcf565b60008211801561206057508385600184612042919061340e565b8154811061205357612052612b2e565b5b9060005260206000200154145b1561207b57600182612072919061340e565b92505050612081565b81925050505b92915050565b6001816000016000828254019250508190555050565b6120a88383836120e1565b505050565b600081600001549050919050565b600060028284186120cc919061371f565b8284166120d99190612a46565b905092915050565b6120ec83838361219b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121375761212a826121f3565b612132612246565b612196565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218257612175836121f3565b61217d612246565b612195565b61218b836121f3565b612194826121f3565b5b5b505050565b6121a683838361225a565b6121ae610c54565b156121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e5906137c2565b60405180910390fd5b505050565b612243600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061223e83610c91565b61225f565b50565b61225860076122536105d3565b61225f565b565b505050565b6000612269611f9c565b905080612278846000016122da565b10156122d55782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600080828054905014156122f15760009050612322565b8160018380549050612303919061340e565b8154811061231457612313612b2e565b5b906000526020600020015490505b919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612361578082015181840152602081019050612346565b83811115612370576000848401525b50505050565b6000601f19601f8301169050919050565b600061239282612327565b61239c8185612332565b93506123ac818560208601612343565b6123b581612376565b840191505092915050565b600060208201905081810360008301526123da8184612387565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612421826123f6565b9050919050565b61243181612416565b811461243c57600080fd5b50565b60008135905061244e81612428565b92915050565b6000819050919050565b61246781612454565b811461247257600080fd5b50565b6000813590506124848161245e565b92915050565b600080604083850312156124a1576124a06123ec565b5b60006124af8582860161243f565b92505060206124c085828601612475565b9150509250929050565b60008115159050919050565b6124df816124ca565b82525050565b60006020820190506124fa60008301846124d6565b92915050565b61250981612454565b82525050565b60006020820190506125246000830184612500565b92915050565b600080600060608486031215612543576125426123ec565b5b60006125518682870161243f565b93505060206125628682870161243f565b925050604061257386828701612475565b9150509250925092565b600060208284031215612593576125926123ec565b5b60006125a184828501612475565b91505092915050565b600060ff82169050919050565b6125c0816125aa565b82525050565b60006020820190506125db60008301846125b7565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61261e82612376565b810181811067ffffffffffffffff8211171561263d5761263c6125e6565b5b80604052505050565b60006126506123e2565b905061265c8282612615565b919050565b600067ffffffffffffffff82111561267c5761267b6125e6565b5b602082029050602081019050919050565b600080fd5b60006126a56126a084612661565b612646565b905080838252602082019050602084028301858111156126c8576126c761268d565b5b835b818110156126f157806126dd888261243f565b8452602084019350506020810190506126ca565b5050509392505050565b600082601f8301126127105761270f6125e1565b5b8135612720848260208601612692565b91505092915050565b600067ffffffffffffffff821115612744576127436125e6565b5b602082029050602081019050919050565b600061276861276384612729565b612646565b9050808382526020820190506020840283018581111561278b5761278a61268d565b5b835b818110156127b457806127a08882612475565b84526020840193505060208101905061278d565b5050509392505050565b600082601f8301126127d3576127d26125e1565b5b81356127e3848260208601612755565b91505092915050565b60008060408385031215612803576128026123ec565b5b600083013567ffffffffffffffff811115612821576128206123f1565b5b61282d858286016126fb565b925050602083013567ffffffffffffffff81111561284e5761284d6123f1565b5b61285a858286016127be565b9150509250929050565b60006020828403121561287a576128796123ec565b5b60006128888482850161243f565b91505092915050565b61289a81612416565b82525050565b60006020820190506128b56000830184612891565b92915050565b600080fd5b60008083601f8401126128d6576128d56125e1565b5b8235905067ffffffffffffffff8111156128f3576128f26128bb565b5b60208301915083600182028301111561290f5761290e61268d565b5b9250929050565b60008060006040848603121561292f5761292e6123ec565b5b600061293d8682870161243f565b935050602084013567ffffffffffffffff81111561295e5761295d6123f1565b5b61296a868287016128c0565b92509250509250925092565b6000806040838503121561298d5761298c6123ec565b5b600061299b8582860161243f565b92505060206129ac8582860161243f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129fd57607f821691505b60208210811415612a1157612a106129b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a5182612454565b9150612a5c83612454565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a9157612a90612a17565b5b828201905092915050565b7f7472616e7366657242617463683a20417272617973206d75737420626520746860008201527f652073616d65206c656e67746800000000000000000000000000000000000000602082015250565b6000612af8602d83612332565b9150612b0382612a9c565b604082019050919050565b60006020820190508181036000830152612b2781612aeb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061ffff82169050919050565b6000612b7682612b5d565b915061ffff821415612b8b57612b8a612a17565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bcc602083612332565b9150612bd782612b96565b602082019050919050565b60006020820190508181036000830152612bfb81612bbf565b9050919050565b7f426164204368696c64436861696e4d616e6167657250726f787920616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c5e602283612332565b9150612c6982612c02565b604082019050919050565b60006020820190508181036000830152612c8d81612c51565b9050919050565b612c9d816124ca565b8114612ca857600080fd5b50565b600081519050612cba81612c94565b92915050565b600060208284031215612cd657612cd56123ec565b5b6000612ce484828501612cab565b91505092915050565b7f64657374726f79426c61636b46756e64733a2075736572206d7573742062652060008201527f626c61636b6c6973746564000000000000000000000000000000000000000000602082015250565b6000612d49602b83612332565b9150612d5482612ced565b604082019050919050565b60006020820190508181036000830152612d7881612d3c565b9050919050565b7f64657374726f79426c61636b46756e64733a2072656d6f7665206661696c6564600082015250565b6000612db5602083612332565b9150612dc082612d7f565b602082019050919050565b60006020820190508181036000830152612de481612da8565b9050919050565b6000604082019050612e006000830185612891565b612e0d6020830184612500565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e70602583612332565b9150612e7b82612e14565b604082019050919050565b60006020820190508181036000830152612e9f81612e63565b9050919050565b7f596f75277265206e6f7420616c6c6f77656420746f206465706f736974000000600082015250565b6000612edc601d83612332565b9150612ee782612ea6565b602082019050919050565b60006020820190508181036000830152612f0b81612ecf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f6e602683612332565b9150612f7982612f12565b604082019050919050565b60006020820190508181036000830152612f9d81612f61565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613000602483612332565b915061300b82612fa4565b604082019050919050565b6000602082019050818103600083015261302f81612ff3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613092602283612332565b915061309d82613036565b604082019050919050565b600060208201905081810360008301526130c181613085565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006130fe601d83612332565b9150613109826130c8565b602082019050919050565b6000602082019050818103600083015261312d816130f1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613190602583612332565b915061319b82613134565b604082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613222602383612332565b915061322d826131c6565b604082019050919050565b6000602082019050818103600083015261325181613215565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006132b4602683612332565b91506132bf82613258565b604082019050919050565b600060208201905081810360008301526132e3816132a7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613346602183612332565b9150613351826132ea565b604082019050919050565b6000602082019050818103600083015261337581613339565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006133d8602283612332565b91506133e38261337c565b604082019050919050565b60006020820190508181036000830152613407816133cb565b9050919050565b600061341982612454565b915061342483612454565b92508282101561343757613436612a17565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613478601483612332565b915061348382613442565b602082019050919050565b600060208201905081810360008301526134a78161346b565b9050919050565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b60006134e4601683612332565b91506134ef826134ae565b602082019050919050565b60006020820190508181036000830152613513816134d7565b9050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b6000613550601d83612332565b915061355b8261351a565b602082019050919050565b6000602082019050818103600083015261357f81613543565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006135bc601083612332565b91506135c782613586565b602082019050919050565b600060208201905081810360008301526135eb816135af565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613628601f83612332565b9150613633826135f2565b602082019050919050565b600060208201905081810360008301526136578161361b565b9050919050565b7f69734e6f74426c61636b6c69737465643a2074686973206163636f756e74206960008201527f7320626c61636b6c697374656400000000000000000000000000000000000000602082015250565b60006136ba602d83612332565b91506136c58261365e565b604082019050919050565b600060208201905081810360008301526136e9816136ad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061372a82612454565b915061373583612454565b925082613745576137446136f0565b5b828204905092915050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006137ac602a83612332565b91506137b782613750565b604082019050919050565b600060208201905081810360008301526137db8161379f565b905091905056fea26469706673582212204373e89d62d10e0307d087deac115e70cec77cce5bbaeff08c7674c18328fe8264736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000095a01ed9189c912a9d3edd7339dc4ef37dadd4a5000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa000000000000000000000000000000000000000000000000000000000000000c47617567654669656c645632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044741554900000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): GaugeFieldV2
Arg [1] : symbol_ (string): GAUI
Arg [2] : _blacklist (address): 0x95a01Ed9189c912a9D3EDd7339DC4EF37Dadd4A5
Arg [3] : _childChainManagerProxy (address): 0xA6FA4fB5f76172d178d61B04b0ecd319C5d1C0aa
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000095a01ed9189c912a9d3edd7339dc4ef37dadd4a5
Arg [3] : 000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 47617567654669656c6456320000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4741554900000000000000000000000000000000000000000000000000000000
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.